Repository: lowlighter/gracidea Branch: main Commit: 1dd01219b568 Files: 203 Total size: 4.9 MB Directory structure: gitextract_95rr8slf/ ├── .devcontainer/ │ ├── Dockerfile │ ├── devcontainer.json │ ├── fluxbox/ │ │ ├── apps │ │ ├── init │ │ └── startup │ ├── library-scripts/ │ │ └── desktop-lite-debian.sh │ └── tiled/ │ └── default.tiled-session ├── .gitattributes ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── config.yml │ │ └── issue_report.yml │ ├── config/ │ │ ├── codeql.yml │ │ └── labeler.yml │ ├── pull_request_template.md │ └── workflows/ │ ├── build.yml │ └── labeler.yml ├── .gitignore ├── .vscode/ │ └── settings.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── app/ │ ├── build/ │ │ ├── build.ts │ │ ├── mod.ts │ │ ├── steps/ │ │ │ ├── 00_clean.ts │ │ │ ├── 10_data.ts │ │ │ ├── 20_maps.ts │ │ │ ├── 21_maps_diff.ts │ │ │ ├── 22_maps_world.ts │ │ │ ├── 30_textures.ts │ │ │ ├── 31_textures_packer.ts │ │ │ ├── 40_assets.ts │ │ │ └── 41_assets_app.ts │ │ └── util.ts │ ├── client/ │ │ ├── css/ │ │ │ └── styles.css │ │ ├── index.html │ │ └── js/ │ │ ├── app/ │ │ │ ├── app.ts │ │ │ ├── controls/ │ │ │ │ └── controller.ts │ │ │ ├── maps/ │ │ │ │ ├── area.ts │ │ │ │ ├── camera.ts │ │ │ │ ├── npc.creature.ts │ │ │ │ ├── npc.human.ts │ │ │ │ ├── npc.ts │ │ │ │ ├── region.ts │ │ │ │ ├── section.ts │ │ │ │ └── world.ts │ │ │ ├── mod.ts │ │ │ ├── rendering/ │ │ │ │ ├── render.ts │ │ │ │ └── renderable.ts │ │ │ └── types.ts │ │ └── loader.js │ └── tests/ │ └── integrity_test.ts ├── copyrighted/ │ ├── README.md │ └── textures/ │ ├── all/ │ │ ├── worldmap.json │ │ ├── worldmap.regions.json │ │ ├── worldmap.regions.tps │ │ ├── worldmap.tps │ │ └── worldmap.tsx │ └── rse/ │ ├── creatures.json │ ├── creatures.tps │ ├── npcs.json │ ├── tileset.json │ ├── tileset.tps │ └── tileset.tsx ├── deno.json ├── maps/ │ ├── all/ │ │ └── worldmap.tmx │ ├── gracidea.world │ └── hoenn/ │ ├── anime-banana-slakoth-garden.tmx │ ├── anime-crossgate-town.tmx │ ├── anime-foothill-town.tmx │ ├── anime-forbidden-forest.tmx │ ├── anime-forina.tmx │ ├── anime-lake-may.tmx │ ├── anime-larousse-city.tmx │ ├── anime-littleroot-port.tmx │ ├── anime-mirage-kingdom.tmx │ ├── anime-misty-village.tmx │ ├── anime-mount-kirikiri.tmx │ ├── anime-north-petalburg.tmx │ ├── anime-oldale-ruins.tmx │ ├── anime-rinshin-town.tmx │ ├── anime-rubello-town.tmx │ ├── anime-shroomish-forest.tmx │ ├── anime-the-greenhouse.tmx │ ├── anime-valley-of-steel.tmx │ ├── anime-volley-town.tmx │ ├── birth-island.tmx │ ├── dewford-town.tmx │ ├── ever-grande-city.tmx │ ├── fallarbor-town.tmx │ ├── faraway-island.tmx │ ├── fill-002.tmx │ ├── fill-003.tmx │ ├── fill-004.tmx │ ├── fill-005.tmx │ ├── fill-006.tmx │ ├── fill-007.tmx │ ├── fill-010.tmx │ ├── fill-011.tmx │ ├── fill-012.tmx │ ├── fill-013.tmx │ ├── fill-014.tmx │ ├── fill-015.tmx │ ├── fill-016.tmx │ ├── fill-017.tmx │ ├── fill-018.tmx │ ├── fill-019.tmx │ ├── fill-020.tmx │ ├── fill-021.tmx │ ├── fill-022.tmx │ ├── fill-023.tmx │ ├── fill-024.tmx │ ├── fill-025.tmx │ ├── fill-026.tmx │ ├── fill-027.tmx │ ├── fill-028.tmx │ ├── fill-029.tmx │ ├── fill-030.tmx │ ├── fill-031.tmx │ ├── fill-032.tmx │ ├── fill-033.tmx │ ├── fill-034.tmx │ ├── fill-035.tmx │ ├── fill-036.tmx │ ├── fill-037.tmx │ ├── fill-038.tmx │ ├── fill-039.tmx │ ├── fill-040.tmx │ ├── fill-041.tmx │ ├── fill-042.tmx │ ├── fill-043.tmx │ ├── fill-044.tmx │ ├── fill-045.tmx │ ├── fill-046.tmx │ ├── fill-047.tmx │ ├── fill-048.tmx │ ├── fill-049.tmx │ ├── fill-050.tmx │ ├── fill-051.tmx │ ├── fill-052.tmx │ ├── fill-053.tmx │ ├── fill-054.tmx │ ├── fill-055.tmx │ ├── fill-056.tmx │ ├── fill-057.tmx │ ├── fill-058.tmx │ ├── fill-059.tmx │ ├── fill-060.tmx │ ├── fortree-city.tmx │ ├── hoenn-route-101.tmx │ ├── hoenn-route-102.tmx │ ├── hoenn-route-103.tmx │ ├── hoenn-route-104.tmx │ ├── hoenn-route-105.tmx │ ├── hoenn-route-106.tmx │ ├── hoenn-route-107.tmx │ ├── hoenn-route-108.tmx │ ├── hoenn-route-109.tmx │ ├── hoenn-route-110.tmx │ ├── hoenn-route-111.tmx │ ├── hoenn-route-112.tmx │ ├── hoenn-route-113.tmx │ ├── hoenn-route-114.tmx │ ├── hoenn-route-115.tmx │ ├── hoenn-route-116.tmx │ ├── hoenn-route-117.tmx │ ├── hoenn-route-118.tmx │ ├── hoenn-route-119.tmx │ ├── hoenn-route-120.tmx │ ├── hoenn-route-121.tmx │ ├── hoenn-route-122.tmx │ ├── hoenn-route-123.tmx │ ├── hoenn-route-124.tmx │ ├── hoenn-route-125.tmx │ ├── hoenn-route-126.tmx │ ├── hoenn-route-127.tmx │ ├── hoenn-route-128.tmx │ ├── hoenn-route-129.tmx │ ├── hoenn-route-130.tmx │ ├── hoenn-route-131.tmx │ ├── hoenn-route-132.tmx │ ├── hoenn-route-133.tmx │ ├── hoenn-route-134.tmx │ ├── hoenn-safari-zone-expansion-north.tmx │ ├── hoenn-safari-zone-expansion-south.tmx │ ├── hoenn-safari-zone-neacro-bike-area.tmx │ ├── hoenn-safari-zone-nwmach-bike-area.tmx │ ├── hoenn-safari-zone-se.tmx │ ├── hoenn-safari-zone-sw.tmx │ ├── lavaridge-town.tmx │ ├── lilycove-city.tmx │ ├── littleroot-town.tmx │ ├── mauville-city.tmx │ ├── mossdeep-city.tmx │ ├── navel-rock.tmx │ ├── oldale-town.tmx │ ├── pacifidlog-town.tmx │ ├── petalburg-city.tmx │ ├── rustboro-city.tmx │ ├── sky-pillar.tmx │ ├── slateport-city.tmx │ ├── southern-island.tmx │ └── verdanturf-town.tmx └── vercel.json ================================================ FILE CONTENTS ================================================ ================================================ FILE: .devcontainer/Dockerfile ================================================ # OS ARG VARIANT=bullseye FROM --platform=linux/amd64 mcr.microsoft.com/vscode/devcontainers/base:0-${VARIANT} # Deno install ENV DENO_INSTALL=/deno RUN mkdir -p /deno \ && curl -fsSL https://deno.land/x/install/install.sh | sh \ && chown -R vscode /deno ENV PATH=${DENO_INSTALL}/bin:${PATH} \ DENO_DIR=${DENO_INSTALL}/.cache/deno RUN deno install -qAn vr https://deno.land/x/velociraptor/cli.ts \ && echo 'export PATH="$HOME/.deno/bin:$PATH"' >> ~/.bashrc # Vercel install RUN curl -fsSL https://deb.nodesource.com/setup_17.x | bash -\ && apt-get update \ && apt-get install -y nodejs build-essential \ && npm i -g vercel # Tiled install COPY tiled/default.tiled-session /home/vscode/.local/share/tiled/ RUN wget -O /tmp/Tiled.AppImage https://github.com/mapeditor/tiled/releases/download/v1.7.2/Tiled-1.7.2-x86_64.AppImage \ && chmod +x /tmp/Tiled.AppImage \ && /tmp/Tiled.AppImage --appimage-extract \ && mv squashfs-root /tiled \ && chown -R vscode /tiled \ && chmod +x /tiled/AppRun \ && mkdir -p /home/vscode/.cache/tiled/sentry \ && echo 1 > /home/vscode/.cache/tiled/sentry/user-consent # Desktop lite COPY library-scripts/desktop-lite-debian.sh /tmp/library-scripts/ COPY fluxbox /home/vscode/.fluxbox/ RUN apt-get update \ && bash /tmp/library-scripts/desktop-lite-debian.sh \ && chown -R vscode /home/vscode ENV DBUS_SESSION_BUS_ADDRESS="autolaunch:" \ VNC_RESOLUTION="1440x768x16" \ VNC_DPI="96" \ VNC_PORT="5901" \ NOVNC_PORT="6080" \ DISPLAY=":1" \ LANG="en_US.UTF-8" \ LANGUAGE="en_US.UTF-8" ENTRYPOINT ["/usr/local/share/desktop-init.sh"] CMD ["sleep", "infinity"] ================================================ FILE: .devcontainer/devcontainer.json ================================================ { "name": "Deno", "build": { "dockerfile": "Dockerfile", "args": { "VARIANT": "bullseye" } }, "settings": { "deno.enable": true, "deno.unstable": true, "deno.lint": true, "deno.importMap": "deno.json", "deno.config": "deno.json", "editor.defaultFormatter": "denoland.vscode-deno" }, "extensions": [ "denoland.vscode-deno" ], "remoteUser": "vscode", "features": { "desktop-lite": { "password": "vscode", "webPort": "6080", "vncPort": "5901" } }, "runArgs": ["--init", "--shm-size=1g"], "forwardPorts": [6080, 5901], "overrideCommand": false, "portsAttributes": { "3000": { "label": "VERCEL" }, "4507": { "label": "HTTP SERVER" }, "5901": { "label": "VNC" }, "6080": { "label": "WEB VNC" } } } ================================================ FILE: .devcontainer/fluxbox/apps ================================================ [transient] (role=GtkFileChooserDialog) [Dimensions] {70% 70%} [Position] (CENTER) {0 0} [end] [app] (name=AppRun) (class=tiled) [Fullscreen] {yes} [end] ================================================ FILE: .devcontainer/fluxbox/init ================================================ session.screen0.tabs.usePixmap: true session.screen0.tabs.maxOver: false session.screen0.tabs.intitlebar: true session.screen0.clientMenu.usePixmap: true session.screen0.menu.alpha: 255 session.screen0.iconbar.usePixmap: true session.screen0.iconbar.iconTextPadding: 10 session.screen0.iconbar.iconWidth: 128 session.screen0.iconbar.alignment: Relative session.screen0.iconbar.mode: {static groups} (workspace) session.screen0.tab.placement: TopLeft session.screen0.tab.width: 64 session.screen0.window.focus.alpha: 255 session.screen0.window.unfocus.alpha: 255 session.screen0.slit.alpha: 255 session.screen0.slit.placement: RightBottom session.screen0.slit.maxOver: false session.screen0.slit.autoHide: false session.screen0.slit.acceptKdeDockapps: true session.screen0.slit.onhead: 0 session.screen0.slit.layer: Dock session.screen0.titlebar.left: Stick session.screen0.titlebar.right: Minimize Maximize Close session.screen0.toolbar.widthPercent: 100 session.screen0.toolbar.onhead: 1 session.screen0.toolbar.placement: BottomCenter session.screen0.toolbar.height: 0 session.screen0.toolbar.visible: false session.screen0.toolbar.tools: RootMenu, clock, iconbar, systemtray session.screen0.toolbar.alpha: 255 session.screen0.toolbar.maxOver: false session.screen0.toolbar.autoHide: false session.screen0.toolbar.layer: Dock session.screen0.maxDisableMove: false session.screen0.windowMenu: /home/vscode/.fluxbox/windowmenu session.screen0.focusSameHead: false session.screen0.clickRaises: true session.screen0.opaqueMove: true session.screen0.menuDelay: 200 session.screen0.workspaces: 1 session.screen0.noFocusWhileTypingDelay: 0 session.screen0.workspacewarping: false session.screen0.maxDisableResize: false session.screen0.rowPlacementDirection: LeftToRight session.screen0.focusModel: ClickFocus session.screen0.defaultDeco: NORMAL session.screen0.fullMaximization: false session.screen0.colPlacementDirection: TopToBottom session.screen0.tabFocusModel: ClickToTabFocus session.screen0.showwindowposition: false session.screen0.edgeSnapThreshold: 10 session.screen0.tooltipDelay: 500 session.screen0.strftimeFormat: %a %l:%M %p session.screen0.maxIgnoreIncrement: true session.screen0.windowPlacement: RowMinOverlapPlacement session.screen0.focusNewWindows: true session.screen0.autoRaise: true session.screen0.allowRemoteActions: false session.screen0.workspaceNames: One, session.styleOverlay: /home/vscode/.fluxbox/overlay session.configVersion: 13 session.cacheMax: 200 session.tabsAttachArea: Window session.slitlistFile: /home/vscode/.fluxbox/slitlist session.forcePseudoTransparency: false session.tabPadding: 0 session.colorsPerChannel: 4 session.menuFile: ~/.fluxbox/menu session.autoRaiseDelay: 250 session.cacheLife: 5 session.appsFile: /home/vscode/.fluxbox/apps session.ignoreBorder: false session.keyFile: ~/.fluxbox/keys session.doubleClickInterval: 250 session.styleFile: /usr/share/fluxbox/styles/qnx-photon ================================================ FILE: .devcontainer/fluxbox/startup ================================================ #!/bin/sh xmodmap "/home/vscode/.Xmodmap" # Start fbautostart which fbautostart > /dev/null if [ $? -eq 0 ]; then fbautostart fi # Start fluxbox fluxbox & fbpid=$! # Start tiled sleep 1 { /tiled/AppRun & } & wait $fbpid ================================================ FILE: .devcontainer/library-scripts/desktop-lite-debian.sh ================================================ #!/usr/bin/env bash #------------------------------------------------------------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See https://go.microsoft.com/fwlink/?linkid=2090316 for license information. #------------------------------------------------------------------------------------------------------------- # # Docs: https://github.com/microsoft/vscode-dev-containers/blob/main/script-library/docs/desktop-lite.md # Maintainer: The VS Code and Codespaces Teams # # Syntax: ./desktop-lite-debian.sh [non-root user] [Desktop password] [Install web client flag] [VNC port] [Web Port] USERNAME=${1:-"automatic"} VNC_PASSWORD=${2:-""} INSTALL_NOVNC=${3:-"true"} VNC_PORT="${4:-5901}" NOVNC_PORT="${5:-6080}" NOVNC_VERSION=1.2.0 WEBSOCKETIFY_VERSION=0.10.0 package_list=" tigervnc-standalone-server \ tigervnc-common \ fluxbox \ dbus-x11 \ x11-utils \ x11-xserver-utils \ xdg-utils \ fbautostart \ at-spi2-core \ xterm \ eterm \ nautilus\ mousepad \ seahorse \ gnome-icon-theme \ gnome-keyring \ libx11-dev \ libxkbfile-dev \ libsecret-1-dev \ libgbm-dev \ libnotify4 \ libnss3 \ libxss1 \ libasound2 \ xfonts-base \ xfonts-terminus \ fonts-noto \ fonts-wqy-microhei \ fonts-droid-fallback \ htop \ ncdu \ curl \ ca-certificates\ unzip \ nano \ locales" set -e if [ "$(id -u)" -ne 0 ]; then echo -e 'Script must be run as root. Use sudo, su, or add "USER root" to your Dockerfile before running this script.' exit 1 fi # Determine the appropriate non-root user if [ "${USERNAME}" = "auto" ] || [ "${USERNAME}" = "automatic" ]; then USERNAME="" POSSIBLE_USERS=("vscode" "node" "codespace" "$(awk -v val=1000 -F ":" '$3==val{print $1}' /etc/passwd)") for CURRENT_USER in ${POSSIBLE_USERS[@]}; do if id -u ${CURRENT_USER} > /dev/null 2>&1; then USERNAME=${CURRENT_USER} break fi done if [ "${USERNAME}" = "" ]; then USERNAME=root fi elif [ "${USERNAME}" = "none" ] || ! id -u ${USERNAME} > /dev/null 2>&1; then USERNAME=root fi # Add default Fluxbox config files if none are already present fluxbox_apps="$(cat \ << 'EOF' [transient] (role=GtkFileChooserDialog) [Dimensions] {70% 70%} [Position] (CENTER) {0 0} [end] EOF )" fluxbox_init="$(cat \ << 'EOF' session.configVersion: 13 session.menuFile: ~/.fluxbox/menu session.keyFile: ~/.fluxbox/keys session.styleFile: /usr/share/fluxbox/styles/qnx-photon session.screen0.workspaces: 1 session.screen0.workspacewarping: false session.screen0.toolbar.widthPercent: 100 session.screen0.strftimeFormat: %a %l:%M %p session.screen0.toolbar.tools: RootMenu, clock, iconbar, systemtray session.screen0.workspaceNames: One, EOF )" fluxbox_menu="$(cat \ << 'EOF' [begin] ( Application Menu ) [exec] (File Manager) { nautilus ~ } <> [exec] (Text Editor) { mousepad } <> [exec] (Terminal) { tilix -w ~ -e $(readlink -f /proc/$$/exe) -il } <> [exec] (Web Browser) { x-www-browser --disable-dev-shm-usage } <> [submenu] (System) {} [exec] (Set Resolution) { tilix -t "Set Resolution" -e bash /usr/local/bin/set-resolution } <> [exec] (Edit Application Menu) { mousepad ~/.fluxbox/menu } <> [exec] (Passwords and Keys) { seahorse } <> [exec] (Top Processes) { tilix -t "Top" -e htop } <> [exec] (Disk Utilization) { tilix -t "Disk Utilization" -e ncdu / } <> [exec] (Editres) {editres} <> [exec] (Xfontsel) {xfontsel} <> [exec] (Xkill) {xkill} <> [exec] (Xrefresh) {xrefresh} <> [end] [config] (Configuration) [workspaces] (Workspaces) [end] EOF )" # Copy config files if the don't already exist copy_fluxbox_config() { local target_dir="$1" mkdir -p "${target_dir}/.fluxbox" touch "${target_dir}/.Xmodmap" if [ ! -e "${target_dir}/.fluxbox/apps" ]; then echo "${fluxbox_apps}" > "${target_dir}/.fluxbox/apps" fi if [ ! -e "${target_dir}/.fluxbox/init" ]; then echo "${fluxbox_init}" > "${target_dir}/.fluxbox/init" fi if [ ! -e "${target_dir}/.fluxbox/menu" ]; then echo "${fluxbox_menu}" > "${target_dir}/.fluxbox/menu" fi } # Function to run apt-get if needed apt_get_update_if_needed() { if [ ! -d "/var/lib/apt/lists" ] || [ "$(ls /var/lib/apt/lists/ | wc -l)" = "0" ]; then echo "Running apt-get update..." apt-get update else echo "Skipping apt-get update." fi } # Checks if packages are installed and installs them if not check_packages() { if ! dpkg -s "$@" > /dev/null 2>&1; then apt_get_update_if_needed apt-get -y install --no-install-recommends "$@" fi } # Ensure apt is in non-interactive to avoid prompts export DEBIAN_FRONTEND=noninteractive apt_get_update_if_needed # On older Ubuntu, Tilix is in a PPA. on Debian strech its in backports. if [[ -z $(apt-cache --names-only search ^tilix$) ]]; then . /etc/os-release if [ "${ID}" = "ubuntu" ]; then apt-get install -y --no-install-recommends apt-transport-https software-properties-common add-apt-repository -y ppa:webupd8team/terminix elif [ "${VERSION_CODENAME}" = "stretch" ]; then echo "deb http://deb.debian.org/debian stretch-backports main" > /etc/apt/sources.list.d/stretch-backports.list fi apt-get update if [[ -z $(apt-cache --names-only search ^tilix$) ]]; then echo "(!) WARNING: Tilix not available on ${ID} ${VERSION_CODENAME} architecture $(uname -m). Skipping." else package_list="${package_list} tilix" fi else package_list="${package_list} tilix" fi # Install X11, fluxbox and VS Code dependencies check_packages ${package_list} # Install Emoji font if available in distro - Available in Debian 10+, Ubuntu 18.04+ if dpkg-query -W fonts-noto-color-emoji > /dev/null 2>&1 && ! dpkg -s fonts-noto-color-emoji > /dev/null 2>&1; then apt-get -y install --no-install-recommends fonts-noto-color-emoji fi # Check at least one locale exists if ! grep -o -E '^\s*en_US.UTF-8\s+UTF-8' /etc/locale.gen > /dev/null; then echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen locale-gen fi # Install the Cascadia Code fonts - https://github.com/microsoft/cascadia-code if [ ! -d "/usr/share/fonts/truetype/cascadia" ]; then curl -sSL https://github.com/microsoft/cascadia-code/releases/download/v2008.25/CascadiaCode-2008.25.zip -o /tmp/cascadia-fonts.zip unzip /tmp/cascadia-fonts.zip -d /tmp/cascadia-fonts mkdir -p /usr/share/fonts/truetype/cascadia mv /tmp/cascadia-fonts/ttf/* /usr/share/fonts/truetype/cascadia/ rm -rf /tmp/cascadia-fonts.zip /tmp/cascadia-fonts fi # Install noVNC if [ "${INSTALL_NOVNC}" = "true" ] && [ ! -d "/usr/local/novnc" ]; then mkdir -p /usr/local/novnc curl -sSL https://github.com/novnc/noVNC/archive/v${NOVNC_VERSION}.zip -o /tmp/novnc-install.zip unzip /tmp/novnc-install.zip -d /usr/local/novnc cp /usr/local/novnc/noVNC-${NOVNC_VERSION}/vnc.html /usr/local/novnc/noVNC-${NOVNC_VERSION}/index.html curl -sSL https://github.com/novnc/websockify/archive/v${WEBSOCKETIFY_VERSION}.zip -o /tmp/websockify-install.zip unzip /tmp/websockify-install.zip -d /usr/local/novnc ln -s /usr/local/novnc/websockify-${WEBSOCKETIFY_VERSION} /usr/local/novnc/noVNC-${NOVNC_VERSION}/utils/websockify rm -f /tmp/websockify-install.zip /tmp/novnc-install.zip # Install noVNC dependencies and use them. if ! dpkg -s python3-minimal python3-numpy > /dev/null 2>&1; then apt-get -y install --no-install-recommends python3-minimal python3-numpy fi sed -i -E 's/^python /python3 /' /usr/local/novnc/websockify-${WEBSOCKETIFY_VERSION}/run fi # Set up folders for scripts and init files mkdir -p /var/run/dbus /usr/local/etc/vscode-dev-containers/ # Script to change resolution of desktop cat << EOF > /usr/local/bin/set-resolution #!/bin/bash RESOLUTION=\${1:-\${VNC_RESOLUTION:-1920x1080}} DPI=\${2:-\${VNC_DPI:-96}} IGNORE_ERROR=\${3:-"false"} if [ -z "\$1" ]; then echo -e "**Current Settings **\n" xrandr echo -n -e "\nEnter new resolution (WIDTHxHEIGHT, blank for \${RESOLUTION}, Ctrl+C to abort).\n> " read NEW_RES if [ "\${NEW_RES}" != "" ]; then RESOLUTION=\${NEW_RES} fi if ! echo "\${RESOLUTION}" | grep -E '[0-9]+x[0-9]+' > /dev/null; then echo -e "\nInvalid resolution format!\n" exit 1 fi if [ -z "\$2" ]; then echo -n -e "\nEnter new DPI (blank for \${DPI}, Ctrl+C to abort).\n> " read NEW_DPI if [ "\${NEW_DPI}" != "" ]; then DPI=\${NEW_DPI} fi fi fi xrandr --fb \${RESOLUTION} --dpi \${DPI} > /dev/null 2>&1 if [ \$? -ne 0 ] && [ "\${IGNORE_ERROR}" != "true" ]; then echo -e "\nFAILED TO SET RESOLUTION!\n" exit 1 fi echo -e "\nSuccess!\n" EOF # Container ENTRYPOINT script cat << EOF > /usr/local/share/desktop-init.sh #!/bin/bash user_name="${USERNAME}" group_name="$(id -gn ${USERNAME})" LOG=/tmp/container-init.log export DBUS_SESSION_BUS_ADDRESS="${DBUS_SESSION_BUS_ADDRESS:-"autolaunch:"}" export DISPLAY="${DISPLAY:-:1}" export VNC_RESOLUTION="${VNC_RESOLUTION:-1440x768x16}" export LANG="${LANG:-"en_US.UTF-8"}" export LANGUAGE="${LANGUAGE:-"en_US.UTF-8"}" # Execute the command it not already running startInBackgroundIfNotRunning() { log "Starting \$1." echo -e "\n** \$(date) **" | sudoIf tee -a /tmp/\$1.log > /dev/null if ! pidof \$1 > /dev/null; then keepRunningInBackground "\$@" while ! pidof \$1 > /dev/null; do sleep 1 done log "\$1 started." else echo "\$1 is already running." | sudoIf tee -a /tmp/\$1.log > /dev/null log "\$1 is already running." fi } # Keep command running in background keepRunningInBackground() { (\$2 bash -c "while :; do echo [\\\$(date)] Process started.; \$3; echo [\\\$(date)] Process exited!; sleep 5; done 2>&1" | sudoIf tee -a /tmp/\$1.log > /dev/null & echo "\$!" | sudoIf tee /tmp/\$1.pid > /dev/null) } # Use sudo to run as root when required sudoIf() { if [ "\$(id -u)" -ne 0 ]; then sudo "\$@" else "\$@" fi } # Use sudo to run as non-root user if not already running sudoUserIf() { if [ "\$(id -u)" -eq 0 ] && [ "\${user_name}" != "root" ]; then sudo -u \${user_name} "\$@" else "\$@" fi } # Log messages log() { echo -e "[\$(date)] \$@" | sudoIf tee -a \$LOG > /dev/null } log "** SCRIPT START **" # Start dbus. log 'Running "/etc/init.d/dbus start".' if [ -f "/var/run/dbus/pid" ] && ! pidof dbus-daemon > /dev/null; then sudoIf rm -f /var/run/dbus/pid fi sudoIf /etc/init.d/dbus start 2>&1 | sudoIf tee -a /tmp/dbus-daemon-system.log > /dev/null while ! pidof dbus-daemon > /dev/null; do sleep 1 done # Startup tigervnc server and fluxbox sudo rm -rf /tmp/.X11-unix /tmp/.X*-lock mkdir -p /tmp/.X11-unix sudoIf chmod 1777 /tmp/.X11-unix sudoIf chown root:\${group_name} /tmp/.X11-unix if [ "\$(echo "\${VNC_RESOLUTION}" | tr -cd 'x' | wc -c)" = "1" ]; then VNC_RESOLUTION=\${VNC_RESOLUTION}x16; fi screen_geometry="\${VNC_RESOLUTION%*x*}" screen_depth="\${VNC_RESOLUTION##*x}" startInBackgroundIfNotRunning "Xtigervnc" sudoUserIf "tigervncserver \${DISPLAY} -geometry \${screen_geometry} -depth \${screen_depth} -rfbport ${VNC_PORT} -dpi \${VNC_DPI:-96} -localhost -desktop fluxbox -fg -passwd /usr/local/etc/vscode-dev-containers/vnc-passwd" # Spin up noVNC if installed and not runnning. if [ -d "/usr/local/novnc" ] && [ "\$(ps -ef | grep /usr/local/novnc/noVNC*/utils/launch.sh | grep -v grep)" = "" ]; then keepRunningInBackground "noVNC" sudoIf "/usr/local/novnc/noVNC*/utils/launch.sh --listen ${NOVNC_PORT} --vnc localhost:${VNC_PORT}" log "noVNC started." else log "noVNC is already running or not installed." fi # Run whatever was passed in log "Executing \"\$@\"." exec "\$@" log "** SCRIPT EXIT **" EOF echo "${VNC_PASSWORD}" | vncpasswd -f > /usr/local/etc/vscode-dev-containers/vnc-passwd chmod +x /usr/local/share/desktop-init.sh /usr/local/bin/set-resolution # Set up fluxbox config copy_fluxbox_config "/root" if [ "${USERNAME}" != "root" ]; then copy_fluxbox_config "/home/${USERNAME}" chown -R ${USERNAME} /home/${USERNAME}/.Xmodmap /home/${USERNAME}/.fluxbox fi cat << EOF You now have a working desktop! Connect to in one of the following ways: - Forward port ${NOVNC_PORT} and use a web browser start the noVNC client (recommended) - Forward port ${VNC_PORT} using VS Code client and connect using a VNC Viewer In both cases, use the password "${VNC_PASSWORD}" when connecting (*) Done! EOF ================================================ FILE: .devcontainer/tiled/default.tiled-session ================================================ { "activeFile": "/workspaces/gracidea/maps/hoenn/hoenn-route-101.tmx", "expandedProjectPaths": [ ], "file.lastUsedOpenFilter": "All Files (*)", "fileStates": { "/workspaces/gracidea/maps/hoenn/hoenn-route-101.tmx": { "scale": 1, "selectedLayer": 0, "viewCenter": { "x": 160.0523046747303, "y": 160.31382804838185 } } }, "loadedWorlds": [ "/workspaces/gracidea/maps/gracidea.world" ], "openFiles": [ "/workspaces/gracidea/maps/hoenn/hoenn-route-101.tmx" ], "project": "", "recentFiles": [ "/workspaces/gracidea/maps/hoenn/hoenn-route-101.tmx" ] } ================================================ FILE: .gitattributes ================================================ # Auto detect text files and perform LF normalization * text=auto # Linguist ignore .github/* linguist-vendored *.tps linguist-generated *.tsx linguist-generated *.tmx linguist-generated *.json linguist-generated *.js linguist-generated *.js.map linguist-generated ================================================ FILE: .github/ISSUE_TEMPLATE/config.yml ================================================ blank_issues_enabled: false contact_links: - name: 💡 Suggest new features url: https://github.com/lowlighter/gracidea/discussions/new?category=ideas about: Submit ideas to help us improve - name: 💬 Start a discussion url: https://github.com/lowlighter/gracidea/discussions/new?category=general about: Ask other questions related to this project here ================================================ FILE: .github/ISSUE_TEMPLATE/issue_report.yml ================================================ name: 📝 Issue report description: Create a report to help us improve body: - type: markdown attributes: value: > **Thank you for your interest in Gracidea project!** > ⚠️ **Please note that [issues](https://github.com/lowlighter/gracidea/issues) are exclusively reserved for bug and progress tracking.** > > Use [discussions](https://github.com/lowlighter/gracidea/discussions) for any other request instead. - type: textarea attributes: label: Summary description: Explain the problem briefly below. validations: required: true - type: dropdown attributes: label: Impacted components description: Please select which component is impacted. options: - "📀 app: client" - "🛠️ app: build" - "🧪 app: tests" - "🗺️ maps" - "🎨 textures" - "🗃️ repository" validations: required: true - type: dropdown attributes: label: Impacted regions description: Please select which regions is impacted (if applicable). options: - "1️⃣ region: kanto" - "2️ region: johto" - "3️ region: hoenn" - "4️ region: sinnoh" - "5️ region: unova" - "6️ region: kalos" - "7️ region: alola" - "8️ region: galar" - "*️⃣ region: other" - type: checkboxes attributes: label: Community guidelines description: Please review and accept to follow community guidelines options: - label: I am not duplicating an existing [issue](https://github.com/lowlighter/gracidea/issues), [pull request](https://github.com/lowlighter/gracidea/pulls) or [discussion](https://github.com/lowlighter/gracidea/discussions) required: true - label: I have read [contribution guidelines](https://github.com/lowlighter/gracidea/blob/main/CONTRIBUTING.md) required: true - label: I agree to follow the [Code of Conduct](https://github.com/lowlighter/gracidea/blob/main/CODE_OF_CONDUCT.md) required: true ================================================ FILE: .github/config/codeql.yml ================================================ name: CodeQL config queries: - uses: security-and-quality paths-ignore: - copyrighted/** - maps/** ================================================ FILE: .github/config/labeler.yml ================================================ 🗃️ repository: - .github/** - .gitignore - .gitattributes - vercel.json - README.md - CONTRIBUTING.md - CODE_OF_CONDUCT.md - LICENSE 🗺️ maps: - maps/** 🎨 textures: - copyrighted/** "🛠️ app: build": - app/build/** "📀 app: client": - app/client/** "💿 app: server": - app/server/** "🧪 app: tests": - app/tests/** "1️⃣ region: kanto": - maps/kanto/** "2️ region: johto": - maps/johto/** "3️ region: hoenn": - maps/hoenn/** "4️ region: sinnoh": - maps/sinnoh/** "5️ region: unova": - maps/unova/** "6️ region: kalos": - maps/kalos/** "7️ region: alola": - maps/alola/** "8️ region: galar": - maps/galar/** "*️⃣ region: other": - maps/other/** ================================================ FILE: .github/pull_request_template.md ================================================ ================================================ FILE: .github/workflows/build.yml ================================================ name: 🌺 on: push: branches: - main pull_request: branches: - main jobs: fmt-lint-test: runs-on: ubuntu-latest strategy: fail-fast: false max-parallel: 3 matrix: job: - vr fmt - vr lint - vr test steps: - uses: jurassiscripts/setup-velociraptor@v2 - run: ${{ matrix.job }} analyze: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: github/codeql-action/init@v1 with: languages: typescript config-file: .github/config/codeql.yml - uses: github/codeql-action/analyze@v1 ================================================ FILE: .github/workflows/labeler.yml ================================================ name: 🏷️ on: - pull_request_target jobs: label: runs-on: ubuntu-latest steps: - uses: actions/labeler@v2 with: configuration-path: .github/config/labeler.yml repo-token: "${{ github.token }}" ================================================ FILE: .gitignore ================================================ .vercel app/build/cache app/public ================================================ FILE: .vscode/settings.json ================================================ { "deno.enable": true, "deno.unstable": true, "deno.importMap": "deno.json", "deno.config": "deno.json", "deno.lint": true, "deno.suggest.imports.hosts": { "https://deno.land": false } } ================================================ FILE: CODE_OF_CONDUCT.md ================================================ # Contributor Covenant Code of Conduct ## Our Pledge We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation. We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community. ## Our Standards Examples of behavior that contributes to a positive environment for our community include: * Demonstrating empathy and kindness toward other people * Being respectful of differing opinions, viewpoints, and experiences * Giving and gracefully accepting constructive feedback * Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience * Focusing on what is best not just for us as individuals, but for the overall community Examples of unacceptable behavior include: * The use of sexualized language or imagery, and sexual attention or advances of any kind * Trolling, insulting or derogatory comments, and personal or political attacks * Public or private harassment * Publishing others' private information, such as a physical or email address, without their explicit permission * Other conduct which could reasonably be considered inappropriate in a professional setting ## Enforcement Responsibilities Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate. Community leaders will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful. ## Enforcement Guidelines Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct: ### 1. Correction **Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community. **Consequence**: Offending messages will be deleted at the discretion of the community leaders. ### 2. Temporary Ban **Community Impact**: A serious violation of community standards, including sustained inappropriate behavior. **Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban. ### 3. Permanent Ban **Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals. **Consequence**: A permanent ban from any sort of public interaction within the community. ## Attribution This Code of Conduct was inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity) and adapted [Contributor Covenant version 2.0](https://www.contributor-covenant.org/version/2/0/code_of_conduct.html). ================================================ FILE: CONTRIBUTING.md ================================================ # 🌺 Contribution guide > ⚠️ The guidelines of this project are voluntarily strict to avoid any drift, please read carefully to avoid any disappointment > ⚠️ Keep in mind that *Gracidea* is **NOT A GAME PROJECT**, only an artistic project. All suggestions related to introduction of game mechanics (player, battles, captures, etc.) will be **systematically rejected**. - Perform a search on this repository to ensure that: - Nobody is working on it currently - It has not been already suggested or [ruled out](https://github.com/lowlighter/gracidea/labels/%E2%9B%94%20wontdo) - Open a [`discussion`](https://github.com/lowlighter/gracidea/discussions/new?category=ideas) before starting any changes - Be respectful - Wait for feedback from other people - Wait for an approval by a maintainer (an associated issue will automatically be created) - Perform editions and open [pull request](https://github.com/lowlighter/gracidea/pulls) - Ensure that all builds are passing - Preview you changes through the [Vercel](https://vercel.com) deployment link - Wait for reviews - Pull request will be merged if approved, thanks for contributing 🥳 ! > ℹ️ For easier maintaining, inactive issues and pull requests will automatically be closed after a certain amount of time ## 🗺️ For mappers ### 🤝 Accepted contributions > ⚠️ Any change **must** be motivated through official supporting references, such as games, anime, manga or promotional artworks (in this prefered order). > > Not following this instruction may result in a pull request closure without notice > ℹ️ Apart from first generations core games, other mapping sources will require a bit of creativity and adaption. The aim is to be faithful while making these custom maps integrate nicely. Most of the time, it means: > - Making important building or features present > - Respect more or less the map scale > - Not bloating a map section with too much tiles - ✔️ Fix maps and/or textures errors - ✔️ Add or create new maps (in the following preference order): - ✔️ From core games - ✔️ From spin-offs game - ✔️ From anime or manga - ✔️ From promotional artworks - ✔️ Custom fillers maps - ✔️ Add or create new textures - *⚠️ New textures styles are allowed provided they respect a given core game style* ### 📦 Requirements - Mapping knowledge - [Tiled map editor](https://doc.mapeditor.org/en/stable/) general knowledge - Mapping environment - [Tiled map editor](https://www.mapeditor.org) - [TexturePacker](https://www.codeandweb.com/texturepacker) - *⚠️ A license may be required to regenerate textures* - Any image editing software GitHub users having access to [GitHub codespaces](https://github.com/features/codespaces) may directly use the custom container with all dependencies installed (this also include [Tiled map editor](https://www.mapeditor.org) which is accessible through [NoVNC](https://novnc.com)) ### 📚 How-to #### Map editions Open [Tiled map editor](https://www.mapeditor.org) and load [`maps/gracidea.world`](/maps/gracidea.world). Start editing a new map file or an existing map file. - Maps filenames **must** follow this convention: - `${region}/${location-area}.tmx` for official maps, where `location-area` is defined in [pokeapi.co/api/v2/location-area](https://pokeapi.co/api/v2/location-area) - `${region}/anime-${name}.tmx` for anime locations - `${region}/manga-${name}.tmx` for manga locations - `${region}/fill-${number}.tmx` for custom filler maps, where `number` is an unused number - Maps layers **must** follow this convention and have: - `creatures` object layer for area with wild encounters - Create a new polygon having name set to an `encounter-method` defined in [pokeapi.co/api/v2/encounter-method](https://pokeapi.co/api/v2/encounter-method) - *ℹ️ Encounter rates are auto-generated and do not need any further editions* - `people` object layer for human NPCs - Create a new polygon having name set to a [supported NPC texture](/copyrighted/textures/rse/npcs.json), and type set to a [supported NPC pattern](https://github.com/lowlighter/gracidea/blob/74505b775d2a4eace0e61e05dc263bff28a9afa7/app/client/js/app/maps/npc.human.ts#L99-L106) - `${X}` tiles layer where `X` is a number between `1` and `4` - Use the tileset to fill this map, with these guidelines: - `1` Ground tiles - `2` Secondary ground tiles (road paths, flowers, grass, etc.) - `3` Objects (houses, trees, panels, etc.) - `4` High objects (roof, tree top, etc.) - Sea **must** not be mapped > ℹ️ A world map must then be added to `gracidea.world` and saved #### World map editions Open [Tiled map editor](https://www.mapeditor.org) and load [`maps/all/worldmap.tmx`](/maps/all/worldmap.tmx). Start editing file. - World map layers **must** follow this convention: - `links` object layer for location link - Create a new polygon and set name to `${region}/${location-area}` where `location-area` is defined in [pokeapi.co/api/v2/location-area](https://pokeapi.co/api/v2/location-area) - `interests.*` tiles layer is used for interests points - `cities.*` tiles layer is used for cities and towns - `roads.*` tiles layer is used for roads - `${region}` image layer needs to reference a [supported region](/copyrighted/textures/all/regions) - `roads.sea` tiles layer is used for sea roads which needs to appear below regions render - `*.ext` layers are used to define locations from extended sources, such as spin-offs, anime, manga, etc. - `*.core` layers are used to define locations from core games #### Textures editions (specific style) Open `copyrighted/textures/${style}/tileset.png` where `style` is a supported style (any folder except `all`). Start editing file. Create new tiles on "MissingNo" placeholders and try to group related tiles together. > ⛔ Do not resize `tileset.png`, its dimensions are used internally for other applications > ⚠️ Other files such as `creatures.{json,tps,webp}`, `npcs.{json,webp}` and `tileset.{json,tps,tsx,webp}` should not be edited directly. They are either generated automatically or rebuilt with [TexturePacker](https://www.codeandweb.com/texturepacker) #### Texture editions (all) Textures located in `copyrighted/textures/all` are handled differently than style texture packs. For regular tilesets, edit the associated `.png` file and create new tiles on "MissingNo" placeholders and try to group related tiles together. For world regions, create a new `.png` file in `copyrighted/textures/all/regions`. ## 👨‍💻 For developpers ### 🤝 Accepted contributions > ⚠️ Please open a [`discussion`](https://github.com/lowlighter/gracidea/discussions/new?category=ideas) first and wait for feedback and approval before starting to code. > > Not following this instruction may result in a pull request closure without notice - ✔️ Performance improvements - ✔️ Features additions - *⛔ All "gaming features" will systematically rejected* - *⚠️ Complex features may be rejected, this is why it is required to open a [`discussion`](https://github.com/lowlighter/gracidea/discussions/new?category=ideas) first* - ✔️ Data externalisation - *⚠️ Any external source used must be trustworthy and be "established"* - ✔️ Tests additions - ❌ Build scripts refactoring - ❌ Repository-level files editions (`LICENSE`, `CODE_OF_CONDUCT`, `.github`) ### 📦 Requirements - Development knowledge - [TypeScript](https://www.typescriptlang.org) fluency - *⚠️ Including typing system, using `any` everywhere is not allowed!* - [Vanilla JavaScript](https://developer.mozilla.org/en-US/docs/Web/JavaScript) general knowledge - *⚠️ Including ESNext features and syntax, future is now!* - *⛔ External libraries (except `pixi.js`) are not allowed to avoid bloating, as this app is already quite heavy* - [PixiJS rendering engine](https://pixijs.com) general knowledge - Development environment - [Deno runtime](https://deno.land) - [Velociraptor script manager](https://velociraptor.run) - Basic tools (`git`, `npm`, `tar`, ...) - *⚠️ [Windows Subsystem for Linux](https://docs.microsoft.com/en-us/windows/wsl) is required for Windows users* GitHub users having access to [GitHub codespaces](https://github.com/features/codespaces) may directly use the custom container with all dependencies installed (this also include [Tiled map editor](https://www.mapeditor.org) which is accessible through [NoVNC](https://novnc.com)) ### 📚 How-to Use `vr build` and then `vr start` to start a local instance. > ⚠️ Note that by default, already generated data are not rebuilt if files are already present. Pass `--clean` flag to ensure that cache is fully reloaded Changes should pass `vr fmt` and `vr lint`. ================================================ FILE: LICENSE ================================================ GNU AFFERO GENERAL PUBLIC LICENSE Version 3, 19 November 2007 Copyright (C) 2007 Free Software Foundation, Inc. (https://fsf.org/) Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU Affero General Public License is a free, copyleft license for software and other kinds of works, specifically designed to ensure cooperation with the community in the case of network server software. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, our General Public Licenses are intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. Developers that use our General Public Licenses protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License which gives you legal permission to copy, distribute and/or modify the software. A secondary benefit of defending all users' freedom is that improvements made in alternate versions of the program, if they receive widespread use, become available for other developers to incorporate. Many developers of free software are heartened and encouraged by the resulting cooperation. However, in the case of software used on network servers, this result may fail to come about. The GNU General Public License permits making a modified version and letting the public access it on a server without ever releasing its source code to the public. The GNU Affero General Public License is designed specifically to ensure that, in such cases, the modified source code becomes available to the community. It requires the operator of a network server to provide the source code of the modified version running there to the users of that server. Therefore, public use of a modified version, on a publicly accessible server, gives the public access to the source code of the modified version. An older license, called the Affero General Public License and published by Affero, was designed to accomplish similar goals. This is a different license, not a version of the Affero GPL, but Affero has released a new version of the Affero GPL which permits relicensing under this license. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU Affero General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Remote Network Interaction; Use with the GNU General Public License. Notwithstanding any other provision of this License, if you modify the Program, your modified version must prominently offer all users interacting with it remotely through a computer network (if your version supports such interaction) an opportunity to receive the Corresponding Source of your version by providing access to the Corresponding Source from a network server at no charge, through some standard or customary means of facilitating copying of software. This Corresponding Source shall include the Corresponding Source for any work covered by version 3 of the GNU General Public License that is incorporated pursuant to the following paragraph. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the work with which it is combined will remain governed by version 3 of the GNU General Public License. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU Affero General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU Affero General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU Affero General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU Affero General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Gracidea is 2D web map displayer capable of rendering animated tiles and characters. Copyright (C) 2020-present lowlighter (Simon Lecoq) This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with this program. If not, see https://github.com/lowlighter/gracidea/blob/main/LICENSE. Also add information on how to contact you by electronic and paper mail. If your software can interact with users remotely through a computer network, you should also make sure that it provides a way for users to get its source. For example, if your program is a web application, its interface could display a "Source" link that leads users to an archive of the code. There are many ways you could offer source, and different solutions will be better for different programs; see section 13 for the specific requirements. You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU AGPL, see https://github.com/lowlighter/gracidea/blob/main/LICENSE. ================================================ FILE: README.md ================================================ # ![](/copyrighted/icons/gracidea.png) Gracidea - *Pokémon* living web map ![](/copyrighted/animated_map.gif) ![Build](https://github.com/lowlighter/gracidea/workflows/Build/badge.svg) [![Live demo](https://img.shields.io/badge/%20-Gracidea%20live%20demo-black.svg?logo=adafruit)](https://gracidea.lecoq.io) **Gracidea** is a cartographic project which aims to map the whole known *Pokémon* world into a single 2D living web map. ## ![](/copyrighted/icons/pokedoll.png) Features * **Faithful maps** based on games, anime, manga, artworks and custom map fillers * **Animated tiles and characters** for a more liveful world * **Wild areas** with accurate spawn rates (based on [PokeAPI data](https://github.com/PokeAPI/api-data)), including shiny encounters! * **Ergonomic interface** to quickly navigate around the map * *More features to come...* ## ![](/copyrighted/icons/contribute.png) Contributing The *Pokémon* world is really huge, and so is the amount of work needed to map it. Whether you want to complete the mapping, provide new sprites or improve code, please read our [contributions guideline](/CONTRIBUTING.md) and open a [pull request](https://github.com/lowlighter/gracidea/pulls)! > ⚠️ Note that *Gracidea* is **NOT A GAME PROJECT**, only an artistic project. All suggestions related to introduction of game mechanics (player, battles, captures, etc.) will be **systematically rejected**. ## ![](/copyrighted/icons/license.png) License and copyright This project is released under the GNU AGPL license, which means that you can reuse this project for other open-source projects, provided that you leave the original license untouched. *Pokémon* trademark and its sprites are the intellectual property of The Pokémon Company and its affiliates ([legal informations](https://www.pokemon.com/us/legal/)). The maintainers of this repository cannot be held responsible of the usage of it from other users. ## ![](/copyrighted/icons/note.png) Note from the cartographer This artistic project will hopefully let you (re)discover this marvellous franchise! A *Google maps* but for *Pokémon* games, with a bit of [Conway's Game of Life](https://en.wikipedia.org/wiki/Conway%27s_Game_of_Life). ================================================ FILE: app/build/build.ts ================================================ //Imports import clean from "app/build/steps/00_clean.ts"; import data from "app/build/steps/10_data.ts"; import maps from "app/build/steps/20_maps.ts"; import textures from "app/build/steps/30_textures.ts"; import texturesPacker from "app/build/steps/31_textures_packer.ts"; import assets from "app/build/steps/40_assets.ts"; import app from "app/build/steps/41_assets_app.ts"; import diff from "app/build/steps/21_maps_diff.ts"; import world from "app/build/steps/22_maps_world.ts"; import { log, requirements } from "app/build/util.ts"; import { parse as parseFlags } from "std/flags/mod.ts"; /** Flags */ const flags = parseFlags(Deno.args); delete (flags as { _?: unknown })._; if (!Object.keys(flags).length) { flags.data ??= true; flags.maps ??= true; flags.world ??= true; flags.diff ??= true; flags.textures ??= true; flags.assets ??= true; flags.app ??= true; } /** Build utilities */ export const build = Object.assign(async function () { const start = performance.now(); const { force = false } = flags; log.info(`flags: ${Object.entries(flags).map(([flag, value]) => value ? flag : `no-${flag}`).join(", ") || "(none)"}`); await requirements(); if (flags.clean ?? flags.all) { await clean(); } if (flags.data ?? flags.all) { await data({ force }); } if (flags.maps ?? flags.all) { await maps({ force }); } if (flags.diff ?? flags.all) { await diff(); } if (flags.world ?? flags.all) { await world({ force }); } if (flags.textures ?? flags.all) { await textures({ force }); } if (flags["texture-packer"] ?? flags.all) { await texturesPacker(); } if (flags.assets ?? flags.all) { await assets(); } if (flags.app ?? flags.all) { await app(); } log.step(`completed in ${((performance.now() - start) / 1000).toFixed(2)} s`); }); ================================================ FILE: app/build/mod.ts ================================================ //Imports import { build } from "app/build/build.ts"; //Entry point if (import.meta.main) { await build(); } ================================================ FILE: app/build/steps/00_clean.ts ================================================ //Imports import { clean, log } from "app/build/util.ts"; /** Clean environment */ export default async function () { log.step("cleaning environment"); //Remove previous directories for (const path of ["app/public", "app/build/cache"]) { await clean({ path }); } log.success(); } ================================================ FILE: app/build/steps/10_data.ts ================================================ //Imports import { clone, exists, log, read, save } from "app/build/util.ts"; import { expandGlob } from "std/fs/mod.ts"; import { basename, dirname } from "std/path/mod.ts"; /** Data extraction */ export default async function ({ force = false } = {}) { log.step("extracting data"); //Setup await clone({ repo: "PokeAPI/api-data", dir: "app/build/cache/data" }); await clone({ repo: "msikma/pokesprite", dir: "app/build/cache/creatures" }); if ((!force) && (await exists("maps/data.json"))) { log.debug("skipped: maps/data.json (already present)"); log.success(); return; } //Extract gender data const genders = {} as { [name: string]: { male: number; female: number; genderless: number; }; }; { let files = 0; for await (const { path, name: file } of expandGlob("app/build/cache/data/data/api/v2/gender/*/*.json")) { log.progress(`processing: gender/${basename(dirname(path))}/${file}`); const { name: gender, pokemon_species_details: details } = await read(path); //Gender rate per species for (const { pokemon_species: { name }, rate } of details) { genders[name] ??= { male: 0, female: 0, genderless: 0 }; genders[name][gender] = Math.abs({ male: 1, female: 0, genderless: -1 - 1 / 8 }[gender] - rate / 8); } files++; } log.debug(`processed: ${files} files in gender/ (found ${Object.keys(genders).length} creatures)`); } //Extract encounters data const encounters = {} as { [area: string]: { [method: string]: { [name: string]: number }; }; }; { let files = 0; for await (const { path, name: file } of expandGlob("app/build/cache/data/data/api/v2/location-area/*/*.json")) { log.progress(`processing: location-area/${basename(dirname(path))}/${file}`); const { name: area, pokemon_encounters: details } = await read(path); //Encounter rates per species const rates = {} as { [method: string]: { [name: string]: number } }; for (const { pokemon: { name }, version_details: versions } of details) { for (const { encounter_details: details } of versions) { for (const { chance, method: { name: method } } of details) { rates[method] ??= {}; rates[method][name] = Math.max(rates[method][name] ?? 0, chance); } } } //Normalized chance per species (taking in account eventual female sprite) for (const chances of Object.values(rates)) { const total = Object.values(chances).reduce((a, b) => a + b, 0); for (const name in chances) { chances[name] /= total; const females = await Deno.lstat(`app/build/cache/creatures/pokemon-gen8/regular/female/${name}.png`).then(() => true).catch(() => false); if (females) { const chance = chances[name]; chances[name] *= genders[name].male; chances[`female/${name}`] = chance * genders[name].female; } } } encounters[area] = rates; files++; } log.debug(`processed: ${files} files in location-area/ (found ${Object.keys(encounters).length} areas)`); } //Extract locations data const locations = {} as { [id: string]: { id: string; region: string; i18n: { [lang: string]: string }; encounters: typeof encounters[keyof encounters] | null; }; }; { let files = 0; for await (const { path, name: file } of expandGlob("app/build/cache/data/data/api/v2/location/*/*.json")) { log.progress(`processing: location/${basename(dirname(path))}/${file}`); const { name: id, names, region: _region } = await read(path); //Region id, name and encounters rates const region = _region?.name ?? "other"; const i18n = Object.fromEntries( names.map(( { language: { name: language }, name }: { language: { name: string }; name: string }, ) => [language, name]), ); locations[id] = { id, region, i18n, encounters: encounters[`${id}-area`] ?? null }; files++; } log.debug(`processed: ${files} files in location/ (found: ${Object.keys(locations).length} locations)`); await save("maps/data.json", locations); } log.success(); } /** Gender data */ type gender = { name: "male" | "female" | "genderless"; pokemon_species_details: Array<{ pokemon_species: { name: string }; rate: number; }>; }; /** Encounters data */ type encounters = { name: string; pokemon_encounters: Array<{ pokemon: { name: string }; version_details: Array<{ encounter_details: Array<{ chance: number; method: { name: string }; }>; }>; }>; }; /** Location data */ type location = { name: string; names: Array<{ language: { name: string; }; name: string; }>; region: { name: string; } | null; areas: Array<{ name: string; }>; }; ================================================ FILE: app/build/steps/20_maps.ts ================================================ //Imports import { calcArea, exists, log as logger, read, save, toArray } from "app/build/util.ts"; import { expandGlob } from "std/fs/mod.ts"; /** Data */ export default async function ({ preload = true, quiet = false, force = false } = {}) { const log = quiet ? new Proxy({} as { [key: string]: () => void }, { get(target, key) { return Reflect.get(target, key) ?? (() => void 0); }, }) : logger; log.step("compute maps data"); const locations = {}; if (preload) { Object.assign(locations, await read("app/public/data/maps/data.json")); log.debug("loaded: maps/data.json"); } //Regions if ((!force) && (await exists("maps.json"))) { log.debug("skipped: maps.json (already present)"); } else { const ids = ["hoenn"]; const regions = []; for (const id of ids) { log.progress(`processing region: ${id}`); const region = { x: { min: Infinity, max: -Infinity }, y: { min: Infinity, max: -Infinity } }; for (const { x, y, width, height } of (await load.sections({ region: id })).sections) { region.x.min = Math.min(x, region.x.min); region.y.min = Math.min(y, region.y.min); region.x.max = Math.max(x + width, region.x.max); region.y.max = Math.max(y + height, region.y.max); } regions.push({ id, x: region.x.min, y: region.y.min, width: region.x.max - region.x.min, height: region.y.max - region.y.min, }); } await save("maps.json", { regions }); log.debug(`processed regions: ${ids.length}`); } //Sections { const regions = { count: 0, skipped: 0 }, sections = { count: 0, skipped: 0 }; for await (const { name: region, isDirectory } of expandGlob("maps/*")) { if ((!isDirectory) || (region === "all")) { continue; } log.progress(`processing section: ${region}/*`); if ((!force) && (await exists(`maps/${region}.json`))) { regions.skipped++; continue; } await save(`maps/${region}.json`, load.sections({ region })); for await (const { name, isFile } of expandGlob(`maps/${region}/*.tmx`)) { if (!isFile) { continue; } const section = name.replace(".tmx", ""); log.progress(`processing section: ${region}/${section}`); try { if ((!force) && (await exists(`maps/${region}/${section}.json`))) { sections.skipped++; continue; } await save(`maps/${region}/${section}.json`, load.section({ region, section, locations })); sections.count++; } catch (error) { if (/not properly referenced/.test(error.message)) { log.warn(error.message); continue; } throw error; } } regions.count++; } log.debug(`processed sections: ${sections.count} (${sections.skipped} skipped) from ${regions.count} regions (${regions.skipped} skipped)`); } //Spawn points { let regions = 0, skipped = 0; for await (const { name: region, isDirectory } of expandGlob("maps/*")) { if ((!isDirectory) || (region === "all")) { continue; } log.progress(`processing region spawns: ${region}`); if ((!force) && (await exists(`maps/${region}.json`))) { skipped++; continue; } const data = await read(`app/public/data/maps/${region}.json`); data.sections = await Promise.all(data.sections.map(async (section: { id: string }) => { const { spawn } = await read(`app/public/data/maps/${section.id}.json`); return Object.assign(section, { spawn }); })); await save(`maps/${region}.json`, data); regions++; } log.debug(`processed region spawns: from ${regions} regions (${skipped} skipped)`); } log.success(); } const load = { /** List region sections */ async sections({ region, filter = "" }: { region: string; filter?: string }) { //Load world data const { maps: raw } = await read("maps/gracidea.world"); //Formatted region sections data const sections = await Promise.all( raw .filter(({ fileName = "" }) => fileName.startsWith(`${region}/`) && fileName.includes(filter)) .map(async ({ fileName = "", x = 0, y = 0, ...properties }) => { const { map: raw } = await read(`maps/${fileName}`); const { "@width": width = properties.width ?? 0, "@height": height = properties.height ?? 0 } = toArray(raw.layer)?.[0] ?? {}; return { id: fileName.replace(".tmx", ""), x: x / 16, y: y / 16, height, width, }; }), ); return { sections }; }, /** Load region section */ async section({ region, section, locations }: { region: string; section: string; locations: { [key: string]: { [key: string]: unknown } | void } }) { //Load section data const { map: raw } = await read(`maps/${region}/${section}.tmx`); const bounds = await load.sections({ region, filter: section }).then(({ sections: [p = null] }) => p ?? null); if (!bounds) { throw new TypeError(`${section} is not properly referenced in ${region}`); } const { x: X, y: Y } = bounds; //Parse chunks data const chunks = [] as Array<{ id: string; layer: string; x: number; y: number; tiles: number[] }>; for (const { "@name": layer, ..._layer } of toArray(raw.layer)) { const { "@width": width, "@height": height, data: { "#text": tiled = null, chunk: chunked = [] } } = _layer; //Fixed-size map if (tiled) { //Extract and format data const tiles = (tiled as string) .split("\n") .map((value) => value.trim()) .filter((value) => value.length) .map((value) => value .split(",") .map((value) => value.trim()) .filter((value) => value.length) ); //Padding for 16-sized chunks const TY = tiles.length, TX = tiles[0].length; for (let f = 0; f < 16 - (TY % 16); f++) { tiles.push(new Array(TX).fill(0)); } for (const row of tiles) { row.push(...new Array(16 - (TX % 16)).fill(0)); } //Generate chunked data for (let x = 0; x < width; x += 16) { for (let y = 0; y < height; y += 16) { chunked.push({ "@x": x, "@y": y, "#text": tiles.slice(y, y + 16).map((row) => row.slice(x, x + 16).join(",")).join(",\n") }); } } } //Chunked map for (const chunk of toArray(chunked)) { //Extract and format data const { "@x": x, "@y": y, "#text": _tiles } = chunk; const id = `${layer}/${X + x / 16};${Y + y / 16}`; const tiles = (_tiles as string) .split(",") .map((value) => value.trim()) .filter((value) => value.length) .map((value) => Math.max(Number(value) - 1, 0)); //Save chunk if (tiles.reduce((a, b) => a + b, 0)) { chunks.push({ id, layer, x, y, tiles }); } } } //Search spawn point (tile id 6324) let spawn = null; for (const { x, y, tiles } of chunks) { for (let i = 0; i < tiles.length; i++) { if (tiles[i] === 6324) { if (spawn) { logger.warn(`spawn tile for ${section} was defined multiple time!`); } spawn = { x: X + x + i % 16, y: Y + y + Math.floor(i / 16) }; } } } //Parse areas data const areas = [] as Array<{ id: string; name: string; points: number[]; properties: { [key: string]: unknown } }>; for (const { "@name": type, object: objects } of toArray(raw.objectgroup)) { for (const object of toArray(objects)) { //Extract and format data const { "@id": id, "@name": name, "@type": mode, "@x": x, "@y": y, "@width": width, "@height": height, polygon, properties: _properties } = object; const properties = Object.fromEntries(toArray(_properties?.property).map(({ "@name": name, "@value": value }) => [name, value])); const points = (polygon?.["@points"].match(/-?\d+/g) ?? [0, 0, width, 0, width, height, 0, height]) .map((value: string) => Number(value)) .map((delta: number, index: number) => (delta + (index % 2 ? y : x)) / 16); const area = { id, type, name, points, properties }; //Specific formatting by type switch (type) { case "creatures": { const X = points.filter((_: number, i: number) => !(i % 2)), Y = points.filter((_: number, i: number) => i % 2); area.properties.size = calcArea(X, Y); break; } case "people": { const directions = Object.entries(properties).filter(([key, value]) => (["left", "right", "up", "down"].includes(key)) && (value)).map(([key]) => key); area.properties = { pattern: mode, directions }; break; } case "map": { const { "@gid": tile } = object; area.properties = { tile }; break; } } //Save area areas.push(area); } } //Formatted section data return { id: `${region}/${section}`, ...bounds, chunks, areas, spawn, ...locations?.[section] }; }, }; ================================================ FILE: app/build/steps/21_maps_diff.ts ================================================ //Imports import { ensureDir, expandGlob } from "std/fs/mod.ts"; import { copy } from "std/fs/copy.ts"; import { clone, log, read, save } from "app/build/util.ts"; import maps from "app/build/steps/20_maps.ts"; /** Compute diff */ export default async function () { log.step("computing diff with previous state"); //Setup await clone({ repo: "lowlighter/gracidea", dir: "app/build/cache/previous" }); //Generate previous maps data if (await Deno.lstat(`app/build/cache/previous/app/public/data/maps`).then(() => true).catch(() => false)) { log.debug(`built: previous maps data (already present)`); } else { log.progress(`building: previous maps data`); await ensureDir("app/build/cache/previous/app/public/data/maps/"); await copy("app/public/data/maps/data.json", "app/build/cache/previous/app/public/data/maps/data.json", { overwrite: true }); const cwd = Deno.cwd(); Deno.chdir("app/build/cache/previous"); await maps({ preload: false, quiet: true }); Deno.chdir(cwd); log.debug(`built: previous maps data`); } //Compute maps data diff { //List maps data const ids = new Set(); for (const glob of ["app/public/data/maps/*/**/*.json", "app/build/cache/previous/app/public/data/maps/*/**/*.json"]) { for await (const { path } of expandGlob(glob)) { const id = path.replaceAll("\\", "/").replace(/^[\s\S]*app\/public\/data\/maps\//, "").replace(/\.json$/, ""); ids.add(id); } } //Compute diff const patches = []; for (const id of ids) { log.progress(`processing: ${id}`); const A = await read(`app/build/cache/previous/app/public/data/maps/${id}.json`).catch(() => ({ chunks: [], areas: [] })); const B = await read(`app/public/data/maps/${id}.json`).catch(() => ({ chunks: [], areas: [] })); const diff = { tiles: {}, areas: {} } as { tiles: { [chunk: string]: { [tile: number]: { d: "+" | "-" | "~"; a: number | null; b: number | null } } }; areas: { [area: number | string]: { d: "+" | "-" | "~"; a: unknown | null; b: unknown | null } }; }; //Chunks diff { const a = Object.fromEntries(A.chunks.map((chunk: { layer: number; x: number; y: number }) => [`${chunk.layer}/${chunk.x};${chunk.y}`, chunk])); const b = Object.fromEntries(B.chunks.map((chunk: { layer: number; x: number; y: number }) => [`${chunk.layer}/${chunk.x};${chunk.y}`, chunk])); for (const id of Object.keys(a).filter((id) => !Object.keys(b).includes(id))) { b[id] = { ...a[id], tiles: new Array(a[id].tiles.length).fill(0) }; B.chunks.push(a[id]); } //Tiles diff for (const id of Object.keys(b)) { const d = diff.tiles[b[id]?.id] ??= {}; const tiles = Math.max(a[id]?.tiles.length ?? 0, b[id]?.tiles.length ?? 0); for (let i = 0; i < tiles; i++) { const t = { a: a[id]?.tiles[i] ?? 0, b: b[id]?.tiles[i] ?? 0 }; if ((!t.a) && (t.b)) { d[i] = { d: "+", a: null, b: t.b }; } else if ((t.a) && (!t.b)) { d[i] = { d: "-", a: t.a, b: null }; } else if (t.a !== t.b) { d[i] = { d: "~", a: t.a, b: t.b }; } } if (!Object.keys(d).length) { delete diff.tiles[b[id]?.id]; } } if (!Object.keys(diff.tiles).length) { delete (diff as { tiles?: unknown }).tiles; } } //Areas diff { const a = Object.fromEntries(A.areas.map((area: { id: string }) => [area.id, area])); const b = Object.fromEntries(B.areas.map((area: { id: string }) => [area.id, area])); for (const id of Object.keys(a).filter((id) => !Object.keys(b).includes(id))) { b[id] = null; B.areas.push(a[id]); } //Areas diff const d = diff.areas ??= {}; for (const id of Object.keys(b)) { const r = { a: a[id] ?? null, b: b[id] ?? null }; const i = id; if ((!r.a) && (r.b)) { d[i] = { d: "+", a: null, b: r.b }; } else if ((r.a) && (!r.b)) { d[i] = { d: "-", a: r.a, b: null }; } else if ((r.a) && (r.b) && (JSON.stringify(r.a) !== JSON.stringify(r.b))) { d[i] = { d: "~", a: r.a, b: r.b }; } } if (!Object.keys(diff.areas).length) { delete (diff as { areas?: unknown }).areas; } } //Report if (Object.keys(diff).length) { patches.push({ id, x: B.x, y: B.y, tiles: Object.entries(diff.tiles ?? []).map(([chunk, tiles]) => ({ chunk, added: Object.values(tiles).filter(({ d }) => d === "+").length, deleted: Object.values(tiles).filter(({ d }) => d === "-").length, changed: Object.values(tiles).filter(({ d }) => d === "~").length, editions: tiles, })), areas: { added: Object.entries(diff.areas ?? []).filter(([_, { d }]) => d === "+").flatMap(([k]) => B.areas.filter(({ id }: { id: string }) => `${k}` === `${id}`)), deleted: Object.entries(diff.areas ?? []).filter(([_, { d }]) => d === "-").flatMap(([k]) => B.areas.filter(({ id }: { id: string }) => `${k}` === `${id}`)), changed: Object.entries(diff.areas ?? []).filter(([_, { d }]) => d === "~").flatMap(([k]) => B.areas.filter(({ id }: { id: string }) => `${k}` === `${id}`)), }, }); Object.assign(B, { diff }); } await save(`maps/${id}.json`, B); } await save(`maps/patches.json`, patches); log.debug(`processed: ${ids.size} files`); } //Search for linked pull request { const pr = await pullrequest(); if (pr) { await save(`maps/patches.pr.json`, pr); log.debug(`linked: pull request #${pr}`); } } log.success(); } //Search pull request number on GitHub async function pullrequest() { try { const { data: { search: { nodes: [{ number: pr }] } } } = await fetch("https://api.github.com/graphql", { method: "POST", body: JSON.stringify({ query: `query { search(query: "repo:lowlighter/gracidea is:pr is:open hash:${Deno.env.get("VERCEL_GIT_COMMIT_SHA")}", type: ISSUE, first: 1) { nodes { ... on PullRequest { number } } } }`, }), }).then((response) => response.json()); return pr; } catch { return null; } } ================================================ FILE: app/build/steps/22_maps_world.ts ================================================ //Imports import { exists, log, read, save, toArray } from "app/build/util.ts"; /** Compute diff */ export default async function ({ force = false } = {}) { log.step("compute world map data"); //Setup if ((!force) && (await exists("maps.world.json"))) { log.debug("skipped: maps.world.json (already present)"); log.success(); return; } const { map: raw } = await read("maps/all/worldmap.tmx"); const layers = toArray(raw.layer); const { "@width": width = 0, "@height": height = 0 } = layers[0]; const map = { width, height, layers: [], images: [], links: [] } as worldmap; //Tiles for (const { "@name": layer, data: { "#text": tiled } } of layers) { const tiles = (tiled as string) .split("\n") .map((value) => value.trim()) .filter((value) => value.length) .flatMap((value) => value .split(",") .map((value) => value.trim()) .filter((value) => value.length) .map((value) => Number(value)) ); map.layers.push({ layer, tiles }); } //Region images for (const { "@name": name, "@offsetx": x = 0, "@offsety": y = 0, image } of toArray(raw.imagelayer)) { const { "@width": width = 0, "@height": height = 0 } = image; map.images.push({ name, x, y, width, height }); } //Links for (const { "@name": name, object: objects } of toArray(raw.objectgroup)) { switch (name) { case "links": { const cache = {} as { [section: string]: { x: number; y: number } }; for (const object of toArray(objects)) { //Parse polygon const { "@name": name, "@x": x, "@y": y, "@width": width, "@height": height, polygon } = object; if (!name) { continue; } const points = (polygon?.["@points"].match(/-?\d+/g) ?? [0, 0, width, 0, width, height, 0, height]) .map((value: string) => Number(value)) .map((delta: number, index: number) => (delta + (index % 2 ? y : x)) / 8); //Load associated location const [region] = name.split("/"); if (!cache[region]) { cache[region] = { x: NaN, y: NaN }; const { sections } = await read(`app/public/data/maps/${region}.json`); Object.assign(cache, Object.fromEntries(sections.map(({ id = "", x = 0, y = 0, width = 0, height = 0, spawn = null }) => [id, { x, y, width, height, spawn }]))); } map.links.push({ name, points, location: cache[name] ?? null }); } break; } } } await save("maps.world.json", map); log.success(); } /** World map */ type worldmap = { width: number; height: number; layers: Array<{ layer: string; tiles: number[] }>; images: Array<{ name: string; x: number; y: number; height: number; width: number }>; links: Array<{ name: string; points: number[]; location: { x: number; y: number } | null }>; }; ================================================ FILE: app/build/steps/30_textures.ts ================================================ //Imports import { clone, exists, log, read, save, toArray } from "app/build/util.ts"; import { expandGlob } from "std/fs/mod.ts"; import { basename, dirname } from "std/path/mod.ts"; /** Prepare textures */ export default async function ({ force = false } = {}) { log.step("preparing textures"); //Setup await clone({ repo: "PokeAPI/api-data", dir: "app/build/cache/data" }); //Tiles properties { let tilesets = 0, skipped = 0; for await (const { path, name } of expandGlob("copyrighted/textures/*/*.tsx")) { const style = basename(dirname(path)); const tileset = `${style}/${name.replace(".tsx", "")}`; log.progress(`processing: ${tileset}`); if ((!force) && (await exists(`textures/${tileset}.json`))) { skipped++; continue; } const { tileset: raw } = await read(`copyrighted/textures/${tileset}.tsx`); const animated = {} as { [key: string]: { frames: string[]; speed: number } }; const zindex = {} as { [key: string]: number }; for (const { "@id": id, properties: _properties } of toArray(raw.tile)) { const properties = Object.fromEntries(toArray(_properties?.property).map(({ "@name": name, "@value": value }) => [name, value])); //Animated tiles if ((properties.frames) && (properties.speed)) { animated[`${id}`] = { frames: new Array(properties.frames).fill(id).map((value, index) => `${value + index}`), speed: properties.speed, }; } //Z-index tiles if (properties.zindex) { zindex[`${id}`] = Number(properties.zindex); } } await save(`textures/${tileset}.json`, { id: tileset, animated, zindex }); tilesets++; } log.debug(`processed: ${tilesets} tilesets (skipped ${skipped})`); } //Textures effect if ((!force) && (await exists("textures/effects.json"))) { log.debug("skipped: textures/effects.json (already present)"); } else { log.progress(`processing: texture effects`); const effects = { creature: { name: {}, area: {} } } as { creature: { name: { [id: string]: string }; area: { [id: string]: string }; }; }; //Type related effects for await (const { path, name: file } of expandGlob("app/build/cache/data/data/api/v2/type/*/*.json")) { log.progress(`processing: location-area/${basename(dirname(path))}/${file}`); const { name, pokemon: creatures } = await read(path); if (name === "flying") { for (const { pokemon: { name: creature } } of creatures) { effects.creature.name[creature] = "fly"; } } } //Encounter methods related effects for (const method of ["old-rod", "good-rod", "super-rod", "surf", "super-rod-spots", "surf-spots"]) { effects.creature.area[method] = "swim"; } log.debug(`processed: 2 texture effects`); await save("textures/effects.json", effects); } log.success(); } /** Types data */ type types = { name: string; pokemon: Array<{ pokemon: { name: string }; }>; }; ================================================ FILE: app/build/steps/31_textures_packer.ts ================================================ //Imports import { crop, log } from "app/build/util.ts"; import { expandGlob } from "std/fs/mod.ts"; import { basename, dirname } from "std/path/mod.ts"; /** Prepare textures */ export default async function () { log.step("packaging textures"); //Worldmap { log.progress("processing: worldmap"); await crop({ path: "copyrighted/textures/all/worldmap.png", tileset: "worldmap", padding: 0, tilesize: 8 }); log.debug("processed: worldmap"); } //Tilesets { let tilesets = 0; for await (const { path, name } of expandGlob("copyrighted/textures/*/*.tsx")) { const style = basename(dirname(path)); if (style === "all") { continue; } const tileset = `${style}/${name.replace(".tsx", "")}`; log.progress(`processing: ${tileset}`); await crop({ path: path.replace(".tsx", ".png"), tileset }); tilesets++; } log.debug(`processed: ${tilesets} tilesets`); } log.success(); } ================================================ FILE: app/build/steps/40_assets.ts ================================================ //Imports import { log, read } from "app/build/util.ts"; import { expandGlob } from "std/fs/mod.ts"; import { copy } from "std/fs/copy.ts"; /** Public assets */ export default async function () { log.step("creating public assets"); //Static assets { log.progress(`copying: static assets`); await copy("app/client", "app/public", { overwrite: true }); await copy("copyrighted", "app/public", { overwrite: true }); const pending = []; for (const glob of ["README.md", "animated_map.gif", "gracidea.webp", "js/app", "textures/**/*.{tsx,tps,png}"]) { for await (const { path } of expandGlob(`app/public/${glob}`)) { pending.push(Deno.remove(path, { recursive: true })); } } await Promise.all(pending); log.debug(`copied: static assets`); } //Index.html { let sha = "(head)"; try { sha = Deno.env.get("VERCEL_GIT_COMMIT_SHA") || sha; } catch { //No-op } log.progress(`templating: index.html`); let index = await read("app/client/index.html"); index = index.replaceAll("{{sha}}", sha.substring(0, 7)); await Deno.writeTextFile("app/public/index.html", index); log.debug(`templated: index.html`); } log.success(); } ================================================ FILE: app/build/steps/41_assets_app.ts ================================================ //Imports import { log, pack } from "app/build/util.ts"; import { ensureDir } from "std/fs/mod.ts"; /** Public assets */ export default async function () { log.step("emitting bundled app"); //Setup await pack({ pkg: "pixi.js", dir: "app/build/cache/pixi.js" }); //App.js { log.progress(`emitting: app.js`); const { files } = await Deno.emit(new URL("../../client/js/app/mod.ts", import.meta.url).href, { bundle: "classic", importMapPath: "deno.json" }); await ensureDir("app/public/js"); await Deno.writeTextFile("app/public/js/app.js", files[`deno:///bundle.js`]); log.debug(`emitted: app.js`); } log.success(); } ================================================ FILE: app/build/util.ts ================================================ //Imports import argv from "y/string-argv@0.3.1"; import { bold, cyan, gray, green, italic, red, yellow } from "std/fmt/colors.ts"; import { Image } from "x/imagescript@1.2.9/mod.ts"; import { ensureDir } from "std/fs/mod.ts"; import { dirname, extname, isAbsolute, join, toFileUrl } from "std/path/mod.ts"; import { parse as parseXML } from "x/xml@2.0.3/parse.ts"; /** Encoder instance*/ const encoder = new TextEncoder(); /** Decoder instance */ const decoder = new TextDecoder(); /** Log wrapper */ export const log = { get size() { try { return Deno.consoleSize(Deno.stdout.rid).columns; } catch { return 128; } }, step(text: string) { return console.log(bold(`>>> ${text}`.padEnd(this.size))); }, progress(text: string) { Deno.stdout.write(encoder.encode(`${gray(text).padEnd(this.size)}\r`)); }, debug(text: string) { return console.debug(gray(text.padEnd(this.size))); }, info(text: string) { return console.info(cyan(text.padEnd(this.size))); }, warn(text: string) { return console.warn(yellow(text.padEnd(this.size))); }, error(text: string) { return console.error(red(text.padEnd(this.size))); }, success() { return console.log(green("success!".padEnd(this.size))); }, skipped() { return console.log(gray(italic("skipped".padEnd(this.size)))); }, }; /** Requirements */ export async function requirements() { if (Deno.build.os === "windows") { try { await exec("wsl exit", { compat: false }); } catch { log.error("error: windows subsystem for linux is not available"); return false; } } let success = true; for (const bin of ["git", "npm", "tar"]) { await exec(`which ${bin}`).catch((_) => (log.error(`error: ${bin} is not available`), success = false)); } return success; } /** Execute a command */ export async function exec(command: string, { compat = true } = {}) { if ((compat) && (Deno.build.os === "windows")) { command = `wsl ${command}`; } log.progress(`executing: ${command}`); const process = Deno.run({ cmd: argv(command), stdout: "piped", stderr: "piped" }); const [{ success, code }, ...stdio] = await Promise.all([process.status(), process.output(), process.stderrOutput()]); const stdout = decoder.decode(stdio[0]).trim(); const stderr = decoder.decode(stdio[1]).trim(); if (!success) { log.warn(stdout); log.error(stderr); throw new Error("failed to execute command"); } return { success, code, stdout, stderr }; } /** Clone a repository */ export async function clone({ repo, dir }: { repo: string; dir: string }) { log.progress(`cloning: ${repo}`); const exists = await Deno.lstat(dir).then(() => true).catch(() => false); if (!exists) { await exec(`git clone https://github.com/${repo}.git ${dir} --depth 1`); } log.debug(`cloned: ${repo}${exists ? " (already present)" : ""}`); } /** Download a npm dependency */ export async function pack({ pkg, dir }: { pkg: string; dir: string }) { log.progress(`packing: ${pkg}`); const exists = await Deno.lstat(dir).then(() => true).catch(() => false); if (!exists) { await ensureDir("app/build/cache"); const { stdout } = await exec(`npm pack ${pkg} --pack-destination app/build/cache`); const archive = `app/build/cache/${stdout}`; log.progress(`uncompressing: ${archive}`); await ensureDir(dir); await exec(`tar --extract --file ${archive} --directory ${dir}`); await Deno.remove(archive); } const { version = "unknown" } = JSON.parse(await Deno.readTextFile(`${dir}/package/package.json`)); log.debug(`packed: ${pkg}@${version}${exists ? " (already present)" : ""}`); } /** Crop an image instance */ export async function crop({ path, tileset, padding = 2, tilesize = 16 }: { path: string; tileset: string; padding?: number; tilesize?: number }) { log.progress(`processing: ${tileset}`); const directory = `app/build/cache/tilesets/${tileset}`; const image = await Image.decode(await Deno.readFile(path)); const X = (image.width - padding) / (tilesize + padding), Y = (image.height - padding) / (tilesize + padding); await ensureDir(directory); for (let y = 0; y < Y; y++) { for (let x = 0; x < X; x++) { const i = x + y * X, px = padding + x * (tilesize + padding), py = padding + y * (tilesize + padding); await Deno.writeFile(`${directory}/${i}.png`, await image.clone().crop(px, py, tilesize, tilesize).encode()); log.progress(`processing: ${tileset} (${i}/${X * Y})`); } } } /** Clean folder */ export async function clean({ path }: { path: string }) { if (!path) { throw new RangeError("no path specified for cleaning!"); } if (await Deno.lstat(path).then(() => true).catch(() => false)) { await Deno.remove(path, { recursive: true }); } log.debug(`cleaned: ${path}`); } /** Read and parse serialized data */ export async function read(path: string): Promise { const ext = extname(path); const url = isAbsolute(path) ? toFileUrl(path).href : toFileUrl(join(Deno.cwd(), path)).href; try { const content = await fetch(url).then((response) => response.text()); switch (ext) { case ".world": case ".json": return JSON.parse(content); case ".tmx": case ".tsx": return parseXML(content) as unknown as T; } return content as unknown as T; } catch (error) { log.error(`failed to fetched: ${path}`); throw error; } } /** Save data */ export async function save(path: string, data: unknown | Promise) { path = `app/public/data/${path}`; await ensureDir(dirname(path)); await Deno.writeTextFile(path, JSON.stringify(await data)); } /** Test data path */ export async function exists(path: string) { path = `app/public/data/${path}`; return await Deno.lstat(path).then(() => true).catch(() => false); } /** Send back a flattened array without falsy values */ export function toArray(value: T | T[]) { return [value].flat(Infinity).filter((value) => value); } /** Send back area value */ export function calcArea(X: number[], Y: number[]) { let area = 0; for (let i = 0, j = X.length - 1; i < X.length; j = i, i++) { area += (X[j] + X[i]) * (Y[j] - Y[i]); } return Math.abs(area / 2); } /** At position */ export async function at({ x, y }: { x: number; y: number }) { const matches = []; const regions = (await read<{ regions: rectangle[] }>("app/public/data/maps.json")).regions.filter((region) => contains(region, { x, y })); for (const { id: region } of regions) { const sections = (await read<{ sections: rectangle[] }>(`app/public/data/maps/${region}.json`)).sections.filter((section) => contains(section, { x, y })); for (const { id: section, x: X, y: Y } of sections) { const rx = x - X, ry = y - Y; const content = await read<{ chunks: rectangle[]; areas: polygon[] }>(`app/public/data/maps/${section}.json`); //Tiles matching const chunks = content.chunks.filter((chunk) => contains({ ...chunk, width: 16, height: 16 }, { x: rx, y: ry })); for (const { layer, tiles } of chunks as unknown as Array<{ layer: string; tiles: number[] }>) { matches.push({ region, section, layer, tile: tiles[rx * 16 + ry] }); } //Areas matching const areas = content.areas.filter((area) => contains(area, { x: rx + .5, y: ry + .5 })); for (const { type, name, points } of areas as unknown as Array<{ type: string; name: string; points: number[] }>) { matches.push({ region, section, type, name, points }); } } } return matches; } /** Test whether a point is contained within a polygon */ function contains({ x = 0, y = 0, width = 0, height = 0, points = [] as number[] }, p: { x: number; y: number }) { //Polygon if (points.length) { let inside = false; const length = points.length / 2; for (let i = 0, j = length - 1; i < length; j = i++) { const xi = points[i * 2]; const yi = points[(i * 2) + 1]; const xj = points[j * 2]; const yj = points[(j * 2) + 1]; const intersect = ((yi > p.y) !== (yj > p.y)) && (p.x < ((xj - xi) * ((p.y - yi) / (yj - yi))) + xi); if (intersect) { inside = !inside; } } return inside; } //Rectangle if (width <= 0 || height < 0) { return false; } return (p.x >= x && p.x < x + width) && (p.y >= y && p.y < y + height); } /** Rectangle */ type rectangle = { id: string; width: number; height: number; x: number; y: number }; /** Polygon */ type polygon = { id: string; points: number[] }; /** Parsed data accessor */ //deno-lint-ignore no-explicit-any type parsed = any; ================================================ FILE: app/client/css/styles.css ================================================ body { margin: 0; padding: 0; width: 100vw; height: 100vh; overflow: hidden; font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; background-color: #182850; } #sha { font-size: 0.7rem; font-family: monospace; opacity: .7; } * { user-select: none; -moz-user-select: none; -webkit-user-select: none; } /* Loader */ .loader { position: fixed; top: 0; right: 0; left: 0; bottom: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; color: white; font-size: 1.25rem; background-color: #182850; z-index: 9999; cursor: wait; } .loader .loaded { display: flex; flex-direction: column; opacity: 0.8; font-size: 0.8rem; height: 4rem; } .loader .loaded > * { opacity: 0.2; } .loader .loaded :nth-child(1) { opacity: 1; } .loader .loaded .loading { overflow: hidden; display: inline-block; vertical-align: top; } .loader .loaded .loading::after { overflow: hidden; display: inline-block; content: "..."; animation: loading-dots-keyframes 1.2s steps(4, jump-none) infinite; } @keyframes loading-dots-keyframes { 0% { transform: translateX(-100%); } } /* Menu */ nav { position: fixed; top: .5rem; left: .5rem; margin-right: .5rem; margin-bottom: .5rem; padding: .5rem; z-index: 8888; color: white; font-size: 1rem; display: flex; flex-direction: column; overflow-x: auto; max-width: 20rem; width: 100%; border-radius: 0.75rem; box-shadow: 0 0 15px #000000A0; backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); background-color: #000000B0; transition: background-color 1s ease; overflow: auto; max-height: calc(100% - 2rem); } nav.collapsed { background-color: transparent; } nav a, nav summary { display: flex; align-items: center; flex-shrink: 0; min-width: 10rem; color: #6ca8ec; cursor: pointer; } nav a, nav a:visited { text-decoration: none; } nav a:hover { text-decoration: underline; } nav a img, nav summary img { height: 1rem; width: 1rem; margin-right: .25rem; } nav .app-name { font-size: 1.5rem; cursor: pointer; } nav .app-name img { height: 1.5rem; width: 1.5rem; } nav .app-name:hover { color: #D2A8FF; } nav summary { color: #D2A8FF; } nav > a { margin-left: -.25rem; color: #D2A8FF; } nav details summary { margin-left: -1.25rem; } nav details { padding-left: 1rem; } nav.collapsed > *:not(.app-name) { display: none; } /* Labels and inputs */ label { display: flex; justify-content: space-between; cursor: pointer; border-radius: .25rem; } label:hover { background-color: #FFFFFF20; } label input, label select { max-width: 5rem; background: transparent; border: none; text-align: right; color: white; } /* Debug */ .debug { display: flex; flex-direction: column; } /* Patches */ .patches { font-family: monospace; } .patches .patch .id { color: #8250DF; cursor: pointer; font-weight: bold; } .patches .patch .id:hover { color: #0969DA; } .patches .patch .record { display: flex; } .patches .diff { margin-left: 1rem; margin-right: .5rem; min-width: 2.5rem; font-size: 0.8rem; display: flex; justify-content: flex-end; align-items: center; } .patches .diff .added { color: #116329; } .patches .diff .changed { color: #D79533; } .patches .diff .deleted { color: #82071E; } ================================================ FILE: app/client/index.html ================================================ Gracidea | Pokémon Live Map
Gracidea is loading
================================================ FILE: app/client/js/app/app.ts ================================================ //Imports import type { friend } from "app/client/types.ts"; import { global } from "app/client/types.ts"; import { deferred } from "std/async/deferred.ts"; import { Render } from "app/client/rendering/render.ts"; import { World } from "app/client/maps/world.ts"; import { Controller } from "app/client/controls/controller.ts"; /** App */ export class App { /** World */ static readonly world: World; /** Controller */ static readonly controller: Controller; /** App setup */ static async setup() { //Setup this.loaded("loaded /js/app.js", null, { update: true }); //Load patches const patches = await fetch(`/data/maps/patches.json?sha=${this.sha}`).then((response) => response.json()); if (patches.length) { this.config.patch = true; this.loaded("loaded patches, switching in preview mode"); } //Setup renderer, world and controller await (Render as friend).setup({ app: this }); Object.assign(this, { world: new World() }); await this.world.ready; Object.assign(this, { controller: new Controller({ target: this.world }) }); this.ready.resolve(); //User inputs const { x = 5, y = -55 } = Object.fromEntries(new URLSearchParams(window.location.search).entries()); this.world.camera.place({ x: Number(x) || 0, y: Number(y) || 0 }); //Finalize loading this.loaded("waiting for first rendering"); global.document.querySelector(".loader").remove(); return App; } /** App ready state */ static readonly ready = deferred(); /** Rendering instance */ static get rendering() { return (Render as friend).instance; } /** Print a message to loading console */ static get loaded() { return global.gracidea.loaded as (text: string, type?: string | null, options?: { update?: boolean }) => void; } /** Current commit sha */ static get sha() { return global.gracidea.sha as string; } /** Config */ static config = { //Texture settings textures: { //(for future usage) Textures styles style: "rse", //Toggle sea display sea: true, }, //People settings people: { //Toggle display display: true, }, //Creatures settings creatures: { //Toggle display display: true, //Shiny rate shiny: 1 / 128, }, //Debug settings debug: { //Toggle debug logs in console logs: false, //Toggle renderable bounds display bounds: false, }, //Patch settings (auto-enabled when patches.json is not empty) patch: false, }; } ================================================ FILE: app/client/js/app/controls/controller.ts ================================================ //Imports import type { Renderable } from "app/client/rendering/renderable.ts"; import type { event } from "app/client/types.ts"; import { global } from "app/client/types.ts"; import { App } from "app/client/app.ts"; /** * Controller */ export class Controller { static instance = null as unknown as Controller; /** Constructor */ constructor({ target }: { target: Renderable }) { this.#scrollers(); this.target = target; this.focus(target); Controller.instance = this; this.init(); } /** Init */ async init() { //World map { //Toggle world map { const label = dom.element("label", { text: "Display world map" }); label.append(dom.element("input", { attributes: { id: "control-worldmap", type: "checkbox" }, listeners: { click: ({ target: { checked: value } }) => { App.world.map.visible = value; this.focus(value ? { sprite: App.world.map.getChildByName("worldmap") } as Renderable : this.target); }, }, })); global.document.querySelector(".worldmap")?.append(label); } //Search location { const label = dom.element("label", { text: "Search location" }); label.append(dom.element("input", { attributes: { list: "control-worldmap-search" }, listeners: { change({ target: { value } }) { const location = App.world.locations.filter(({ name }) => name === value)[0] ?? null; if (location) { App.world.camera.place(location); global.document.querySelector("[list='control-worldmap-search']").value = ""; } }, }, })); const datalist = label.appendChild(dom.element("datalist", { attributes: { id: "control-worldmap-search" } })); for (const value of App.world.locations.map(({ name }) => name)) { datalist.append(dom.element("option", { attributes: { value } })); } global.document.querySelector(".worldmap")?.append(label); } } //Patches if (App.config.patch) { const patches = await fetch("/data/maps/patches.json").then((response) => response.json()); for (const { id, x, y, tiles = [], areas = {} } of patches) { //Sections const patch = dom.element("div", { class: "patch" }); patch.append(dom.element("div", { text: `@@ ${id} @@`, class: "id", listeners: { click() { App.world.camera.place({ x, y }); }, }, })); //Tiles for (const { chunk, added = 0, deleted = 0, changed = 0 } of tiles) { const record = patch.appendChild(dom.element("div", { class: "record" })); const diff = record.appendChild(dom.element("div", { class: "diff" })); if (added) { diff.append(dom.element("div", { text: `+${added}`, class: "added" })); } if (changed) { diff.append(dom.element("div", { text: `~${changed}`, class: "changed" })); } if (deleted) { diff.append(dom.element("div", { text: `-${deleted}`, class: "deleted" })); } record.append(dom.element("div", { text: chunk, class: "name" })); } //Areas for (const [action, values] of Object.entries(areas)) { for (const { id, type } of values as Array<{ id: string; type: string }>) { const record = patch.appendChild(dom.element("div", { class: "record" })); const diff = record.appendChild(dom.element("div", { class: "diff" })); diff.append(dom.element("div", { text: { added: "+", changed: "~", deleted: "-" }[action]?.repeat(2), class: action })); record.append(dom.element("div", { text: `${id} (${type})`, class: "name" })); } } //Pull request number const pr = await fetch("/data/maps/patches.pr.json").then((response) => response.json()).catch(() => null); if (pr) { const link = dom.element("a", { attributes: { href: `https://github.com/lowlighter/gracidea/pull/${pr}` }, text: `See pull request #${pr} on GitHub` }); global.document.querySelector(".debug")?.append(link); } global.document.querySelector(".patches")?.append(patch); } } else { global.document.querySelector(".patches")?.parentNode?.remove(); } //Debug options { //Patch mode if (App.config.patch) { const label = dom.element("label", { text: "patch" }); label.append(dom.element("input", { attributes: { type: "checkbox", checked: App.config.patch, disabled: true } })); global.document.querySelector(".debug")?.append(label); } //Debug logs { const label = dom.element("label", { text: "debug.logs" }); label.append(dom.element("input", { listeners: { click({ target: { checked: value } }) { App.config.debug.logs = value; }, }, attributes: { type: "checkbox", checked: App.config.debug.logs }, })); global.document.querySelector(".debug")?.append(label); } //Debug bounds { const label = dom.element("label", { text: "debug.bounds" }); label.append(dom.element("input", { listeners: { click({ target: { checked: value } }) { App.config.debug.bounds = value; }, }, attributes: { type: "checkbox", checked: App.config.debug.bounds }, })); global.document.querySelector(".debug")?.append(label); } //Textures styles { const label = dom.element("label", { text: "textures.style" }); const select = label.appendChild(dom.element("select", { listeners: { change({ target: { value } }) { App.config.textures.style = value; }, }, attributes: { value: App.config.textures.style }, })); for (const style of ["rse"]) { select.append(dom.element("option", { text: style, attributes: { value: style } })); } global.document.querySelector(".debug")?.append(label); } //Textures sea { const label = dom.element("label", { text: "textures.sea" }); label.append(dom.element("input", { listeners: { click({ target: { checked: value } }) { App.config.textures.sea = value; }, }, attributes: { type: "checkbox", checked: App.config.textures.sea }, })); global.document.querySelector(".debug")?.append(label); } //People display { const label = dom.element("label", { text: "people.display" }); label.append(dom.element("input", { listeners: { click({ target: { checked: value } }) { App.config.people.display = value; }, }, attributes: { type: "checkbox", checked: App.config.people.display }, })); global.document.querySelector(".debug")?.append(label); } //Creatures display { const label = dom.element("label", { text: "creatures.display" }); label.append(dom.element("input", { listeners: { click({ target: { checked: value } }) { App.config.creatures.display = value; }, }, attributes: { type: "checkbox", checked: App.config.creatures.display }, })); global.document.querySelector(".debug")?.append(label); } //Creatures shiny rate { const label = dom.element("label", { text: "creatures.shiny" }); label.append(dom.element("input", { listeners: { change({ target: { value } }) { App.config.creatures.shiny = Number(value); }, }, attributes: { type: "number", min: 0, max: 1, step: 0.125, value: App.config.creatures.shiny }, })); global.document.querySelector(".debug")?.append(label); } } //Menu global.document.querySelector("nav .app-name").addEventListener("click", () => global.document.querySelector("nav").classList.toggle("collapsed")); } /** Focused element */ focus(element: Renderable | null) { this.#focus = element; } /** Focused element */ #focus = null as Renderable | null; /** Target element */ target: Renderable; /** Scroll handlers */ #scrollers() { let click = { x: 0, y: 0, active: false }; let touch = { x: 0, y: 0 }; App.rendering.view.addEventListener("touchstart", (event: event) => { touch = { x: event.touches[0].pageX, y: event.touches[0].pageY }; }); App.rendering.view.addEventListener("mousedown", (event: event) => { click = { x: event.pageX, y: event.pageY, active: true }; }); App.rendering.view.addEventListener("touchmove", (event: event) => { const delta = { x: touch.x - event.touches[0].pageX, y: touch.y - event.touches[0].pageY }; touch = { x: event.touches[0].pageX, y: event.touches[0].pageY }; this.#update({ delta }); }); global.document.addEventListener("mousemove", (event: event) => { if (click.active) { if (event.buttons === 0) { click.active = false; return; } const delta = { x: click.x - event.pageX, y: click.y - event.pageY }; click = { x: event.pageX, y: event.pageY, active: true }; this.#update({ delta }); } this.#cursor = { x: event.clientX, y: event.clientY }; }); App.rendering.view.addEventListener("wheel", (event: event) => { event.preventDefault(); this.#update({ delta: { x: event.deltaX, y: event.deltaY } }); }); } /** Update focused element position */ #update({ delta }: { delta?: { x: number; y: number } }) { if (this.#focus) { if (delta) { this.#focus.sprite.position.set( Math.round(this.#focus.sprite.position.x - delta.x), Math.round(this.#focus.sprite.position.y - delta.y), ); } } } /** Camera position */ get camera() { return { x: Math.floor((-this.target.sprite.position.x + global.document.body.clientWidth / 2) / 16), y: Math.floor((-this.target.sprite.position.y + global.document.body.clientHeight / 2) / 16), }; } /** Cursor position (internal) */ #cursor = { x: 0, y: 0 }; /** Cursor position */ get cursor() { return { x: Math.floor((-this.target.sprite.position.x + this.#cursor.x) / 16), y: Math.floor((-this.target.sprite.position.y + this.#cursor.y) / 16), }; } /** Query selector */ qs(selector: string) { return global.document.querySelector(selector); } } /** Dom utilities */ const dom = { /** Dom element helper */ element(tag: string, { class: classes = [] as string | string[], attributes = {} as { [key: string]: unknown }, listeners = {} as { [key: string]: (event: event) => void }, text = "" } = {}) { const element = global.document.createElement(tag); for (const [name, value] of Object.entries(attributes)) { if ((tag === "input") && (name === "checked") && (!value)) { continue; } element.setAttribute(name, value); } for (const [event, listener] of Object.entries(listeners)) { element.addEventListener(event, listener); } for (const classname of [classes].flat()) { element.classList.add(classname); } if (text) { element.innerText = text; } return element; }, }; ================================================ FILE: app/client/js/app/maps/area.ts ================================================ //Imports import { App } from "app/client/app.ts"; import { Render } from "app/client/rendering/render.ts"; import { Renderable } from "app/client/rendering/renderable.ts"; import type { Section } from "app/client/maps/section.ts"; import { Controller } from "app/client/controls/controller.ts"; import { NPC } from "app/client/maps/npc.ts"; import { Creature } from "app/client/maps/npc.creature.ts"; import { Human } from "app/client/maps/npc.human.ts"; import type { Graphics } from "app/client/rendering/render.ts"; /** * Section area. * It is used to display characters, creatures and others areas within a map section. */ export class Area extends Renderable { /** Section */ readonly section: Section; /** Data */ readonly data: Data; /** Polygon */ readonly polygon: ReturnType; /** Loaded NPCs */ readonly npcs = new Set(); /** Constructor */ constructor({ section, data }: { section: Section; data: Data }) { super({ id: data.name }); this.section = section; this.data = data; this.polygon = Render.Polygon(this.data.points); this.section.debug.addChild(this.debug); } /** Destructor */ destructor() { this.section.areas.delete(this); this.npcs.forEach((npc) => npc.destructor()); return super.destructor(); } /** Test if point is contained within area */ contains({ x, y }: { x: number; y: number }) { return this.polygon.contains(x * 16, y * 16); } /** Encounter rates */ get encounters() { return this.section.data.encounters?.[this.id] as { [name: string]: number } ?? null; } /** Update renderable */ async update({ debug = this.debug.visible, t, dt }: { t: number; dt: number; debug?: boolean }) { if (this.data.type === "creatures") { if ((App.config.creatures.display) && (this.npcs.size < 1 /*+ Number(this.data.properties.size)/10*/)) { if (this.encounters) { this.npcs.add(new Creature({ area: this })); } } } if (this.data.type === "people") { if ((App.config.people.display) && (this.npcs.size < 1)) { this.npcs.add(new Human({ area: this })); } } if ((debug) && (this.dirty)) { this.debug.bounds.removeChildren(); this.debug.bounds.addChild(Render.Graphics({ text: `${this.id}`, polygon: this.polygon, ...Renderable.debug, ...(this.constructor as typeof Renderable).debug, textPosition: { x: this.polygon.points[0] / 16, y: this.polygon.points[1] / 16 }, ...(this.contains(Controller.instance.cursor) ? { stroke: [3, 0xFFFFFF, .5] } : {}), })); } return super.update({ t, dt, debug: false }); } /** Debug graphics properties */ protected static debug = { stroke: [1, 0x85144B, .5], fill: [0x85144B, .125], textStyle: { align: "center", fontSize: 10, fill: "#85144B", fontFamily: "monospace" }, } as Partial; } /** Types */ export const enum Type { people = "people", creatures = "creatures", map = "map", } /** Area data */ export type Data = { id: number; name: string; type: Type; points: number[]; properties: { [key: string]: unknown }; }; ================================================ FILE: app/client/js/app/maps/camera.ts ================================================ //Imports import { global } from "app/client/types.ts"; import { Render } from "app/client/rendering/render.ts"; import { Renderable } from "app/client/rendering/renderable.ts"; import type { World } from "app/client/maps/world.ts"; import type { Region } from "app/client/maps/region.ts"; /** Visible range */ const visible = { x: 7 * 16, y: 5 * 16 }; /** Loaded range */ const loaded = { x: 11 * 16, y: 9 * 16 }; /** * Camera. */ export class Camera extends Renderable { /** World */ readonly #world: World; /** Constructor */ constructor({ world }: { world: World }) { super({ id: "camera", visible: false }); this.#world = world; this.#world.debug.addChild(this.debug); this.#visible = Render.Rectangle([0, 0, visible.x / 16, visible.y / 16]); this.#loaded = Render.Rectangle([0, 0, loaded.x / 16, loaded.y / 16]); } /** Visible areas */ readonly #visible: ReturnType; /** Loaded areas */ readonly #loaded: ReturnType; /** Update renderable */ async update({ debug = this.debug.visible, t, dt }: { t: number; dt: number; debug?: boolean }) { //Update position and areas const { x, y } = this; this.#visible.x = Math.ceil(x - this.#visible.width / 2); this.#visible.y = Math.ceil(y - this.#visible.height / 2); this.#loaded.x = Math.ceil(x - this.#loaded.width / 2); this.#loaded.y = Math.ceil(y - this.#loaded.height / 2); //Dynamically load and unload sections this.#world.regions.forEach((region: Region) => { //Load sections in range for (const [id, bounds] of region.loadable) { if (this.intersects(bounds) > Intersection.NONE) { region.load(id); } } //Update sections display and clean out the ones that are too far away for (const [_, section] of region.sections) { const i = this.intersects(section.bounds); if (i < Intersection.LOADED) { section.destructor(); } else if (i < Intersection.VISIBLE) { section.hide(); } else { section.show(); } } }); //Debug sprite if (debug) { this.debug.bounds.removeChildren(); this.debug.bounds.addChild(Render.Graphics({ rect: [this.#loaded.x, this.#loaded.y, this.#loaded.width, this.#loaded.height], fill: [0xAAAAAA, .125], })); this.debug.bounds.addChild(Render.Graphics({ text: [ `x: ${x}`, `y: ${y}`, `visible.x: ${this.#visible.x} to ${this.#visible.x + this.#visible.width}`, `visible.y: ${this.#visible.y} to ${this.#visible.y + this.#visible.height}`, `loaded.x: ${this.#loaded.x} to ${this.#loaded.x + this.#loaded.width}`, `loaded.y: ${this.#loaded.y} to ${this.#loaded.y + this.#loaded.height}`, `world.x: ${this.#world.sprite.position.x}px`, `world.y: ${this.#world.sprite.position.y}px`, ].join("\n"), textPosition: { x, y }, textAnchor: [.5, .5], textStyle: { fontSize: 12, fontFamily: "monospace" }, rect: [this.#visible.x, this.#visible.y, this.#visible.width, this.#visible.height], fill: [0xDDDDDD, .125], })); } return super.update({ t, dt, debug: false }); } /** Test in which camera area a rectangle is located */ private intersects(rectangle: ReturnType) { if (!this.#loaded.intersects(rectangle)) { return Intersection.NONE; } else if (!this.#visible.intersects(rectangle)) { return Intersection.LOADED; } return Intersection.VISIBLE; } /** Move camera to given position */ place({ x, y }: { x: number; y: number }) { this.#world.sprite.position.set(-x * 16 + global.document.body.clientWidth / 2, -y * 16 + global.document.body.clientHeight / 2); } /** X coordinate */ get x() { return Math.floor((-this.#world.sprite.position.x + global.document.body.clientWidth / 2) / 16); } /** Y coordinate */ get y() { return Math.floor((-this.#world.sprite.position.y + global.document.body.clientHeight / 2) / 16); } } /** Intersection with camera areas */ export const enum Intersection { NONE = 0, LOADED = 1, VISIBLE = 2, } ================================================ FILE: app/client/js/app/maps/npc.creature.ts ================================================ //Imports import type { Area } from "app/client/maps/area.ts"; import { App } from "app/client/app.ts"; import { NPC } from "app/client/maps/npc.ts"; import { Render } from "app/client/rendering/render.ts"; /** * NPC (Creature). */ export class Creature extends NPC { /** Name */ protected readonly name = "" as string; /** Constructor */ constructor({ area }: { area: Area }) { super({ area }); let random = Math.random(); for (const name in this.area.encounters) { const rate = this.area.encounters[name]; if (random <= rate) { this.name = name; break; } random -= rate; } this.sprite.alpha = 0; this.#lifetime = Math.floor(100 + Math.random() * 200); this.init({ frame: `${Math.random() < App.config.creatures.shiny ? "shiny" : "regular"}/${this.name}`, random: true, }); const effects = []; if (this.area.data.name in Render.effects.creature.area) { effects.push(Render.effects.creature.area[this.area.data.name]); } if (this.name in Render.effects.creature.name) { effects.push(Render.effects.creature.name[this.name]); } if (effects.length) { this.effects(...effects); } } /** Lifetime */ #lifetime = Infinity; /** Update tracker */ protected get tracker() { return this.#lifetime; } /** Perform refresh */ protected refresh() { this.#lifetime--; if (this.#lifetime <= 0) { if (this.sprite.alpha > 0.1) { this.sprite.alpha *= 0.9; } else { return this.destructor(); } } else if (this.sprite.alpha < 1) { this.sprite.alpha = Math.min(App.config.patch ? 0.25 : 1, this.sprite.alpha * 1.2); if (!this.sprite.alpha) { this.sprite.alpha = 0.1; } } return super.refresh(); } /** Perform NPC action */ protected action() { this.wander(); } /** Update */ async update({ debug = this.debug.visible, t, dt }: { t: number; dt: number; debug?: boolean }) { this.sprite.visible = App.config.creatures.display; super.update({ debug, t, dt }); } } ================================================ FILE: app/client/js/app/maps/npc.human.ts ================================================ //Imports import type { Area } from "app/client/maps/area.ts"; import type { rw } from "app/client/types.ts"; import { NPC } from "app/client/maps/npc.ts"; import { App } from "app/client/app.ts"; /** * NPC (Human). */ export class Human extends NPC { /** Name */ protected readonly name = "" as string; /** Constructor */ constructor({ area }: { area: Area }) { super({ area }); this.name = this.area.data.name; this.init(); } /** Allowed directions */ readonly #directions = [] as string[]; /** Track points */ readonly #track = [] as number[]; /** Track index */ #index = 0; /** Track pattern */ #pattern = Pattern.fixed; /** Initialize renderable */ protected async init() { //Allowed directions for lookaround if (this.#pattern === Pattern.lookaround) { this.#directions.push(...(this.area.data.properties.directions ?? []) as string[]); } //Compute track for loop and patrols if ((this.#pattern === Pattern.loop) || (this.#pattern === Pattern.patrol)) { const points = this.area.polygon.points.map((n: number) => n / 16); points.push(points[0], points[1]); this.#track.push(points[0], points[1]); for (let i = 2; i < points.length; i += 2) { let [x, y, nx, ny] = [points[i - 2], points[i - 1], points[i], points[i + 1]]; const dx = nx - x; const dy = ny - y; for (let j = 0; j < Math.abs(dx); j++) { this.#track.push(x += Math.sign(dx), y); } for (let j = 0; j < Math.abs(dy); j++) { this.#track.push(x, y += Math.sign(dy)); } } //Remove invalid cells for (let i = 0; i < this.#track.length; i += 2) { const [x, y] = [this.#track[i], this.#track[i + 1]]; if (!this.area.contains({ x, y })) { this.#track[i] = this.#track[i + 1] = NaN; } } (this as rw).#track = this.#track.filter(Number.isFinite); //Push reversed track on patrol if (this.#pattern === Pattern.patrol) { const points = this.#track.slice(); for (let i = points.length - 4; i > 0; i -= 2) { this.#track.push(points[i], points[i + 1]); } } //Remove duplicated cell on loop if ((this.#pattern === Pattern.loop) && (this.#track.at(0) === this.#track.at(-2)) && (this.#track.at(1) === this.#track.at(-1))) { this.#track.pop(); this.#track.pop(); } } return super.init(); } /** Update tracker */ protected get tracker() { return this.#index; } /** Perform NPC action */ protected action() { this.wander(); } /** Update */ async update({ debug = this.debug.visible, t, dt }: { t: number; dt: number; debug?: boolean }) { this.sprite.visible = App.config.people.display; super.update({ debug, t, dt }); } } /** Patterns */ export const enum Pattern { patrol = "patrol", loop = "loop", wander = "wander", fixed = "fixed", lookaround = "lookaround", } ================================================ FILE: app/client/js/app/maps/npc.ts ================================================ //Imports import type { Area } from "app/client/maps/area.ts"; import { Renderable } from "app/client/rendering/renderable.ts"; import { Render } from "app/client/rendering/render.ts"; import type { Graphics } from "app/client/rendering/render.ts"; import type { rw } from "app/client/types.ts"; /** Directions */ const enum Direction { none = 0, up = 1, right = 2, down = 3, left = 4, } /** * NPC. */ export class NPC extends Renderable { /** Area */ readonly area: Area; /** Name */ protected readonly name = "" as string; /** Constructor */ constructor({ area }: { area: Area }) { super({ id: "" }); this.area = area; } /** Destructor */ destructor() { this.area.npcs.delete(this); return super.destructor(); } /** Initialize renderable */ protected async init({ frame, random = false }: { frame?: string; random?: boolean; parent?: Renderable } = {}) { //Search initial spawn point let [x, y] = this.area.data.points; for (const dx of [1, 0, -1]) { for (const dy of [1, 0, -1]) { if ((!dx) && (!dy)) { continue; } if (this.area.contains({ x: x + dx, y: y + dy })) { x += dx; y += dy; break; } } } //Search random spawn point if (random) { let xm = Infinity, xM = -Infinity, ym = Infinity, yM = -Infinity; this.area.data.points.forEach((v, i) => { if (i % 2) { ym = Math.min(ym, v); yM = Math.max(yM, v); } else { xm = Math.min(xm, v); xM = Math.max(xM, v); } }); for (let i = 0; i < 20; i++) { const tx = Math.round(xm + xM * Math.random()); const ty = Math.round(ym + yM * Math.random()); if (this.area.contains({ x: tx, y: ty })) { x = tx; y = ty; break; } } } //Save initial position this.x = x; this.y = y; this.#tx = x; this.#ty = y; //Initialize main texture this.area.section.sprite.addChild(this.sprite); this.area.debug.addChild(this.debug); this.#texture = this.sprite.addChild(Render.Sprite({ frame, anchor: [0.5, 1], y: 1 })); //Initialize interactivity this.sprite.interactive = true; this.sprite.cursor = "pointer"; this.sprite.mouseover = () => { if (!this.sprite.filters) { this.sprite.filters = Render.ColorFilter({ brightness: 1.5 }); } }; this.sprite.mouseout = () => this.sprite.filters = null; //Patch /*if (App.config.patch) { Render.patch(this.sprite, this.area.section.data.diff?.areas?.[this.id] ?? "="); if (type) { sprite.tint = { "+": 0x116329, "-": 0x82071E, "~": 0x953800, "=": 0x222222 }[type]; sprite.alpha = type === "=" ? 0.25 : 0.75; } else { sprite.tint = 0xFFFFFF; } }*/ return super.init(); } /** Update */ async update({ debug = this.debug.visible, t, dt }: { t: number; dt: number; debug?: boolean }) { //Ignore if destroyed if (this.destroyed) { return; } this.refresh(); //Debug sprite if ((debug) && (this.dirty)) { this.debug.bounds.removeChildren(); this.debug.bounds.addChild(Render.Graphics({ text: (this as rw).tracker, rect: [-.5, 0, 1, 1], ...(this.constructor as typeof Renderable).debug, })); this.debug.position.set(this.sprite.x, this.sprite.y); } return super.update({ debug: false, t, dt }); } /** X coordinate */ set x(value: number) { this.sprite.position.x = value * 16 + 8; } get x() { return (this.sprite.position.x - 8) / 16; } /** Target X coordinate */ #tx = 0; /** Y coordinate */ set y(value: number) { this.sprite.position.y = value * 16; } get y() { return this.sprite.position.y / 16; } /** Target Y coordinate */ #ty = 0; /** Target tick wait */ #tt = 0; /** Is moving */ get moving() { return (this.#tx !== this.x) || (this.#ty !== this.y) || (this.#tt); } /** Perform refresh */ protected refresh() { if (this.moving) { this.move(); } else { this.action(); } } /** Perform NPC action */ protected action() { //No-op } /** Wander in a random direction */ protected wander() { this.direction({ direction: [Direction.none, Direction.left, Direction.right, Direction.up, Direction.down, Direction.none][Math.floor(Math.random() * 6)], move: true, }); } /** Move sprite */ private move({ delta = 1 / 2 ** 4 }: { delta?: number } = {}) { switch (this.#direction) { case Direction.none: { if (this.#tt) { this.#tt = Math.max(0, this.#tt - delta); } break; } case Direction.left: { this.x -= delta; this.#animate(this.#tx - this.x); if (this.x <= this.#tx) { this.x = this.#tx; this.#direction = Direction.none; } break; } case Direction.right: { this.x += delta; this.#animate(this.#tx - this.x); if (this.x >= this.#tx) { this.x = this.#tx; this.#direction = Direction.none; } break; } case Direction.up: { this.y -= delta; this.#animate(this.#ty - this.y); if (this.y <= this.#ty) { this.y = this.#ty; this.#direction = Direction.none; } break; } case Direction.down: { this.y += delta; this.#animate(this.#ty - this.y); if (this.y >= this.#ty) { this.y = this.#ty; this.#direction = Direction.none; } break; } } } /** Current direction */ #direction = Direction.none; /** Change direction and optionally perform a step */ protected direction({ direction, move = false }: { direction: Direction; move?: boolean }) { if (this.moving) { return; } if (move) { switch (direction) { case Direction.none: { this.#tt = 1; break; } case Direction.left: { if (this.area.contains({ x: this.x - 1.5, y: this.y })) { this.texture({ suffix: "_left_0", fallback: +1 }); this.#tx = this.x - 1; } break; } case Direction.right: { if (this.area.contains({ x: this.x + 1.5, y: this.y })) { this.texture({ suffix: "_right_0", fallback: -1 }); this.#tx = this.x + 1; } break; } case Direction.up: { if (this.area.contains({ x: this.x, y: this.y - 1.5 })) { this.texture({ suffix: "_up_0" }); this.#ty = this.y - 1; } break; } case Direction.down: { if (this.area.contains({ x: this.x, y: this.y + 1.5 })) { this.texture({ suffix: "_down_0" }); this.#ty = this.y + 1; } break; } } } this.#direction = direction; } /** Main texture */ #texture: ReturnType; /** Set texture frame and optionally fallback on mirroring */ private texture({ suffix = "", fallback = 0 }: { suffix?: string; fallback?: number } = {}) { const frame = `${this.name}${suffix}`; if (frame in Render.cache) { this.#texture.texture = Render.Texture(frame); } else if (fallback) { this.#texture.scale.x = Math.sign(fallback); } } /** Texture animation */ #animate(delta: number, { speed = 4, frames = 3 } = {}) { if (this.#direction === Direction.none) { return; } const i = Math.floor(Math.abs(delta) / (1 / speed)) % frames; const d = { [Direction.up]: "up", [Direction.right]: "right", [Direction.down]: "down", [Direction.left]: "left" }[this.#direction]; this.texture({ suffix: `_${d}_${i}` }); } /** Active effects */ #effects = { fly: null as ReturnType | null, swim: null as ReturnType | null, }; /** Set texture effects */ protected effects(...effects: string[]) { //Flying effect if (effects.includes("fly")) { this.#effects.fly = this.sprite.addChildAt(Render.Graphics({ fill: [0, 0.5], ellipse: [0, 0.5, 2 / 3, 2 / 4] }), 0); this.#effects.fly.cacheAsBitmap = true; this.#texture.position.y = 1.5; } else if (this.#effects.fly) { this.sprite.removeChild(this.#effects.fly); this.#effects.fly.destroy({ children: true }); this.#effects.fly = null; this.#texture.position.y = 1; } //Swimming effect if (effects.includes("swim")) { const mask = Render.Graphics({ rect: [-2, -2, 4, 2.4], fill: [0, 0] }); this.#effects.swim = mask; this.#effects.swim.cacheAsBitmap = true; this.sprite.addChild(mask); this.#texture.mask = mask; } else if (this.#effects.swim) { this.sprite.removeChild(this.#effects.swim); this.#effects.swim.destroy({ children: true }); this.#effects.swim = null; this.#texture.mask = null; } } /** Debug graphics properties */ protected static debug = { fill: [0x001F3F, .25], textPosition: { x: 0, y: 1 }, textStyle: { fill: "white", fontSize: 10, fontFamily: "monospace" }, } as Partial; } ================================================ FILE: app/client/js/app/maps/region.ts ================================================ //Imports import type { World } from "app/client/maps/world.ts"; import { Section } from "app/client/maps/section.ts"; import { Renderable } from "app/client/rendering/renderable.ts"; import { Render } from "app/client/rendering/render.ts"; /** * Region. */ export class Region extends Renderable { /** World */ readonly world: World; /** Bounds */ readonly bounds = Render.Rectangle(); /** Loaded sections */ readonly sections = new Map(); /** Constructor */ constructor({ world, id, bounds }: { world: World; id: string; bounds: { x: number; y: number; width: number; height: number } }) { super({ id }); Object.assign(this.bounds, bounds); this.world = world; this.init(); } /** Destructor */ destructor() { this.world.regions.delete(this.id); return super.destructor(); } /** Initialize renderable */ protected async init() { const { sections } = await fetch(`/data/maps/${this.id}.json`).then((res) => res.json()); for (const { id = "", x = 0, y = 0, width = 0, height = 0 } of sections) { this.loadable.set(id, Render.Rectangle([x / 16, y / 16, width / 16, height / 16])); } return super.init({ parent: this.world }); } /** Loadable sections */ readonly loadable = new Map>(); /** Load section */ async load(id: string) { if (!this.sections.has(id)) { this.sections.set(id, new Section({ region: this, id, bounds: this.loadable.get(id)! })); } } /** Update */ async update({ t, dt }: { t: number; dt: number; debug?: boolean }) { return super.update({ debug: false, t, dt }); } } ================================================ FILE: app/client/js/app/maps/section.ts ================================================ //Imports import { Render } from "app/client/rendering/render.ts"; import type { Region } from "app/client/maps/region.ts"; import { Renderable } from "app/client/rendering/renderable.ts"; import { Area } from "app/client/maps/area.ts"; import { App } from "app/client/app.ts"; /** * Section. */ export class Section extends Renderable { /** Region */ readonly region: Region; /** Bounds */ readonly bounds = Render.Rectangle(); /** Loaded areas */ readonly areas = new Set(); /** Constructor */ constructor({ region, id, bounds }: { region: Region; id: string; bounds: { x: number; y: number; width: number; height: number } }) { super({ id, visible: false }); const { x, y } = bounds; this.region = region; this.sprite.position.set(x * 16, y * 16); this.sprite.sortableChildren = true; Object.assign(this.bounds, bounds); this.init(); } /** Destructor */ destructor() { this.region.sections.delete(this.id); this.areas.forEach((area) => area.destructor()); return super.destructor(); } /** Section data */ readonly data: data; /** Initialize renderable */ protected async init() { this.#placeholder = this.sprite.addChild(Render.Graphics({ stroke: [1, 0x284088, 1], fill: [0x182850, 1], rect: [0, 0, this.bounds.width, this.bounds.height], text: `${this.id}\n(loading)`, textStyle: { align: "center", fontSize: 16, fill: "white", fontFamily: "monospace" }, textPosition: { x: this.bounds.width / 2, y: this.bounds.height / 2 }, })); return super.init({ parent: this.region }); } /** Is loaded */ #loaded = false; /** Placeholder */ #placeholder = null as null | ReturnType; /** Load section */ async load() { //Ensure this is not loaded multiple times and that initialization is complete if (this.#loaded) { return; } this.#loaded = true; await this.ready; Object.assign(this, { data: await fetch(`/data/maps/${this.id}.json`).then((res) => res.json()) }); const { chunks, areas } = this.data; //Load chunks for (const { id, layer, x: X, y: Y, tiles } of chunks) { this.debug.addChild( Render.Graphics({ text: id, textStyle: { fontSize: 10, fontFamily: "monospace", fill: "white" }, textPosition: { x: X + .25, y: Y + .75 * (1 + layer) }, textAnchor: [0, 0], stroke: [1, 0x2ECC40, .5], rect: [X, Y, 16, 16], }), ); for (let i = 0; i < tiles.length; i++) { const frames = []; if (App.config.patch) { const { d, a, b } = this.data.diff?.tiles?.[id]?.[i] ?? {}; switch (d) { case "+": frames.push({ frame: b, alpha: 0.8 }, { frame: 6327, alpha: 0.4 }); break; case "~": frames.push({ frame: b, alpha: 0.8 }, { frame: 6325, alpha: 0.4 }); break; case "-": frames.push({ frame: a, alpha: 0.8 }, { frame: 6326, alpha: 0.4 }); break; default: if (tiles[i]) { frames.push({ frame: tiles[i], alpha: 0.2 }); } break; } } else if ((tiles[i]) && (tiles[i] < 6215)) { frames.push({ frame: tiles[i] }); } if (frames.length) { const x = X + i % 16, y = Y + Math.floor(i / 16); for (const { frame, alpha = 1 } of frames) { this.sprite.addChild(Render.Sprite({ frame, x, y, z: Render.tileset.zindex[`${frame}`] ?? 0, alpha })); } } } } //Load areas for (const area of areas) { this.areas.add(new Area({ section: this, data: area })); } //Remove placeholder if (this.#placeholder) { this.sprite.removeChild(this.#placeholder)?.destroy({ children: true }); this.#placeholder = null; } if (App.config.debug.logs) { console.debug(`loaded: ${this.constructor.name}#${this.id}`); } } /** Show renderable */ show() { this.load(); this.sprite.visible = true; } } //deno-lint-ignore no-explicit-any type data = any; ================================================ FILE: app/client/js/app/maps/world.ts ================================================ //Imports import { App } from "app/client/app.ts"; import { Renderable } from "app/client/rendering/renderable.ts"; import { Region } from "app/client/maps/region.ts"; import { Camera } from "app/client/maps/camera.ts"; import type { Graphics } from "app/client/rendering/render.ts"; import { Render } from "app/client/rendering/render.ts"; /** * World. */ export class World extends Renderable { /** Loaded regions */ readonly regions = new Map(); /** Camera */ readonly camera: Camera; /** World map */ readonly map: ReturnType; /** World locations */ readonly locations = [] as Array<{ name: string; x: number; y: number; spawn: { x: number; y: number } | null; bounds: ReturnType }>; /** Constructor */ constructor() { super({ id: "gracidea" }); this.camera = new Camera({ world: this }); this.init(); } /** Initialize renderable */ protected async init() { await Promise.all([this.#regions(), this.#map(), this.#coordinates()]); return super.init({ parent: App.rendering.stage }); } /** Setup world regions */ async #regions() { const { regions } = await fetch("/data/maps.json").then((res) => res.json()); for (const { id = "", ...bounds } of regions) { this.regions.set(id, new Region({ world: this, id, bounds })); } this.#sea.sprite = this.sprite.addChild(Render.TilingSprite()); if (App.config.patch) { this.#sea.sprite.alpha = 0.1; } } /** Setup world map */ async #map() { //Setup const { width, height, layers, images, links } = await fetch("/data/maps.world.json").then((res) => res.json()); const container = App.rendering.stage.addChild(Render.Container({ z: 1 })); container.addChild(Render.Graphics({ fill: [0x51BADA, 0.75], rect: [0, 0, 128, 128] })); container.visible = false; Object.assign(this, { map: container }); //Create world map const map = container.addChild(Render.Container()); map.name = "worldmap"; map.scale.set(2); for (const { layer, tiles } of layers) { //Cities, roads and interests points for (let i = 0; i < width * height; i++) { const tile = tiles[i] - 1; if (tile) { const x = (i % width) / 2, y = Math.floor(i / width) / 2; map.addChild(Render.Sprite({ frame: `worldmap/${tile}`, x, y })); } } //After sea roads, display region background if (layer === "roads.sea") { for (const { name, x, y, width, height } of images) { const sprite = map.addChild(Render.Sprite({ frame: `regions/${name}` })); Object.assign(sprite, { x, y, width, height }); } } } //Create links for (const { name, points, location } of links) { const sprite = map.addChild(Render.Graphics({ fill: [0xFFFFFF, 1], polygon: points.map((point: number) => point / 2) })); sprite.interactive = true; sprite.cursor = "pointer"; sprite.alpha = 0; sprite.mouseover = () => sprite.alpha = 0.8; sprite.mouseout = () => sprite.alpha = 0; sprite.click = () => (this.camera.place(location.spawn ?? location), App.controller.qs("#control-worldmap").click()); sprite.tap = sprite.click; this.locations.push({ name, ...location, bounds: new Render.engine.Rectangle(location.x, location.y, location.width, location.height) }); } } /** Setup coordinates handle */ async #coordinates() { const handle = App.rendering.stage.addChild(Render.Sprite({ z: 2 })); handle.name = "coordinates"; handle.position.set(4, App.rendering.view.height - 20); handle.addChild(new Render.engine.Text("", { fontSize: 16, fill: "white", strokeThickness: 2, fontFamily: "monospace" })); } /** Sea texture */ readonly #sea = { sprite: null as ReturnType | null, frame: 0, dt: 0, resize: true, }; /** Update renderable */ async update({ t, dt }: { t: number; dt: number; debug?: boolean }) { //Sea update if (this.#sea.sprite) { this.#sea.sprite.visible = App.config.textures.sea; if (this.#sea.sprite.visible) { const { frames, speed } = Render.tileset.animated[2374]; this.#sea.dt += speed * dt; if (this.#sea.dt > 2) { this.#sea.frame = (this.#sea.frame + 1) % frames.length; this.#sea.sprite.texture = Render.Texture(frames[this.#sea.frame]); this.#sea.dt = 0; } if (this.#sea.resize) { this.#sea.sprite.width = Math.round(2 + App.rendering.screen.width / 16) * 16; this.#sea.sprite.height = Math.round(2 + App.rendering.screen.height / 16) * 16; this.#sea.resize = false; } this.#sea.sprite.position.set(-Math.floor(1 + this.sprite.position.x / 16) * 16, -Math.floor(1 + this.sprite.position.y / 16) * 16); } } //Coordinates update if (App.controller) { const { x, y } = App.controller.camera; const { children: [coordinates] } = App.rendering.stage.getChildByName("coordinates"); coordinates.text = `${x};${y}`; const location = this.locations.find(({ bounds }) => bounds.contains(x, y)); if (location) { coordinates.text += ` — ${location.name}`; } } return super.update({ t, dt, debug: true }); } /** Debug graphics properties */ protected static debug = { text: "" } as Partial; } ================================================ FILE: app/client/js/app/mod.ts ================================================ /** * Copyright Simon Lecoq (@lowlighter) * @license https://github.com/lowlighter/gracidea/blob/main/LICENSE */ //Imports import { global } from "app/client/types.ts"; import { App } from "app/client/app.ts"; //Start app global.gracidea.app = await App.setup(); ================================================ FILE: app/client/js/app/rendering/render.ts ================================================ //Imports import * as PIXI from "app/cache/pixi.js"; import { global } from "app/client/types.ts"; import type { App } from "app/client/app.ts"; import type { Renderable } from "app/client/rendering/renderable.ts"; /** * Render engine. * A wrapper around PIXI engine. */ export class Render { /** Render engine */ static readonly engine: Engine; /** Render application instance */ private static readonly instance: Application; /** Render setup */ protected static async setup({ app }: { app: typeof App }) { //Configure PIXI Object.assign(this, { engine: PIXI, cache: PIXI.utils.TextureCache }); this.engine.settings.SCALE_MODE = this.engine.SCALE_MODES.NEAREST; this.engine.settings.ROUND_PIXELS = true; const pending = []; //Load resources const loader = Render.engine.Loader.shared; for (const texture of ["tileset", "npcs", "creatures"]) { loader.add(`/textures/${app.config.textures.style}/${texture}.json?sha=${app.sha}`); } for (const texture of ["worldmap", "worldmap.regions"]) { loader.add(`/textures/all/${texture}.json?sha=${app.sha}`); } loader.onProgress.add((_: unknown, { url = "" }) => app.loaded(`loaded ${new URL(url, global.location).pathname}`)); loader.onComplete.add(() => app.loaded("all textures successfully loaded")); pending.push(new Promise((solve) => loader.load(() => solve(null)))); //Load tileset properties pending.push( new Promise(async (solve) => { const tileset = await fetch(`/data/textures/${app.config.textures.style}/tileset.json?sha=${app.sha}`).then((response) => response.json()); app.loaded(`loaded tileset metadata`); Object.assign(this, { tileset }); solve(); }), ); //Load texture effects pending.push( new Promise(async (solve) => { const effects = await fetch(`/data/textures/effects.json?sha=${app.sha}`).then((response) => response.json()); app.loaded(`loaded textures effects`); Object.assign(this, { effects }); solve(); }), ); //Create application Object.assign(this, { instance: new Render.engine.Application({ width: global.document.body.clientWidth, height: global.document.body.clientHeight, backgroundAlpha: 0, }), }); this.instance.resizeTo = global.window; this.instance.stage.sortableChildren = true; global.document.querySelector("body").appendChild(this.instance.view); //Wait for resources to be loaded await Promise.all(pending); app.loaded("render engine ready"); } /** Registered renderable instances */ private static readonly registered = new WeakMap(); /** Register a new renderable */ static register(renderable: Renderable) { this.registered.set(renderable, (dt: number) => renderable.update({ t: Date.now(), dt })); Render.engine.Ticker.shared.add(this.registered.get(renderable)); return this; } /** Unregister an existing renderable */ static unregister(renderable: Renderable) { Render.engine.Ticker.shared.remove(this.registered.get(renderable)); this.registered.delete(renderable); return this; } /** Frames per second */ static get fps() { return Render.engine.Ticker.shared.FPS; } /** Tileset tiles properties */ static readonly tileset: { animated: { [key: string]: { frames: string[]; speed: number } }; zindex: { [key: string]: number }; }; /** Texture effects */ static readonly effects: { creature: { name: { [key: string]: string }; area: { [key: string]: string }; }; }; /** Texture cache */ static readonly cache: { [key: string]: ReturnType }; /** Load a texture */ static Texture(frame = null as frame) { if (`${frame}` in Render.cache) { return Render.engine.Texture.from(`${frame}`); } return Render.engine.Texture.EMPTY; } /** Color filter */ static ColorFilter({ brightness = NaN, saturate = NaN, tint = NaN } = {}) { const filter = new Render.engine.filters.ColorMatrixFilter(); if (!Number.isNaN(brightness)) { filter.brightness(brightness); } if (!Number.isNaN(saturate)) { filter.saturate(saturate); } if (!Number.isNaN(tint)) { filter.tint(tint); } return [filter]; } /** Create a new polygon */ static Polygon(points = [] as number[]) { return new Render.engine.Polygon(...points.map((n) => n * 16)); } /** Create a new rectangle */ static Rectangle(points = [] as number[]) { return new Render.engine.Rectangle(...points.map((n) => n * 16)); } /** Create a new container */ static Container({ x = 0, y = 0, z = NaN, sorted = false, visible = true } = {}) { const container = new Render.engine.Container(); if (sorted) { container.sortableChildren = true; } container.position.set(x * 16, y * 16); if (!Number.isNaN(z)) { container.zIndex = z; } container.visible = visible; return container; } /** Created a new tiling sprite */ static TilingSprite({ frame = null, x = 0, y = 0, z = NaN, width = 0, height = 0 }: TilingSprite = {}) { const sprite = new Render.engine.TilingSprite(Render.Texture(frame), width * 16, height * 16); sprite.position.set(x * 16, y * 16); if (!Number.isNaN(z)) { sprite.zIndex = z; } return sprite; } /** Create a new sprite */ static Sprite({ frame = null, x = 0, y = 0, z = NaN, alpha = NaN, anchor, scale }: Sprite = {}) { let sprite; if (`${frame}` in this.tileset.animated) { const { frames, speed } = this.tileset.animated[frame]; sprite = new Render.engine.AnimatedSprite.fromFrames(frames); sprite.animationSpeed = speed; sprite.play(); } else { sprite = new Render.engine.Sprite(Render.Texture(frame)); } sprite.position.set(x * 16, y * 16); if (anchor) { sprite.anchor.set(...anchor); } if (scale) { sprite.scale.set(...scale); } if (!Number.isNaN(alpha)) { sprite.alpha = alpha; } if (!Number.isNaN(z)) { sprite.zIndex = z; } return sprite; } /** Create a new graphics */ static Graphics({ z = NaN, stroke, fill, text, textStyle, textPosition, textAnchor = [0.5, 0.5], rect, circle, ellipse, polygon }: Graphics = {}) { const graphics = new Render.engine.Graphics(); if (stroke) { graphics.lineStyle(...stroke); } if (fill) { graphics.beginFill(...fill); } if (rect) { graphics.drawRect(...rect.map((n) => n * 16)); } if (circle) { graphics.drawCircle(...circle.map((n) => n * 16)); } if (ellipse) { graphics.drawEllipse(...ellipse.map((n) => n * 16)); } if (polygon) { if (polygon instanceof Render.engine.Polygon) { graphics.drawPolygon(polygon); } else { graphics.drawPolygon(...polygon.map((n) => n * 16)); } } graphics.endFill(); if (text) { const textSprite = graphics.addChild(new Render.engine.Text(text, textStyle)); textSprite.anchor.set(...textAnchor); if (textPosition) { textSprite.position.set(textPosition.x * 16, textPosition.y * 16); } } if (!Number.isNaN(z)) { graphics.zIndex = z; } return graphics; } } /** Compute intersection between two rectangle (from @pixi/math) */ PIXI.Rectangle.prototype.intersects = function intersects(other: ReturnType) { const x0 = this.x < other.x ? other.x : this.x; const x1 = this.right > other.right ? other.right : this.right; if (x1 <= x0) { return false; } const y0 = this.y < other.y ? other.y : this.y; const y1 = this.bottom > other.bottom ? other.bottom : this.bottom; return y1 > y0; }; /** Render engine */ //deno-lint-ignore no-explicit-any export type Engine = any; /** Render application */ //deno-lint-ignore no-explicit-any export type Application = any; /** Frame */ export type frame = null | string | number | typeof Render.engine.Texture.EMPTY; /** TilingSprite constructor */ export type TilingSprite = { frame?: frame; x?: number; y?: number; z?: number; width?: number; height?: number; }; /** Sprite constructor */ export type Sprite = { frame?: frame; x?: number; y?: number; z?: number; alpha?: number; anchor?: [number, number]; scale?: [number, number]; }; /** Graphics constructor */ export type Graphics = { z?: number; stroke?: [number, number, number]; fill?: [number, number]; text?: string; textStyle?: { [key: string]: unknown }; textPosition?: { x: number; y: number }; textAnchor?: [number, number]; rect?: number[]; circle?: number[]; ellipse?: number[]; polygon?: number[]; }; ================================================ FILE: app/client/js/app/rendering/renderable.ts ================================================ //Imports import { Render } from "app/client/rendering/render.ts"; import { App } from "app/client/app.ts"; import type { Graphics } from "app/client/rendering/render.ts"; import { deferred } from "std/async/deferred.ts"; /** * Renderable object. * It contains additional methods that can be used for easier management and debugging. */ export abstract class Renderable { /** Identifier */ readonly id: string; /** Constructor */ constructor({ id, x = 0, y = 0, z = 0, visible = true }: { id: string; x?: number; y?: number; z?: number; visible?: boolean }) { this.id = id; this.sprite = Render.Container({ x, y, z, visible }); this.debug = Render.Container({ x, y, z }); Object.defineProperty(this.debug, "visible", { get() { return App.config.debug.bounds; }, }); this.debug.bounds = this.debug.addChild(Render.Container()); Render.register(this); } /** Is destroyed */ protected readonly destroyed = false; /** Destructor */ destructor() { Render.unregister(this); this.sprite.parent?.removeChild(this.sprite); this.debug.parent?.removeChild(this.debug); this.debug.bounds.parent?.removeChild(this.debug.bounds); this.sprite.destroy({ children: true }); this.debug.destroy({ children: true }); this.debug.bounds.destroy({ children: true }); Object.assign(this, { destroyed: true }); if (App.config.debug.logs) { console.debug(`destroyed: ${this.constructor.name}#${this.id}`); } } /** Renderable initialized */ readonly ready = deferred(); /** Initialize renderable */ protected async init({ parent = null }: { parent?: null | Renderable | typeof App.rendering.stage } = {}) { if (parent === App.rendering.stage) { App.rendering.stage.addChild(this.sprite); App.rendering.stage.addChild(this.debug); } else if (parent) { if ((this.destroyed) || (parent.destroyed)) { if (App.config.debug.logs) { console.debug(`creation aborted: ${this.constructor.name}#${this.id} (sprite already destroyed)`); } return this.destructor(); } parent.sprite.addChild(this.sprite); parent.debug.addChild(this.debug); } if (App.config.debug.logs) { console.debug(`created: ${this.constructor.name}#${this.id}`); } this.ready.resolve(); } /** Sprite */ readonly sprite: ReturnType; /** Debug sprite */ readonly debug: ReturnType & { bounds: ReturnType }; /** Show renderable */ show() { this.sprite.visible = true; } /** Hide renderable */ hide() { this.sprite.visible = false; } /** Update renderable */ async update({ debug = this.debug.visible }: { t: number; dt: number; debug?: boolean }) { if (this.destroyed) { return; } if (debug) { if (this.dirty) { const { width, height } = this.sprite._bounds.getRectangle(); this.debug.bounds.removeChildren(); this.debug.bounds.addChild(Render.Graphics({ text: `${this.id}\n${Math.floor(this.sprite.x / 16)};${Math.floor(this.sprite.y / 16)} (${this.sprite.x};${this.sprite.y})`, rect: [0, 0, width / 16, height / 16], ...Renderable.debug, ...(this.constructor as typeof Renderable).debug, })); } this.debug.position.set(this.sprite.x, this.sprite.y); } } /** Tell if bounds have changed since last update */ protected get dirty() { if (this.destroyed) { return false; } const { x, y, width, height } = this.sprite.getBounds(true); const hash = `${x}/${y}/${width}/${height}`; const dirty = (this.#dirty === hash); this.#dirty = hash; return dirty; } /** Dirty hash */ #dirty = ""; /** Debug graphics properties */ protected static debug = { stroke: [1, 0x0000FF, .5], fill: [0x00FF00, .125], textStyle: { fontSize: 10, fill: "white", fontFamily: "monospace" }, textPosition: { x: .25, y: .25 }, textAnchor: [0, 0], } as Partial; } ================================================ FILE: app/client/js/app/types.ts ================================================ /** Window */ //deno-lint-ignore no-explicit-any export const global = globalThis as any; /** DOM event */ //deno-lint-ignore no-explicit-any export type event = any; /** Friend accessor */ //deno-lint-ignore no-explicit-any export type friend = any; /** Read-write accessor */ //deno-lint-ignore no-explicit-any export type rw = any; ================================================ FILE: app/client/js/loader.js ================================================ (function () { /** Create a new HTML element */ function tag(name, attributes) { const element = document.createElement(name); if (attributes.text) { element.innerText = attributes.text; delete attributes.text; } for (const [attribute, value] of Object.entries(attributes)) { element.setAttribute(attribute, value); } return element; } //Loader const loader = document.querySelector(".loader .loaded"); loader.addEventListener("gracidea.loaded", ({ data: { text, type, options: { update = false } } }) => { const message = tag("span", { text }); message.append(tag("span", { class: "loading" })); if (type) { message.setAttribute("style", `color:${{ error: "red", warn: "orange", notice: "magenta" }[type]};`); } if (update) { loader.querySelector(":first-child")?.remove(); } loader.querySelectorAll(".loading").forEach((element) => element.remove()); loader.prepend(message); }, false); //Gracidea app global reference const gracidea = { sha: document.querySelector("#sha").innerHTML.trim(), loaded(text = "", type = null, options = {}) { loader.dispatchEvent(Object.assign(new Event("gracidea.loaded"), { data: { text, type, options } })); }, }; globalThis.gracidea = gracidea; console.log(`Gracidea ${gracidea.sha} - https://github.com/lowlighter/gracidea`); console.log("All dreams are but another reality. Never forget…"); //Loading globalThis.onload = async function () { //URL params const params = new URLSearchParams({ sha: gracidea.sha }); //Load stylesheet const css = tag("link", { rel: "stylesheet", href: `/css/styles.css?${params}` }); document.querySelector("head").append(css); await new Promise((solve) => css.onload = solve); //Browser compatibility mode (for bad browsers) const compat = (navigator.userAgent.includes("Safari")) && (!navigator.userAgent.includes("Chrome")); if (compat) { gracidea.loaded("browser compatibility mode enabled", "warn"); params.set("compat", 1); } //Debug mode const debug = location.hostname === "localhost"; if (debug) { console.warn("debug mode enabled (served from localhost)"); params.set("debug", 1); } //Load main script gracidea.loaded("loading /js/app.js"); document.querySelector("body").append(tag("script", { type: "module", src: `/js/app.js?${params}` })); }; //Errors display globalThis.onerror = function (error) { gracidea.loaded(error, "error"); }; })(); ================================================ FILE: app/tests/integrity_test.ts ================================================ //Imports import { expandGlob } from "https://deno.land/std@0.119.0/fs/mod.ts"; import { assert } from "https://deno.land/std@0.119.0/testing/asserts.ts"; import * as XML from "https://deno.land/x/xml@2.0.3/mod.ts"; import { extname } from "https://deno.land/std@0.119.0/path/mod.ts"; //Ensure files are parsable for (const glob of ["{maps,copyrighted}/**/*.{tmx,tsx,tps,json}", "app/public/**/*.json"]) { for await (const { path, isFile } of expandGlob(glob)) { if (isFile) { const file = path.replace(Deno.cwd(), ""); const ext = extname(path).substring(1); Deno.test(file, async () => assert({ json: JSON, tmx: XML, tsx: XML, tps: XML, }[ext]?.parse(await Deno.readTextFile(path)))); } } } ================================================ FILE: copyrighted/README.md ================================================ This folder contains copyrighted materials. See [pokemon.com/us/legal](https://www.pokemon.com/us/legal/) for more informations. ``` © 2021 Pokémon. © 1995–2021 Nintendo/Creatures Inc./GAME FREAK inc. Pokémon and Pokémon character names are trademarks of Nintendo. ``` ================================================ FILE: copyrighted/textures/all/worldmap.json ================================================ {"frames": { "worldmap/0": { "frame": {"x":0,"y":0,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/1": { "frame": {"x":8,"y":0,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/2": { "frame": {"x":16,"y":0,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/3": { "frame": {"x":24,"y":0,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/4": { "frame": {"x":32,"y":0,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/5": { "frame": {"x":40,"y":0,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/6": { "frame": {"x":48,"y":0,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/7": { "frame": {"x":56,"y":0,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/8": { "frame": {"x":64,"y":0,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/9": { "frame": {"x":72,"y":0,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/10": { "frame": {"x":80,"y":0,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/11": { "frame": {"x":88,"y":0,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/12": { "frame": {"x":96,"y":0,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/13": { "frame": {"x":104,"y":0,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/14": { "frame": {"x":112,"y":0,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/15": { "frame": {"x":120,"y":0,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/16": { "frame": {"x":128,"y":0,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/17": { "frame": {"x":136,"y":0,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/18": { "frame": {"x":144,"y":0,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/19": { "frame": {"x":152,"y":0,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/20": { "frame": {"x":160,"y":0,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/21": { "frame": {"x":168,"y":0,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/22": { "frame": {"x":176,"y":0,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/23": { "frame": {"x":184,"y":0,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/24": { "frame": {"x":192,"y":0,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/25": { "frame": {"x":200,"y":0,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/26": { "frame": {"x":208,"y":0,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/27": { "frame": {"x":216,"y":0,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/28": { "frame": {"x":224,"y":0,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/29": { "frame": {"x":232,"y":0,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/30": { "frame": {"x":240,"y":0,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/31": { "frame": {"x":248,"y":0,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/32": { "frame": {"x":0,"y":8,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/33": { "frame": {"x":8,"y":8,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/34": { "frame": {"x":16,"y":8,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/35": { "frame": {"x":24,"y":8,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/36": { "frame": {"x":32,"y":8,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/37": { "frame": {"x":40,"y":8,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/38": { "frame": {"x":48,"y":8,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/39": { "frame": {"x":56,"y":8,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/40": { "frame": {"x":64,"y":8,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/41": { "frame": {"x":72,"y":8,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/42": { "frame": {"x":80,"y":8,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/43": { "frame": {"x":88,"y":8,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/44": { "frame": {"x":96,"y":8,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/45": { "frame": {"x":104,"y":8,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/46": { "frame": {"x":112,"y":8,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/47": { "frame": {"x":120,"y":8,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/48": { "frame": {"x":128,"y":8,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/49": { "frame": {"x":136,"y":8,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/50": { "frame": {"x":144,"y":8,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/51": { "frame": {"x":152,"y":8,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/52": { "frame": {"x":160,"y":8,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/53": { "frame": {"x":168,"y":8,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/54": { "frame": {"x":176,"y":8,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/55": { "frame": {"x":184,"y":8,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/56": { "frame": {"x":192,"y":8,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/57": { "frame": {"x":200,"y":8,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/58": { "frame": {"x":208,"y":8,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/59": { "frame": {"x":216,"y":8,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/60": { "frame": {"x":224,"y":8,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/61": { "frame": {"x":232,"y":8,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/62": { "frame": {"x":240,"y":8,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/63": { "frame": {"x":248,"y":8,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/64": { "frame": {"x":0,"y":16,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/65": { "frame": {"x":8,"y":16,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/66": { "frame": {"x":16,"y":16,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/67": { "frame": {"x":24,"y":16,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/68": { "frame": {"x":32,"y":16,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/69": { "frame": {"x":40,"y":16,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/70": { "frame": {"x":48,"y":16,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/71": { "frame": {"x":56,"y":16,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/72": { "frame": {"x":64,"y":16,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/73": { "frame": {"x":72,"y":16,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/74": { "frame": {"x":80,"y":16,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/75": { "frame": {"x":88,"y":16,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/76": { "frame": {"x":96,"y":16,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/77": { "frame": {"x":104,"y":16,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/78": { "frame": {"x":112,"y":16,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/79": { "frame": {"x":120,"y":16,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/80": { "frame": {"x":128,"y":16,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/81": { "frame": {"x":136,"y":16,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/82": { "frame": {"x":144,"y":16,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/83": { "frame": {"x":152,"y":16,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/84": { "frame": {"x":160,"y":16,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/85": { "frame": {"x":168,"y":16,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/86": { "frame": {"x":176,"y":16,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/87": { "frame": {"x":184,"y":16,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/88": { "frame": {"x":192,"y":16,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/89": { "frame": {"x":200,"y":16,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/90": { "frame": {"x":208,"y":16,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/91": { "frame": {"x":216,"y":16,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/92": { "frame": {"x":224,"y":16,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/93": { "frame": {"x":232,"y":16,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/94": { "frame": {"x":240,"y":16,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/95": { "frame": {"x":248,"y":16,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/96": { "frame": {"x":0,"y":24,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/97": { "frame": {"x":8,"y":24,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/98": { "frame": {"x":16,"y":24,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/99": { "frame": {"x":24,"y":24,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/100": { "frame": {"x":32,"y":24,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/101": { "frame": {"x":40,"y":24,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/102": { "frame": {"x":48,"y":24,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/103": { "frame": {"x":56,"y":24,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/104": { "frame": {"x":64,"y":24,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/105": { "frame": {"x":72,"y":24,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/106": { "frame": {"x":80,"y":24,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/107": { "frame": {"x":88,"y":24,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/108": { "frame": {"x":96,"y":24,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/109": { "frame": {"x":104,"y":24,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/110": { "frame": {"x":112,"y":24,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/111": { "frame": {"x":120,"y":24,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/112": { "frame": {"x":128,"y":24,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/113": { "frame": {"x":136,"y":24,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/114": { "frame": {"x":144,"y":24,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/115": { "frame": {"x":152,"y":24,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/116": { "frame": {"x":160,"y":24,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/117": { "frame": {"x":168,"y":24,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/118": { "frame": {"x":176,"y":24,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/119": { "frame": {"x":184,"y":24,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/120": { "frame": {"x":192,"y":24,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/121": { "frame": {"x":200,"y":24,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/122": { "frame": {"x":208,"y":24,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/123": { "frame": {"x":216,"y":24,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/124": { "frame": {"x":224,"y":24,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/125": { "frame": {"x":232,"y":24,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/126": { "frame": {"x":240,"y":24,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/127": { "frame": {"x":248,"y":24,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/128": { "frame": {"x":0,"y":32,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/129": { "frame": {"x":8,"y":32,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/130": { "frame": {"x":16,"y":32,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/131": { "frame": {"x":24,"y":32,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/132": { "frame": {"x":32,"y":32,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/133": { "frame": {"x":40,"y":32,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/134": { "frame": {"x":48,"y":32,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/135": { "frame": {"x":56,"y":32,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/136": { "frame": {"x":64,"y":32,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/137": { "frame": {"x":72,"y":32,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/138": { "frame": {"x":80,"y":32,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/139": { "frame": {"x":88,"y":32,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/140": { "frame": {"x":96,"y":32,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/141": { "frame": {"x":104,"y":32,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/142": { "frame": {"x":112,"y":32,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/143": { "frame": {"x":120,"y":32,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/144": { "frame": {"x":128,"y":32,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/145": { "frame": {"x":136,"y":32,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/146": { "frame": {"x":144,"y":32,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/147": { "frame": {"x":152,"y":32,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/148": { "frame": {"x":160,"y":32,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/149": { "frame": {"x":168,"y":32,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/150": { "frame": {"x":176,"y":32,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/151": { "frame": {"x":184,"y":32,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/152": { "frame": {"x":192,"y":32,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/153": { "frame": {"x":200,"y":32,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/154": { "frame": {"x":208,"y":32,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/155": { "frame": {"x":216,"y":32,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/156": { "frame": {"x":224,"y":32,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/157": { "frame": {"x":232,"y":32,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/158": { "frame": {"x":240,"y":32,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/159": { "frame": {"x":248,"y":32,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/160": { "frame": {"x":0,"y":40,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/161": { "frame": {"x":8,"y":40,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/162": { "frame": {"x":16,"y":40,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/163": { "frame": {"x":24,"y":40,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/164": { "frame": {"x":32,"y":40,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/165": { "frame": {"x":40,"y":40,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/166": { "frame": {"x":48,"y":40,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/167": { "frame": {"x":56,"y":40,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/168": { "frame": {"x":64,"y":40,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/169": { "frame": {"x":72,"y":40,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/170": { "frame": {"x":80,"y":40,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/171": { "frame": {"x":88,"y":40,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/172": { "frame": {"x":96,"y":40,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/173": { "frame": {"x":104,"y":40,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/174": { "frame": {"x":112,"y":40,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/175": { "frame": {"x":120,"y":40,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/176": { "frame": {"x":128,"y":40,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/177": { "frame": {"x":136,"y":40,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/178": { "frame": {"x":144,"y":40,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/179": { "frame": {"x":152,"y":40,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/180": { "frame": {"x":160,"y":40,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/181": { "frame": {"x":168,"y":40,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/182": { "frame": {"x":176,"y":40,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/183": { "frame": {"x":184,"y":40,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/184": { "frame": {"x":192,"y":40,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/185": { "frame": {"x":200,"y":40,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/186": { "frame": {"x":208,"y":40,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/187": { "frame": {"x":216,"y":40,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/188": { "frame": {"x":224,"y":40,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/189": { "frame": {"x":232,"y":40,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/190": { "frame": {"x":240,"y":40,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/191": { "frame": {"x":248,"y":40,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/192": { "frame": {"x":0,"y":48,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/193": { "frame": {"x":8,"y":48,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/194": { "frame": {"x":16,"y":48,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/195": { "frame": {"x":24,"y":48,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/196": { "frame": {"x":32,"y":48,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/197": { "frame": {"x":40,"y":48,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/198": { "frame": {"x":48,"y":48,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/199": { "frame": {"x":56,"y":48,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/200": { "frame": {"x":64,"y":48,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/201": { "frame": {"x":72,"y":48,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/202": { "frame": {"x":80,"y":48,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/203": { "frame": {"x":88,"y":48,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/204": { "frame": {"x":96,"y":48,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/205": { "frame": {"x":104,"y":48,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/206": { "frame": {"x":112,"y":48,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/207": { "frame": {"x":120,"y":48,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/208": { "frame": {"x":128,"y":48,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/209": { "frame": {"x":136,"y":48,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/210": { "frame": {"x":144,"y":48,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/211": { "frame": {"x":152,"y":48,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/212": { "frame": {"x":160,"y":48,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/213": { "frame": {"x":168,"y":48,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/214": { "frame": {"x":176,"y":48,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/215": { "frame": {"x":184,"y":48,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/216": { "frame": {"x":192,"y":48,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/217": { "frame": {"x":200,"y":48,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/218": { "frame": {"x":208,"y":48,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/219": { "frame": {"x":216,"y":48,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/220": { "frame": {"x":224,"y":48,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/221": { "frame": {"x":232,"y":48,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/222": { "frame": {"x":240,"y":48,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/223": { "frame": {"x":248,"y":48,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/224": { "frame": {"x":0,"y":56,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/225": { "frame": {"x":8,"y":56,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/226": { "frame": {"x":16,"y":56,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/227": { "frame": {"x":24,"y":56,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/228": { "frame": {"x":32,"y":56,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/229": { "frame": {"x":40,"y":56,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/230": { "frame": {"x":48,"y":56,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/231": { "frame": {"x":56,"y":56,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/232": { "frame": {"x":64,"y":56,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/233": { "frame": {"x":72,"y":56,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/234": { "frame": {"x":80,"y":56,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/235": { "frame": {"x":88,"y":56,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/236": { "frame": {"x":96,"y":56,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/237": { "frame": {"x":104,"y":56,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/238": { "frame": {"x":112,"y":56,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/239": { "frame": {"x":120,"y":56,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/240": { "frame": {"x":128,"y":56,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/241": { "frame": {"x":136,"y":56,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/242": { "frame": {"x":144,"y":56,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/243": { "frame": {"x":152,"y":56,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/244": { "frame": {"x":160,"y":56,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/245": { "frame": {"x":168,"y":56,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/246": { "frame": {"x":176,"y":56,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/247": { "frame": {"x":184,"y":56,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/248": { "frame": {"x":192,"y":56,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/249": { "frame": {"x":200,"y":56,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/250": { "frame": {"x":208,"y":56,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/251": { "frame": {"x":216,"y":56,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/252": { "frame": {"x":224,"y":56,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/253": { "frame": {"x":232,"y":56,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/254": { "frame": {"x":240,"y":56,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/255": { "frame": {"x":248,"y":56,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/256": { "frame": {"x":0,"y":64,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/257": { "frame": {"x":8,"y":64,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/258": { "frame": {"x":16,"y":64,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/259": { "frame": {"x":24,"y":64,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/260": { "frame": {"x":32,"y":64,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/261": { "frame": {"x":40,"y":64,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/262": { "frame": {"x":48,"y":64,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/263": { "frame": {"x":56,"y":64,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/264": { "frame": {"x":64,"y":64,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/265": { "frame": {"x":72,"y":64,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/266": { "frame": {"x":80,"y":64,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/267": { "frame": {"x":88,"y":64,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/268": { "frame": {"x":96,"y":64,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/269": { "frame": {"x":104,"y":64,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/270": { "frame": {"x":112,"y":64,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/271": { "frame": {"x":120,"y":64,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/272": { "frame": {"x":128,"y":64,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/273": { "frame": {"x":136,"y":64,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/274": { "frame": {"x":144,"y":64,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/275": { "frame": {"x":152,"y":64,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/276": { "frame": {"x":160,"y":64,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/277": { "frame": {"x":168,"y":64,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/278": { "frame": {"x":176,"y":64,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/279": { "frame": {"x":184,"y":64,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/280": { "frame": {"x":192,"y":64,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/281": { "frame": {"x":200,"y":64,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/282": { "frame": {"x":208,"y":64,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/283": { "frame": {"x":216,"y":64,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/284": { "frame": {"x":224,"y":64,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/285": { "frame": {"x":232,"y":64,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/286": { "frame": {"x":240,"y":64,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/287": { "frame": {"x":248,"y":64,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/288": { "frame": {"x":0,"y":72,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/289": { "frame": {"x":8,"y":72,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/290": { "frame": {"x":16,"y":72,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/291": { "frame": {"x":24,"y":72,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/292": { "frame": {"x":32,"y":72,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/293": { "frame": {"x":40,"y":72,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/294": { "frame": {"x":48,"y":72,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/295": { "frame": {"x":56,"y":72,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/296": { "frame": {"x":64,"y":72,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/297": { "frame": {"x":72,"y":72,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/298": { "frame": {"x":80,"y":72,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/299": { "frame": {"x":88,"y":72,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/300": { "frame": {"x":96,"y":72,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/301": { "frame": {"x":104,"y":72,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/302": { "frame": {"x":112,"y":72,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/303": { "frame": {"x":120,"y":72,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/304": { "frame": {"x":128,"y":72,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/305": { "frame": {"x":136,"y":72,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/306": { "frame": {"x":144,"y":72,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/307": { "frame": {"x":152,"y":72,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/308": { "frame": {"x":160,"y":72,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/309": { "frame": {"x":168,"y":72,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/310": { "frame": {"x":176,"y":72,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/311": { "frame": {"x":184,"y":72,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/312": { "frame": {"x":192,"y":72,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/313": { "frame": {"x":200,"y":72,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/314": { "frame": {"x":208,"y":72,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/315": { "frame": {"x":216,"y":72,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/316": { "frame": {"x":224,"y":72,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/317": { "frame": {"x":232,"y":72,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/318": { "frame": {"x":240,"y":72,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/319": { "frame": {"x":248,"y":72,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/320": { "frame": {"x":0,"y":80,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/321": { "frame": {"x":8,"y":80,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/322": { "frame": {"x":16,"y":80,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/323": { "frame": {"x":24,"y":80,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/324": { "frame": {"x":32,"y":80,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/325": { "frame": {"x":40,"y":80,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/326": { "frame": {"x":48,"y":80,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/327": { "frame": {"x":56,"y":80,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/328": { "frame": {"x":64,"y":80,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/329": { "frame": {"x":72,"y":80,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/330": { "frame": {"x":80,"y":80,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/331": { "frame": {"x":88,"y":80,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/332": { "frame": {"x":96,"y":80,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/333": { "frame": {"x":104,"y":80,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/334": { "frame": {"x":112,"y":80,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/335": { "frame": {"x":120,"y":80,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/336": { "frame": {"x":128,"y":80,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/337": { "frame": {"x":136,"y":80,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/338": { "frame": {"x":144,"y":80,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/339": { "frame": {"x":152,"y":80,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/340": { "frame": {"x":160,"y":80,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/341": { "frame": {"x":168,"y":80,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/342": { "frame": {"x":176,"y":80,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/343": { "frame": {"x":184,"y":80,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/344": { "frame": {"x":192,"y":80,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/345": { "frame": {"x":200,"y":80,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/346": { "frame": {"x":208,"y":80,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/347": { "frame": {"x":216,"y":80,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/348": { "frame": {"x":224,"y":80,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/349": { "frame": {"x":232,"y":80,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/350": { "frame": {"x":240,"y":80,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/351": { "frame": {"x":248,"y":80,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/352": { "frame": {"x":0,"y":88,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/353": { "frame": {"x":8,"y":88,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/354": { "frame": {"x":16,"y":88,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/355": { "frame": {"x":24,"y":88,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/356": { "frame": {"x":32,"y":88,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/357": { "frame": {"x":40,"y":88,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/358": { "frame": {"x":48,"y":88,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/359": { "frame": {"x":56,"y":88,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/360": { "frame": {"x":64,"y":88,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/361": { "frame": {"x":72,"y":88,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/362": { "frame": {"x":80,"y":88,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/363": { "frame": {"x":88,"y":88,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/364": { "frame": {"x":96,"y":88,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/365": { "frame": {"x":104,"y":88,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/366": { "frame": {"x":112,"y":88,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/367": { "frame": {"x":120,"y":88,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/368": { "frame": {"x":128,"y":88,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/369": { "frame": {"x":136,"y":88,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/370": { "frame": {"x":144,"y":88,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/371": { "frame": {"x":152,"y":88,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/372": { "frame": {"x":160,"y":88,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/373": { "frame": {"x":168,"y":88,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/374": { "frame": {"x":176,"y":88,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/375": { "frame": {"x":184,"y":88,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/376": { "frame": {"x":192,"y":88,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/377": { "frame": {"x":200,"y":88,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/378": { "frame": {"x":208,"y":88,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/379": { "frame": {"x":216,"y":88,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/380": { "frame": {"x":224,"y":88,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/381": { "frame": {"x":232,"y":88,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/382": { "frame": {"x":240,"y":88,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/383": { "frame": {"x":248,"y":88,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/384": { "frame": {"x":0,"y":96,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/385": { "frame": {"x":8,"y":96,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/386": { "frame": {"x":16,"y":96,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/387": { "frame": {"x":24,"y":96,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/388": { "frame": {"x":32,"y":96,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/389": { "frame": {"x":40,"y":96,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/390": { "frame": {"x":48,"y":96,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/391": { "frame": {"x":56,"y":96,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/392": { "frame": {"x":64,"y":96,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/393": { "frame": {"x":72,"y":96,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/394": { "frame": {"x":80,"y":96,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/395": { "frame": {"x":88,"y":96,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/396": { "frame": {"x":96,"y":96,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/397": { "frame": {"x":104,"y":96,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/398": { "frame": {"x":112,"y":96,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/399": { "frame": {"x":120,"y":96,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/400": { "frame": {"x":128,"y":96,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/401": { "frame": {"x":136,"y":96,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/402": { "frame": {"x":144,"y":96,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/403": { "frame": {"x":152,"y":96,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/404": { "frame": {"x":160,"y":96,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/405": { "frame": {"x":168,"y":96,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/406": { "frame": {"x":176,"y":96,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/407": { "frame": {"x":184,"y":96,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/408": { "frame": {"x":192,"y":96,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/409": { "frame": {"x":200,"y":96,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/410": { "frame": {"x":208,"y":96,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/411": { "frame": {"x":216,"y":96,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/412": { "frame": {"x":224,"y":96,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/413": { "frame": {"x":232,"y":96,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/414": { "frame": {"x":240,"y":96,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/415": { "frame": {"x":248,"y":96,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/416": { "frame": {"x":0,"y":104,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/417": { "frame": {"x":8,"y":104,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/418": { "frame": {"x":16,"y":104,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/419": { "frame": {"x":24,"y":104,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/420": { "frame": {"x":32,"y":104,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/421": { "frame": {"x":40,"y":104,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/422": { "frame": {"x":48,"y":104,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/423": { "frame": {"x":56,"y":104,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/424": { "frame": {"x":64,"y":104,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/425": { "frame": {"x":72,"y":104,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/426": { "frame": {"x":80,"y":104,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/427": { "frame": {"x":88,"y":104,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/428": { "frame": {"x":96,"y":104,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/429": { "frame": {"x":104,"y":104,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/430": { "frame": {"x":112,"y":104,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/431": { "frame": {"x":120,"y":104,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/432": { "frame": {"x":128,"y":104,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/433": { "frame": {"x":136,"y":104,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/434": { "frame": {"x":144,"y":104,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/435": { "frame": {"x":152,"y":104,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/436": { "frame": {"x":160,"y":104,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/437": { "frame": {"x":168,"y":104,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/438": { "frame": {"x":176,"y":104,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/439": { "frame": {"x":184,"y":104,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/440": { "frame": {"x":192,"y":104,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/441": { "frame": {"x":200,"y":104,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/442": { "frame": {"x":208,"y":104,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/443": { "frame": {"x":216,"y":104,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/444": { "frame": {"x":224,"y":104,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/445": { "frame": {"x":232,"y":104,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/446": { "frame": {"x":240,"y":104,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/447": { "frame": {"x":248,"y":104,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/448": { "frame": {"x":0,"y":112,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/449": { "frame": {"x":8,"y":112,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/450": { "frame": {"x":16,"y":112,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/451": { "frame": {"x":24,"y":112,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/452": { "frame": {"x":32,"y":112,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/453": { "frame": {"x":40,"y":112,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/454": { "frame": {"x":48,"y":112,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/455": { "frame": {"x":56,"y":112,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/456": { "frame": {"x":64,"y":112,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/457": { "frame": {"x":72,"y":112,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/458": { "frame": {"x":80,"y":112,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/459": { "frame": {"x":88,"y":112,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/460": { "frame": {"x":96,"y":112,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/461": { "frame": {"x":104,"y":112,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/462": { "frame": {"x":112,"y":112,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/463": { "frame": {"x":120,"y":112,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/464": { "frame": {"x":128,"y":112,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/465": { "frame": {"x":136,"y":112,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/466": { "frame": {"x":144,"y":112,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/467": { "frame": {"x":152,"y":112,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/468": { "frame": {"x":160,"y":112,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/469": { "frame": {"x":168,"y":112,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/470": { "frame": {"x":176,"y":112,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/471": { "frame": {"x":184,"y":112,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/472": { "frame": {"x":192,"y":112,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/473": { "frame": {"x":200,"y":112,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/474": { "frame": {"x":208,"y":112,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/475": { "frame": {"x":216,"y":112,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/476": { "frame": {"x":224,"y":112,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/477": { "frame": {"x":232,"y":112,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/478": { "frame": {"x":240,"y":112,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/479": { "frame": {"x":248,"y":112,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/480": { "frame": {"x":0,"y":120,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/481": { "frame": {"x":8,"y":120,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/482": { "frame": {"x":16,"y":120,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/483": { "frame": {"x":24,"y":120,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/484": { "frame": {"x":32,"y":120,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/485": { "frame": {"x":40,"y":120,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/486": { "frame": {"x":48,"y":120,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/487": { "frame": {"x":56,"y":120,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/488": { "frame": {"x":64,"y":120,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/489": { "frame": {"x":72,"y":120,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/490": { "frame": {"x":80,"y":120,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/491": { "frame": {"x":88,"y":120,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/492": { "frame": {"x":96,"y":120,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/493": { "frame": {"x":104,"y":120,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/494": { "frame": {"x":112,"y":120,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/495": { "frame": {"x":120,"y":120,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/496": { "frame": {"x":128,"y":120,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/497": { "frame": {"x":136,"y":120,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/498": { "frame": {"x":144,"y":120,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/499": { "frame": {"x":152,"y":120,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/500": { "frame": {"x":160,"y":120,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/501": { "frame": {"x":168,"y":120,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/502": { "frame": {"x":176,"y":120,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/503": { "frame": {"x":184,"y":120,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/504": { "frame": {"x":192,"y":120,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/505": { "frame": {"x":200,"y":120,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/506": { "frame": {"x":208,"y":120,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/507": { "frame": {"x":216,"y":120,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/508": { "frame": {"x":224,"y":120,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/509": { "frame": {"x":232,"y":120,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/510": { "frame": {"x":240,"y":120,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/511": { "frame": {"x":248,"y":120,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/512": { "frame": {"x":0,"y":128,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/513": { "frame": {"x":8,"y":128,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/514": { "frame": {"x":16,"y":128,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/515": { "frame": {"x":24,"y":128,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/516": { "frame": {"x":32,"y":128,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/517": { "frame": {"x":40,"y":128,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/518": { "frame": {"x":48,"y":128,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/519": { "frame": {"x":56,"y":128,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/520": { "frame": {"x":64,"y":128,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/521": { "frame": {"x":72,"y":128,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/522": { "frame": {"x":80,"y":128,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/523": { "frame": {"x":88,"y":128,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/524": { "frame": {"x":96,"y":128,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/525": { "frame": {"x":104,"y":128,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/526": { "frame": {"x":112,"y":128,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/527": { "frame": {"x":120,"y":128,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/528": { "frame": {"x":128,"y":128,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/529": { "frame": {"x":136,"y":128,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/530": { "frame": {"x":144,"y":128,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/531": { "frame": {"x":152,"y":128,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/532": { "frame": {"x":160,"y":128,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/533": { "frame": {"x":168,"y":128,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/534": { "frame": {"x":176,"y":128,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/535": { "frame": {"x":184,"y":128,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/536": { "frame": {"x":192,"y":128,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/537": { "frame": {"x":200,"y":128,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/538": { "frame": {"x":208,"y":128,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/539": { "frame": {"x":216,"y":128,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/540": { "frame": {"x":224,"y":128,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/541": { "frame": {"x":232,"y":128,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/542": { "frame": {"x":240,"y":128,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/543": { "frame": {"x":248,"y":128,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/544": { "frame": {"x":0,"y":136,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/545": { "frame": {"x":8,"y":136,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/546": { "frame": {"x":16,"y":136,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/547": { "frame": {"x":24,"y":136,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/548": { "frame": {"x":32,"y":136,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/549": { "frame": {"x":40,"y":136,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/550": { "frame": {"x":48,"y":136,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/551": { "frame": {"x":56,"y":136,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/552": { "frame": {"x":64,"y":136,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/553": { "frame": {"x":72,"y":136,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/554": { "frame": {"x":80,"y":136,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/555": { "frame": {"x":88,"y":136,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/556": { "frame": {"x":96,"y":136,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/557": { "frame": {"x":104,"y":136,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/558": { "frame": {"x":112,"y":136,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/559": { "frame": {"x":120,"y":136,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/560": { "frame": {"x":128,"y":136,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/561": { "frame": {"x":136,"y":136,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/562": { "frame": {"x":144,"y":136,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/563": { "frame": {"x":152,"y":136,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/564": { "frame": {"x":160,"y":136,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/565": { "frame": {"x":168,"y":136,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/566": { "frame": {"x":176,"y":136,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/567": { "frame": {"x":184,"y":136,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/568": { "frame": {"x":192,"y":136,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/569": { "frame": {"x":200,"y":136,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/570": { "frame": {"x":208,"y":136,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/571": { "frame": {"x":216,"y":136,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/572": { "frame": {"x":224,"y":136,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/573": { "frame": {"x":232,"y":136,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/574": { "frame": {"x":240,"y":136,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/575": { "frame": {"x":248,"y":136,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/576": { "frame": {"x":0,"y":144,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/577": { "frame": {"x":8,"y":144,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/578": { "frame": {"x":16,"y":144,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/579": { "frame": {"x":24,"y":144,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/580": { "frame": {"x":32,"y":144,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/581": { "frame": {"x":40,"y":144,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/582": { "frame": {"x":48,"y":144,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/583": { "frame": {"x":56,"y":144,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/584": { "frame": {"x":64,"y":144,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/585": { "frame": {"x":72,"y":144,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/586": { "frame": {"x":80,"y":144,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/587": { "frame": {"x":88,"y":144,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/588": { "frame": {"x":96,"y":144,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/589": { "frame": {"x":104,"y":144,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/590": { "frame": {"x":112,"y":144,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/591": { "frame": {"x":120,"y":144,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/592": { "frame": {"x":128,"y":144,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/593": { "frame": {"x":136,"y":144,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/594": { "frame": {"x":144,"y":144,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/595": { "frame": {"x":152,"y":144,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/596": { "frame": {"x":160,"y":144,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/597": { "frame": {"x":168,"y":144,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/598": { "frame": {"x":176,"y":144,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/599": { "frame": {"x":184,"y":144,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/600": { "frame": {"x":192,"y":144,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/601": { "frame": {"x":200,"y":144,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/602": { "frame": {"x":208,"y":144,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/603": { "frame": {"x":216,"y":144,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/604": { "frame": {"x":224,"y":144,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/605": { "frame": {"x":232,"y":144,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/606": { "frame": {"x":240,"y":144,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/607": { "frame": {"x":248,"y":144,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/608": { "frame": {"x":0,"y":152,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/609": { "frame": {"x":8,"y":152,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/610": { "frame": {"x":16,"y":152,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/611": { "frame": {"x":24,"y":152,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/612": { "frame": {"x":32,"y":152,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/613": { "frame": {"x":40,"y":152,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/614": { "frame": {"x":48,"y":152,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/615": { "frame": {"x":56,"y":152,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/616": { "frame": {"x":64,"y":152,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/617": { "frame": {"x":72,"y":152,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/618": { "frame": {"x":80,"y":152,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/619": { "frame": {"x":88,"y":152,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/620": { "frame": {"x":96,"y":152,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/621": { "frame": {"x":104,"y":152,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/622": { "frame": {"x":112,"y":152,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/623": { "frame": {"x":120,"y":152,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/624": { "frame": {"x":128,"y":152,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/625": { "frame": {"x":136,"y":152,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/626": { "frame": {"x":144,"y":152,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/627": { "frame": {"x":152,"y":152,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/628": { "frame": {"x":160,"y":152,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/629": { "frame": {"x":168,"y":152,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/630": { "frame": {"x":176,"y":152,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/631": { "frame": {"x":184,"y":152,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/632": { "frame": {"x":192,"y":152,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/633": { "frame": {"x":200,"y":152,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/634": { "frame": {"x":208,"y":152,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/635": { "frame": {"x":216,"y":152,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/636": { "frame": {"x":224,"y":152,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/637": { "frame": {"x":232,"y":152,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/638": { "frame": {"x":240,"y":152,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/639": { "frame": {"x":248,"y":152,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/640": { "frame": {"x":0,"y":160,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/641": { "frame": {"x":8,"y":160,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/642": { "frame": {"x":16,"y":160,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/643": { "frame": {"x":24,"y":160,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/644": { "frame": {"x":32,"y":160,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/645": { "frame": {"x":40,"y":160,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/646": { "frame": {"x":48,"y":160,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/647": { "frame": {"x":56,"y":160,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/648": { "frame": {"x":64,"y":160,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/649": { "frame": {"x":72,"y":160,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/650": { "frame": {"x":80,"y":160,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/651": { "frame": {"x":88,"y":160,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/652": { "frame": {"x":96,"y":160,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/653": { "frame": {"x":104,"y":160,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/654": { "frame": {"x":112,"y":160,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/655": { "frame": {"x":120,"y":160,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/656": { "frame": {"x":128,"y":160,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/657": { "frame": {"x":136,"y":160,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/658": { "frame": {"x":144,"y":160,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/659": { "frame": {"x":152,"y":160,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/660": { "frame": {"x":160,"y":160,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/661": { "frame": {"x":168,"y":160,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/662": { "frame": {"x":176,"y":160,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/663": { "frame": {"x":184,"y":160,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/664": { "frame": {"x":192,"y":160,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/665": { "frame": {"x":200,"y":160,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/666": { "frame": {"x":208,"y":160,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/667": { "frame": {"x":216,"y":160,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/668": { "frame": {"x":224,"y":160,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/669": { "frame": {"x":232,"y":160,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/670": { "frame": {"x":240,"y":160,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/671": { "frame": {"x":248,"y":160,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/672": { "frame": {"x":0,"y":168,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/673": { "frame": {"x":8,"y":168,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/674": { "frame": {"x":16,"y":168,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/675": { "frame": {"x":24,"y":168,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/676": { "frame": {"x":32,"y":168,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/677": { "frame": {"x":40,"y":168,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/678": { "frame": {"x":48,"y":168,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/679": { "frame": {"x":56,"y":168,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/680": { "frame": {"x":64,"y":168,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/681": { "frame": {"x":72,"y":168,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/682": { "frame": {"x":80,"y":168,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/683": { "frame": {"x":88,"y":168,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/684": { "frame": {"x":96,"y":168,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/685": { "frame": {"x":104,"y":168,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/686": { "frame": {"x":112,"y":168,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/687": { "frame": {"x":120,"y":168,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/688": { "frame": {"x":128,"y":168,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/689": { "frame": {"x":136,"y":168,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/690": { "frame": {"x":144,"y":168,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/691": { "frame": {"x":152,"y":168,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/692": { "frame": {"x":160,"y":168,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/693": { "frame": {"x":168,"y":168,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/694": { "frame": {"x":176,"y":168,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/695": { "frame": {"x":184,"y":168,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/696": { "frame": {"x":192,"y":168,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/697": { "frame": {"x":200,"y":168,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/698": { "frame": {"x":208,"y":168,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/699": { "frame": {"x":216,"y":168,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/700": { "frame": {"x":224,"y":168,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/701": { "frame": {"x":232,"y":168,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/702": { "frame": {"x":240,"y":168,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/703": { "frame": {"x":248,"y":168,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/704": { "frame": {"x":0,"y":176,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/705": { "frame": {"x":8,"y":176,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/706": { "frame": {"x":16,"y":176,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/707": { "frame": {"x":24,"y":176,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/708": { "frame": {"x":32,"y":176,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/709": { "frame": {"x":40,"y":176,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/710": { "frame": {"x":48,"y":176,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/711": { "frame": {"x":56,"y":176,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/712": { "frame": {"x":64,"y":176,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/713": { "frame": {"x":72,"y":176,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/714": { "frame": {"x":80,"y":176,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/715": { "frame": {"x":88,"y":176,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/716": { "frame": {"x":96,"y":176,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/717": { "frame": {"x":104,"y":176,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/718": { "frame": {"x":112,"y":176,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/719": { "frame": {"x":120,"y":176,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/720": { "frame": {"x":128,"y":176,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/721": { "frame": {"x":136,"y":176,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/722": { "frame": {"x":144,"y":176,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/723": { "frame": {"x":152,"y":176,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/724": { "frame": {"x":160,"y":176,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/725": { "frame": {"x":168,"y":176,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/726": { "frame": {"x":176,"y":176,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/727": { "frame": {"x":184,"y":176,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/728": { "frame": {"x":192,"y":176,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/729": { "frame": {"x":200,"y":176,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/730": { "frame": {"x":208,"y":176,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/731": { "frame": {"x":216,"y":176,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/732": { "frame": {"x":224,"y":176,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/733": { "frame": {"x":232,"y":176,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/734": { "frame": {"x":240,"y":176,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/735": { "frame": {"x":248,"y":176,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/736": { "frame": {"x":0,"y":184,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/737": { "frame": {"x":8,"y":184,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/738": { "frame": {"x":16,"y":184,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/739": { "frame": {"x":24,"y":184,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/740": { "frame": {"x":32,"y":184,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/741": { "frame": {"x":40,"y":184,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/742": { "frame": {"x":48,"y":184,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/743": { "frame": {"x":56,"y":184,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/744": { "frame": {"x":64,"y":184,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/745": { "frame": {"x":72,"y":184,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/746": { "frame": {"x":80,"y":184,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/747": { "frame": {"x":88,"y":184,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/748": { "frame": {"x":96,"y":184,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/749": { "frame": {"x":104,"y":184,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/750": { "frame": {"x":112,"y":184,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/751": { "frame": {"x":120,"y":184,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/752": { "frame": {"x":128,"y":184,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/753": { "frame": {"x":136,"y":184,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/754": { "frame": {"x":144,"y":184,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/755": { "frame": {"x":152,"y":184,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/756": { "frame": {"x":160,"y":184,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/757": { "frame": {"x":168,"y":184,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/758": { "frame": {"x":176,"y":184,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/759": { "frame": {"x":184,"y":184,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/760": { "frame": {"x":192,"y":184,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/761": { "frame": {"x":200,"y":184,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/762": { "frame": {"x":208,"y":184,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/763": { "frame": {"x":216,"y":184,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/764": { "frame": {"x":224,"y":184,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/765": { "frame": {"x":232,"y":184,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/766": { "frame": {"x":240,"y":184,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/767": { "frame": {"x":248,"y":184,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/768": { "frame": {"x":0,"y":192,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/769": { "frame": {"x":8,"y":192,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/770": { "frame": {"x":16,"y":192,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/771": { "frame": {"x":24,"y":192,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/772": { "frame": {"x":32,"y":192,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/773": { "frame": {"x":40,"y":192,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/774": { "frame": {"x":48,"y":192,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/775": { "frame": {"x":56,"y":192,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/776": { "frame": {"x":64,"y":192,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/777": { "frame": {"x":72,"y":192,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/778": { "frame": {"x":80,"y":192,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/779": { "frame": {"x":88,"y":192,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/780": { "frame": {"x":96,"y":192,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/781": { "frame": {"x":104,"y":192,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/782": { "frame": {"x":112,"y":192,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/783": { "frame": {"x":120,"y":192,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/784": { "frame": {"x":128,"y":192,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/785": { "frame": {"x":136,"y":192,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/786": { "frame": {"x":144,"y":192,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/787": { "frame": {"x":152,"y":192,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/788": { "frame": {"x":160,"y":192,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/789": { "frame": {"x":168,"y":192,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/790": { "frame": {"x":176,"y":192,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/791": { "frame": {"x":184,"y":192,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/792": { "frame": {"x":192,"y":192,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/793": { "frame": {"x":200,"y":192,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/794": { "frame": {"x":208,"y":192,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/795": { "frame": {"x":216,"y":192,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/796": { "frame": {"x":224,"y":192,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/797": { "frame": {"x":232,"y":192,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/798": { "frame": {"x":240,"y":192,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/799": { "frame": {"x":248,"y":192,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/800": { "frame": {"x":0,"y":200,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/801": { "frame": {"x":8,"y":200,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/802": { "frame": {"x":16,"y":200,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/803": { "frame": {"x":24,"y":200,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/804": { "frame": {"x":32,"y":200,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/805": { "frame": {"x":40,"y":200,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/806": { "frame": {"x":48,"y":200,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/807": { "frame": {"x":56,"y":200,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/808": { "frame": {"x":64,"y":200,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/809": { "frame": {"x":72,"y":200,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/810": { "frame": {"x":80,"y":200,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/811": { "frame": {"x":88,"y":200,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/812": { "frame": {"x":96,"y":200,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/813": { "frame": {"x":104,"y":200,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/814": { "frame": {"x":112,"y":200,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/815": { "frame": {"x":120,"y":200,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/816": { "frame": {"x":128,"y":200,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/817": { "frame": {"x":136,"y":200,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/818": { "frame": {"x":144,"y":200,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/819": { "frame": {"x":152,"y":200,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/820": { "frame": {"x":160,"y":200,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/821": { "frame": {"x":168,"y":200,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/822": { "frame": {"x":176,"y":200,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/823": { "frame": {"x":184,"y":200,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/824": { "frame": {"x":192,"y":200,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/825": { "frame": {"x":200,"y":200,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/826": { "frame": {"x":208,"y":200,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/827": { "frame": {"x":216,"y":200,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/828": { "frame": {"x":224,"y":200,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/829": { "frame": {"x":232,"y":200,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/830": { "frame": {"x":240,"y":200,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/831": { "frame": {"x":248,"y":200,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/832": { "frame": {"x":0,"y":208,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/833": { "frame": {"x":8,"y":208,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/834": { "frame": {"x":16,"y":208,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/835": { "frame": {"x":24,"y":208,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/836": { "frame": {"x":32,"y":208,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/837": { "frame": {"x":40,"y":208,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/838": { "frame": {"x":48,"y":208,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/839": { "frame": {"x":56,"y":208,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/840": { "frame": {"x":64,"y":208,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/841": { "frame": {"x":72,"y":208,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/842": { "frame": {"x":80,"y":208,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/843": { "frame": {"x":88,"y":208,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/844": { "frame": {"x":96,"y":208,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/845": { "frame": {"x":104,"y":208,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/846": { "frame": {"x":112,"y":208,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/847": { "frame": {"x":120,"y":208,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/848": { "frame": {"x":128,"y":208,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/849": { "frame": {"x":136,"y":208,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/850": { "frame": {"x":144,"y":208,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/851": { "frame": {"x":152,"y":208,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/852": { "frame": {"x":160,"y":208,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/853": { "frame": {"x":168,"y":208,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/854": { "frame": {"x":176,"y":208,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/855": { "frame": {"x":184,"y":208,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/856": { "frame": {"x":192,"y":208,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/857": { "frame": {"x":200,"y":208,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/858": { "frame": {"x":208,"y":208,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/859": { "frame": {"x":216,"y":208,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/860": { "frame": {"x":224,"y":208,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/861": { "frame": {"x":232,"y":208,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/862": { "frame": {"x":240,"y":208,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/863": { "frame": {"x":248,"y":208,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/864": { "frame": {"x":0,"y":216,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/865": { "frame": {"x":8,"y":216,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/866": { "frame": {"x":16,"y":216,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/867": { "frame": {"x":24,"y":216,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/868": { "frame": {"x":32,"y":216,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/869": { "frame": {"x":40,"y":216,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/870": { "frame": {"x":48,"y":216,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/871": { "frame": {"x":56,"y":216,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/872": { "frame": {"x":64,"y":216,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/873": { "frame": {"x":72,"y":216,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/874": { "frame": {"x":80,"y":216,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/875": { "frame": {"x":88,"y":216,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/876": { "frame": {"x":96,"y":216,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/877": { "frame": {"x":104,"y":216,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/878": { "frame": {"x":112,"y":216,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/879": { "frame": {"x":120,"y":216,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/880": { "frame": {"x":128,"y":216,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/881": { "frame": {"x":136,"y":216,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/882": { "frame": {"x":144,"y":216,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/883": { "frame": {"x":152,"y":216,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/884": { "frame": {"x":160,"y":216,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/885": { "frame": {"x":168,"y":216,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/886": { "frame": {"x":176,"y":216,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/887": { "frame": {"x":184,"y":216,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/888": { "frame": {"x":192,"y":216,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/889": { "frame": {"x":200,"y":216,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/890": { "frame": {"x":208,"y":216,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/891": { "frame": {"x":216,"y":216,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/892": { "frame": {"x":224,"y":216,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/893": { "frame": {"x":232,"y":216,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/894": { "frame": {"x":240,"y":216,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/895": { "frame": {"x":248,"y":216,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/896": { "frame": {"x":0,"y":224,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/897": { "frame": {"x":8,"y":224,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/898": { "frame": {"x":16,"y":224,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/899": { "frame": {"x":24,"y":224,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/900": { "frame": {"x":32,"y":224,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/901": { "frame": {"x":40,"y":224,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/902": { "frame": {"x":48,"y":224,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/903": { "frame": {"x":56,"y":224,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/904": { "frame": {"x":64,"y":224,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/905": { "frame": {"x":72,"y":224,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/906": { "frame": {"x":80,"y":224,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/907": { "frame": {"x":88,"y":224,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/908": { "frame": {"x":96,"y":224,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/909": { "frame": {"x":104,"y":224,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/910": { "frame": {"x":112,"y":224,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/911": { "frame": {"x":120,"y":224,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/912": { "frame": {"x":128,"y":224,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/913": { "frame": {"x":136,"y":224,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/914": { "frame": {"x":144,"y":224,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/915": { "frame": {"x":152,"y":224,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/916": { "frame": {"x":160,"y":224,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/917": { "frame": {"x":168,"y":224,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/918": { "frame": {"x":176,"y":224,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/919": { "frame": {"x":184,"y":224,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/920": { "frame": {"x":192,"y":224,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/921": { "frame": {"x":200,"y":224,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/922": { "frame": {"x":208,"y":224,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/923": { "frame": {"x":216,"y":224,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/924": { "frame": {"x":224,"y":224,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/925": { "frame": {"x":232,"y":224,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/926": { "frame": {"x":240,"y":224,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/927": { "frame": {"x":248,"y":224,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/928": { "frame": {"x":0,"y":232,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/929": { "frame": {"x":8,"y":232,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/930": { "frame": {"x":16,"y":232,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/931": { "frame": {"x":24,"y":232,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/932": { "frame": {"x":32,"y":232,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/933": { "frame": {"x":40,"y":232,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/934": { "frame": {"x":48,"y":232,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/935": { "frame": {"x":56,"y":232,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/936": { "frame": {"x":64,"y":232,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/937": { "frame": {"x":72,"y":232,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/938": { "frame": {"x":80,"y":232,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/939": { "frame": {"x":88,"y":232,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/940": { "frame": {"x":96,"y":232,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/941": { "frame": {"x":104,"y":232,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/942": { "frame": {"x":112,"y":232,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/943": { "frame": {"x":120,"y":232,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/944": { "frame": {"x":128,"y":232,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/945": { "frame": {"x":136,"y":232,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/946": { "frame": {"x":144,"y":232,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/947": { "frame": {"x":152,"y":232,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/948": { "frame": {"x":160,"y":232,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/949": { "frame": {"x":168,"y":232,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/950": { "frame": {"x":176,"y":232,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/951": { "frame": {"x":184,"y":232,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/952": { "frame": {"x":192,"y":232,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/953": { "frame": {"x":200,"y":232,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/954": { "frame": {"x":208,"y":232,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/955": { "frame": {"x":216,"y":232,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/956": { "frame": {"x":224,"y":232,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/957": { "frame": {"x":232,"y":232,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/958": { "frame": {"x":240,"y":232,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/959": { "frame": {"x":248,"y":232,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/960": { "frame": {"x":0,"y":240,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/961": { "frame": {"x":8,"y":240,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/962": { "frame": {"x":16,"y":240,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/963": { "frame": {"x":24,"y":240,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/964": { "frame": {"x":32,"y":240,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/965": { "frame": {"x":40,"y":240,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/966": { "frame": {"x":48,"y":240,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/967": { "frame": {"x":56,"y":240,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/968": { "frame": {"x":64,"y":240,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/969": { "frame": {"x":72,"y":240,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/970": { "frame": {"x":80,"y":240,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/971": { "frame": {"x":88,"y":240,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/972": { "frame": {"x":96,"y":240,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/973": { "frame": {"x":104,"y":240,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/974": { "frame": {"x":112,"y":240,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/975": { "frame": {"x":120,"y":240,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/976": { "frame": {"x":128,"y":240,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/977": { "frame": {"x":136,"y":240,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/978": { "frame": {"x":144,"y":240,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/979": { "frame": {"x":152,"y":240,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/980": { "frame": {"x":160,"y":240,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/981": { "frame": {"x":168,"y":240,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/982": { "frame": {"x":176,"y":240,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/983": { "frame": {"x":184,"y":240,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/984": { "frame": {"x":192,"y":240,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/985": { "frame": {"x":200,"y":240,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/986": { "frame": {"x":208,"y":240,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/987": { "frame": {"x":216,"y":240,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/988": { "frame": {"x":224,"y":240,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/989": { "frame": {"x":232,"y":240,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/990": { "frame": {"x":240,"y":240,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/991": { "frame": {"x":248,"y":240,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/992": { "frame": {"x":0,"y":248,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/993": { "frame": {"x":8,"y":248,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/994": { "frame": {"x":16,"y":248,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/995": { "frame": {"x":24,"y":248,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/996": { "frame": {"x":32,"y":248,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/997": { "frame": {"x":40,"y":248,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/998": { "frame": {"x":48,"y":248,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/999": { "frame": {"x":56,"y":248,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/1000": { "frame": {"x":64,"y":248,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/1001": { "frame": {"x":72,"y":248,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/1002": { "frame": {"x":80,"y":248,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/1003": { "frame": {"x":88,"y":248,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/1004": { "frame": {"x":96,"y":248,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/1005": { "frame": {"x":104,"y":248,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/1006": { "frame": {"x":112,"y":248,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/1007": { "frame": {"x":120,"y":248,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/1008": { "frame": {"x":128,"y":248,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/1009": { "frame": {"x":136,"y":248,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/1010": { "frame": {"x":144,"y":248,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/1011": { "frame": {"x":152,"y":248,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/1012": { "frame": {"x":160,"y":248,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/1013": { "frame": {"x":168,"y":248,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/1014": { "frame": {"x":176,"y":248,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/1015": { "frame": {"x":184,"y":248,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/1016": { "frame": {"x":192,"y":248,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/1017": { "frame": {"x":200,"y":248,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/1018": { "frame": {"x":208,"y":248,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/1019": { "frame": {"x":216,"y":248,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/1020": { "frame": {"x":224,"y":248,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/1021": { "frame": {"x":232,"y":248,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/1022": { "frame": {"x":240,"y":248,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }, "worldmap/1023": { "frame": {"x":248,"y":248,"w":8,"h":8}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":8,"h":8}, "sourceSize": {"w":8,"h":8} }}, "meta": { "app": "https://www.codeandweb.com/texturepacker", "version": "1.0", "image": "worldmap.webp", "format": "RGBA8888", "size": {"w":256,"h":256}, "scale": "1", "smartupdate": "$TexturePacker:SmartUpdate:b05bba85c3e023eceaac871bba8406c5:1c3c692111745118973bbd58e2f05e99:e0cdae07ecfa0691565dbb82a489d9b3$" } } ================================================ FILE: copyrighted/textures/all/worldmap.regions.json ================================================ {"frames": { "regions/hoenn": { "frame": {"x":1,"y":1,"w":494,"h":308}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":494,"h":308}, "sourceSize": {"w":494,"h":308} }, "regions/sevii_islands": { "frame": {"x":1,"y":311,"w":153,"h":318}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":153,"h":318}, "sourceSize": {"w":153,"h":318} }}, "meta": { "app": "https://www.codeandweb.com/texturepacker", "version": "1.0", "image": "worldmap.regions.webp", "format": "RGBA8888", "size": {"w":496,"h":465}, "scale": "1", "smartupdate": "$TexturePacker:SmartUpdate:02d7a5a477af8648752e00ea0090b13e:f56614d6b12e684375cff36b6472714b:b7590c7922ce95aa38f27d756895b0de$" } } ================================================ FILE: copyrighted/textures/all/worldmap.regions.tps ================================================ fileFormatVersion 5 texturePackerVersion 6.0.0 autoSDSettings scale 1 extension spriteFilter acceptFractionalValues maxTextureSize width -1 height -1 allowRotation shapeDebug dpi 72 dataFormat pixijs4 textureFileName worldmap.regions.webp flipPVR pvrQualityLevel 3 astcQualityLevel 2 basisUniversalQualityLevel 2 atfCompressData mipMapMinSize 32768 etc1QualityLevel 70 etc2QualityLevel 70 dxtCompressionMode DXT_PERCEPTUAL jxrColorFormat JXR_YUV444 jxrTrimFlexBits 0 jxrCompressionLevel 0 ditherType NearestNeighbour backgroundColor 0 libGdx filtering x Linear y Linear shapePadding 0 jpgQuality 80 pngOptimizationLevel 1 webpQualityLevel 101 textureSubPath atfFormats textureFormat webp borderPadding 0 maxTextureSize width 2048 height 2048 fixedTextureSize width -1 height -1 algorithmSettings algorithm MaxRects freeSizeMode Best sizeConstraints AnySize forceSquared maxRects heuristic Best basic sortBy Best order Ascending polygon alignToGrid 1 dataFileNames data name worldmap.regions.json multiPack forceIdenticalLayout outputFormat RGBA8888 alphaHandling ClearTransparentPixels contentProtection key autoAliasEnabled trimSpriteNames prependSmartFolderName autodetectAnimations globalSpriteSettings scale 1 scaleMode Smooth extrude 1 trimThreshold 1 trimMargin 1 trimMode Trim tracerTolerance 200 heuristicMask defaultPivotPoint 0,0 writePivotPoints individualSpriteSettings regions/hoenn.png pivotPoint 0,0 spriteScale 1 scale9Enabled scale9Borders 124,77,247,154 scale9Paddings 124,77,247,154 scale9FromFile regions/sevii_islands.png pivotPoint 0,0 spriteScale 1 scale9Enabled scale9Borders 38,80,77,159 scale9Paddings 38,80,77,159 scale9FromFile fileList regions ignoreFileList replaceList ignoredWarnings commonDivisorX 1 commonDivisorY 1 packNormalMaps autodetectNormalMaps normalMapFilter normalMapSuffix normalMapSheetFileName exporterProperties ================================================ FILE: copyrighted/textures/all/worldmap.tps ================================================ fileFormatVersion 5 texturePackerVersion 6.0.0 autoSDSettings scale 1 extension spriteFilter acceptFractionalValues maxTextureSize width -1 height -1 allowRotation shapeDebug dpi 72 dataFormat pixijs4 textureFileName worldmap.webp flipPVR pvrQualityLevel 3 astcQualityLevel 2 basisUniversalQualityLevel 2 atfCompressData mipMapMinSize 32768 etc1QualityLevel 70 etc2QualityLevel 70 dxtCompressionMode DXT_PERCEPTUAL jxrColorFormat JXR_YUV444 jxrTrimFlexBits 0 jxrCompressionLevel 0 ditherType NearestNeighbour backgroundColor 0 libGdx filtering x Linear y Linear shapePadding 0 jpgQuality 80 pngOptimizationLevel 1 webpQualityLevel 101 textureSubPath atfFormats textureFormat webp borderPadding 0 maxTextureSize width 256 height 256 fixedTextureSize width 256 height -1 algorithmSettings algorithm Basic freeSizeMode Fast sizeConstraints AnySize forceSquared maxRects heuristic Best basic sortBy Name order Ascending polygon alignToGrid 1 dataFileNames data name worldmap.json multiPack forceIdenticalLayout outputFormat RGBA8888 alphaHandling ClearTransparentPixels contentProtection key autoAliasEnabled trimSpriteNames prependSmartFolderName autodetectAnimations globalSpriteSettings scale 1 scaleMode Smooth extrude 0 trimThreshold 1 trimMargin 0 trimMode None tracerTolerance 200 heuristicMask defaultPivotPoint 0,0 writePivotPoints individualSpriteSettings ../../../app/build/cache/tilesets/worldmap/0.png ../../../app/build/cache/tilesets/worldmap/1.png ../../../app/build/cache/tilesets/worldmap/10.png ../../../app/build/cache/tilesets/worldmap/100.png ../../../app/build/cache/tilesets/worldmap/1000.png ../../../app/build/cache/tilesets/worldmap/1001.png ../../../app/build/cache/tilesets/worldmap/1002.png ../../../app/build/cache/tilesets/worldmap/1003.png ../../../app/build/cache/tilesets/worldmap/1004.png ../../../app/build/cache/tilesets/worldmap/1005.png ../../../app/build/cache/tilesets/worldmap/1006.png ../../../app/build/cache/tilesets/worldmap/1007.png ../../../app/build/cache/tilesets/worldmap/1008.png ../../../app/build/cache/tilesets/worldmap/1009.png ../../../app/build/cache/tilesets/worldmap/101.png ../../../app/build/cache/tilesets/worldmap/1010.png ../../../app/build/cache/tilesets/worldmap/1011.png ../../../app/build/cache/tilesets/worldmap/1012.png ../../../app/build/cache/tilesets/worldmap/1013.png ../../../app/build/cache/tilesets/worldmap/1014.png ../../../app/build/cache/tilesets/worldmap/1015.png ../../../app/build/cache/tilesets/worldmap/1016.png ../../../app/build/cache/tilesets/worldmap/1017.png ../../../app/build/cache/tilesets/worldmap/1018.png ../../../app/build/cache/tilesets/worldmap/1019.png ../../../app/build/cache/tilesets/worldmap/102.png ../../../app/build/cache/tilesets/worldmap/1020.png ../../../app/build/cache/tilesets/worldmap/1021.png ../../../app/build/cache/tilesets/worldmap/1022.png ../../../app/build/cache/tilesets/worldmap/1023.png ../../../app/build/cache/tilesets/worldmap/103.png ../../../app/build/cache/tilesets/worldmap/104.png ../../../app/build/cache/tilesets/worldmap/105.png ../../../app/build/cache/tilesets/worldmap/106.png ../../../app/build/cache/tilesets/worldmap/107.png ../../../app/build/cache/tilesets/worldmap/108.png ../../../app/build/cache/tilesets/worldmap/109.png ../../../app/build/cache/tilesets/worldmap/11.png ../../../app/build/cache/tilesets/worldmap/110.png ../../../app/build/cache/tilesets/worldmap/111.png ../../../app/build/cache/tilesets/worldmap/112.png ../../../app/build/cache/tilesets/worldmap/113.png ../../../app/build/cache/tilesets/worldmap/114.png ../../../app/build/cache/tilesets/worldmap/115.png ../../../app/build/cache/tilesets/worldmap/116.png ../../../app/build/cache/tilesets/worldmap/117.png ../../../app/build/cache/tilesets/worldmap/118.png ../../../app/build/cache/tilesets/worldmap/119.png ../../../app/build/cache/tilesets/worldmap/12.png ../../../app/build/cache/tilesets/worldmap/120.png ../../../app/build/cache/tilesets/worldmap/121.png ../../../app/build/cache/tilesets/worldmap/122.png ../../../app/build/cache/tilesets/worldmap/123.png ../../../app/build/cache/tilesets/worldmap/124.png ../../../app/build/cache/tilesets/worldmap/125.png ../../../app/build/cache/tilesets/worldmap/126.png ../../../app/build/cache/tilesets/worldmap/127.png ../../../app/build/cache/tilesets/worldmap/128.png ../../../app/build/cache/tilesets/worldmap/129.png ../../../app/build/cache/tilesets/worldmap/13.png ../../../app/build/cache/tilesets/worldmap/130.png ../../../app/build/cache/tilesets/worldmap/131.png ../../../app/build/cache/tilesets/worldmap/132.png ../../../app/build/cache/tilesets/worldmap/133.png ../../../app/build/cache/tilesets/worldmap/134.png ../../../app/build/cache/tilesets/worldmap/135.png ../../../app/build/cache/tilesets/worldmap/136.png ../../../app/build/cache/tilesets/worldmap/137.png ../../../app/build/cache/tilesets/worldmap/138.png ../../../app/build/cache/tilesets/worldmap/139.png ../../../app/build/cache/tilesets/worldmap/14.png ../../../app/build/cache/tilesets/worldmap/140.png ../../../app/build/cache/tilesets/worldmap/141.png ../../../app/build/cache/tilesets/worldmap/142.png ../../../app/build/cache/tilesets/worldmap/143.png ../../../app/build/cache/tilesets/worldmap/144.png ../../../app/build/cache/tilesets/worldmap/145.png ../../../app/build/cache/tilesets/worldmap/146.png ../../../app/build/cache/tilesets/worldmap/147.png ../../../app/build/cache/tilesets/worldmap/148.png ../../../app/build/cache/tilesets/worldmap/149.png ../../../app/build/cache/tilesets/worldmap/15.png ../../../app/build/cache/tilesets/worldmap/150.png ../../../app/build/cache/tilesets/worldmap/151.png ../../../app/build/cache/tilesets/worldmap/152.png ../../../app/build/cache/tilesets/worldmap/153.png ../../../app/build/cache/tilesets/worldmap/154.png ../../../app/build/cache/tilesets/worldmap/155.png ../../../app/build/cache/tilesets/worldmap/156.png ../../../app/build/cache/tilesets/worldmap/157.png ../../../app/build/cache/tilesets/worldmap/158.png ../../../app/build/cache/tilesets/worldmap/159.png ../../../app/build/cache/tilesets/worldmap/16.png ../../../app/build/cache/tilesets/worldmap/160.png ../../../app/build/cache/tilesets/worldmap/161.png ../../../app/build/cache/tilesets/worldmap/162.png ../../../app/build/cache/tilesets/worldmap/163.png ../../../app/build/cache/tilesets/worldmap/164.png ../../../app/build/cache/tilesets/worldmap/165.png ../../../app/build/cache/tilesets/worldmap/166.png ../../../app/build/cache/tilesets/worldmap/167.png ../../../app/build/cache/tilesets/worldmap/168.png ../../../app/build/cache/tilesets/worldmap/169.png ../../../app/build/cache/tilesets/worldmap/17.png ../../../app/build/cache/tilesets/worldmap/170.png ../../../app/build/cache/tilesets/worldmap/171.png ../../../app/build/cache/tilesets/worldmap/172.png ../../../app/build/cache/tilesets/worldmap/173.png ../../../app/build/cache/tilesets/worldmap/174.png ../../../app/build/cache/tilesets/worldmap/175.png ../../../app/build/cache/tilesets/worldmap/176.png ../../../app/build/cache/tilesets/worldmap/177.png ../../../app/build/cache/tilesets/worldmap/178.png ../../../app/build/cache/tilesets/worldmap/179.png ../../../app/build/cache/tilesets/worldmap/18.png ../../../app/build/cache/tilesets/worldmap/180.png ../../../app/build/cache/tilesets/worldmap/181.png ../../../app/build/cache/tilesets/worldmap/182.png ../../../app/build/cache/tilesets/worldmap/183.png ../../../app/build/cache/tilesets/worldmap/184.png ../../../app/build/cache/tilesets/worldmap/185.png ../../../app/build/cache/tilesets/worldmap/186.png ../../../app/build/cache/tilesets/worldmap/187.png ../../../app/build/cache/tilesets/worldmap/188.png ../../../app/build/cache/tilesets/worldmap/189.png ../../../app/build/cache/tilesets/worldmap/19.png ../../../app/build/cache/tilesets/worldmap/190.png ../../../app/build/cache/tilesets/worldmap/191.png ../../../app/build/cache/tilesets/worldmap/192.png ../../../app/build/cache/tilesets/worldmap/193.png ../../../app/build/cache/tilesets/worldmap/194.png ../../../app/build/cache/tilesets/worldmap/195.png ../../../app/build/cache/tilesets/worldmap/196.png ../../../app/build/cache/tilesets/worldmap/197.png ../../../app/build/cache/tilesets/worldmap/198.png ../../../app/build/cache/tilesets/worldmap/199.png ../../../app/build/cache/tilesets/worldmap/2.png ../../../app/build/cache/tilesets/worldmap/20.png ../../../app/build/cache/tilesets/worldmap/200.png ../../../app/build/cache/tilesets/worldmap/201.png ../../../app/build/cache/tilesets/worldmap/202.png ../../../app/build/cache/tilesets/worldmap/203.png ../../../app/build/cache/tilesets/worldmap/204.png ../../../app/build/cache/tilesets/worldmap/205.png ../../../app/build/cache/tilesets/worldmap/206.png ../../../app/build/cache/tilesets/worldmap/207.png ../../../app/build/cache/tilesets/worldmap/208.png ../../../app/build/cache/tilesets/worldmap/209.png ../../../app/build/cache/tilesets/worldmap/21.png ../../../app/build/cache/tilesets/worldmap/210.png ../../../app/build/cache/tilesets/worldmap/211.png ../../../app/build/cache/tilesets/worldmap/212.png ../../../app/build/cache/tilesets/worldmap/213.png ../../../app/build/cache/tilesets/worldmap/214.png ../../../app/build/cache/tilesets/worldmap/215.png ../../../app/build/cache/tilesets/worldmap/216.png ../../../app/build/cache/tilesets/worldmap/217.png ../../../app/build/cache/tilesets/worldmap/218.png ../../../app/build/cache/tilesets/worldmap/219.png ../../../app/build/cache/tilesets/worldmap/22.png ../../../app/build/cache/tilesets/worldmap/220.png ../../../app/build/cache/tilesets/worldmap/221.png ../../../app/build/cache/tilesets/worldmap/222.png ../../../app/build/cache/tilesets/worldmap/223.png ../../../app/build/cache/tilesets/worldmap/224.png ../../../app/build/cache/tilesets/worldmap/225.png ../../../app/build/cache/tilesets/worldmap/226.png ../../../app/build/cache/tilesets/worldmap/227.png ../../../app/build/cache/tilesets/worldmap/228.png ../../../app/build/cache/tilesets/worldmap/229.png ../../../app/build/cache/tilesets/worldmap/23.png ../../../app/build/cache/tilesets/worldmap/230.png ../../../app/build/cache/tilesets/worldmap/231.png ../../../app/build/cache/tilesets/worldmap/232.png ../../../app/build/cache/tilesets/worldmap/233.png ../../../app/build/cache/tilesets/worldmap/234.png ../../../app/build/cache/tilesets/worldmap/235.png ../../../app/build/cache/tilesets/worldmap/236.png ../../../app/build/cache/tilesets/worldmap/237.png ../../../app/build/cache/tilesets/worldmap/238.png ../../../app/build/cache/tilesets/worldmap/239.png ../../../app/build/cache/tilesets/worldmap/24.png ../../../app/build/cache/tilesets/worldmap/240.png ../../../app/build/cache/tilesets/worldmap/241.png ../../../app/build/cache/tilesets/worldmap/242.png ../../../app/build/cache/tilesets/worldmap/243.png ../../../app/build/cache/tilesets/worldmap/244.png ../../../app/build/cache/tilesets/worldmap/245.png ../../../app/build/cache/tilesets/worldmap/246.png ../../../app/build/cache/tilesets/worldmap/247.png ../../../app/build/cache/tilesets/worldmap/248.png ../../../app/build/cache/tilesets/worldmap/249.png ../../../app/build/cache/tilesets/worldmap/25.png ../../../app/build/cache/tilesets/worldmap/250.png ../../../app/build/cache/tilesets/worldmap/251.png ../../../app/build/cache/tilesets/worldmap/252.png ../../../app/build/cache/tilesets/worldmap/253.png ../../../app/build/cache/tilesets/worldmap/254.png ../../../app/build/cache/tilesets/worldmap/255.png ../../../app/build/cache/tilesets/worldmap/256.png ../../../app/build/cache/tilesets/worldmap/257.png ../../../app/build/cache/tilesets/worldmap/258.png ../../../app/build/cache/tilesets/worldmap/259.png ../../../app/build/cache/tilesets/worldmap/26.png ../../../app/build/cache/tilesets/worldmap/260.png ../../../app/build/cache/tilesets/worldmap/261.png ../../../app/build/cache/tilesets/worldmap/262.png ../../../app/build/cache/tilesets/worldmap/263.png ../../../app/build/cache/tilesets/worldmap/264.png ../../../app/build/cache/tilesets/worldmap/265.png ../../../app/build/cache/tilesets/worldmap/266.png ../../../app/build/cache/tilesets/worldmap/267.png ../../../app/build/cache/tilesets/worldmap/268.png ../../../app/build/cache/tilesets/worldmap/269.png ../../../app/build/cache/tilesets/worldmap/27.png ../../../app/build/cache/tilesets/worldmap/270.png ../../../app/build/cache/tilesets/worldmap/271.png ../../../app/build/cache/tilesets/worldmap/272.png ../../../app/build/cache/tilesets/worldmap/273.png ../../../app/build/cache/tilesets/worldmap/274.png ../../../app/build/cache/tilesets/worldmap/275.png ../../../app/build/cache/tilesets/worldmap/276.png ../../../app/build/cache/tilesets/worldmap/277.png ../../../app/build/cache/tilesets/worldmap/278.png ../../../app/build/cache/tilesets/worldmap/279.png ../../../app/build/cache/tilesets/worldmap/28.png ../../../app/build/cache/tilesets/worldmap/280.png ../../../app/build/cache/tilesets/worldmap/281.png ../../../app/build/cache/tilesets/worldmap/282.png ../../../app/build/cache/tilesets/worldmap/283.png ../../../app/build/cache/tilesets/worldmap/284.png ../../../app/build/cache/tilesets/worldmap/285.png ../../../app/build/cache/tilesets/worldmap/286.png ../../../app/build/cache/tilesets/worldmap/287.png ../../../app/build/cache/tilesets/worldmap/288.png ../../../app/build/cache/tilesets/worldmap/289.png ../../../app/build/cache/tilesets/worldmap/29.png ../../../app/build/cache/tilesets/worldmap/290.png ../../../app/build/cache/tilesets/worldmap/291.png ../../../app/build/cache/tilesets/worldmap/292.png ../../../app/build/cache/tilesets/worldmap/293.png ../../../app/build/cache/tilesets/worldmap/294.png ../../../app/build/cache/tilesets/worldmap/295.png ../../../app/build/cache/tilesets/worldmap/296.png ../../../app/build/cache/tilesets/worldmap/297.png ../../../app/build/cache/tilesets/worldmap/298.png ../../../app/build/cache/tilesets/worldmap/299.png ../../../app/build/cache/tilesets/worldmap/3.png ../../../app/build/cache/tilesets/worldmap/30.png ../../../app/build/cache/tilesets/worldmap/300.png ../../../app/build/cache/tilesets/worldmap/301.png ../../../app/build/cache/tilesets/worldmap/302.png ../../../app/build/cache/tilesets/worldmap/303.png ../../../app/build/cache/tilesets/worldmap/304.png ../../../app/build/cache/tilesets/worldmap/305.png ../../../app/build/cache/tilesets/worldmap/306.png ../../../app/build/cache/tilesets/worldmap/307.png ../../../app/build/cache/tilesets/worldmap/308.png ../../../app/build/cache/tilesets/worldmap/309.png ../../../app/build/cache/tilesets/worldmap/31.png ../../../app/build/cache/tilesets/worldmap/310.png ../../../app/build/cache/tilesets/worldmap/311.png ../../../app/build/cache/tilesets/worldmap/312.png ../../../app/build/cache/tilesets/worldmap/313.png ../../../app/build/cache/tilesets/worldmap/314.png ../../../app/build/cache/tilesets/worldmap/315.png ../../../app/build/cache/tilesets/worldmap/316.png ../../../app/build/cache/tilesets/worldmap/317.png ../../../app/build/cache/tilesets/worldmap/318.png ../../../app/build/cache/tilesets/worldmap/319.png ../../../app/build/cache/tilesets/worldmap/32.png ../../../app/build/cache/tilesets/worldmap/320.png ../../../app/build/cache/tilesets/worldmap/321.png ../../../app/build/cache/tilesets/worldmap/322.png ../../../app/build/cache/tilesets/worldmap/323.png ../../../app/build/cache/tilesets/worldmap/324.png ../../../app/build/cache/tilesets/worldmap/325.png ../../../app/build/cache/tilesets/worldmap/326.png ../../../app/build/cache/tilesets/worldmap/327.png ../../../app/build/cache/tilesets/worldmap/328.png ../../../app/build/cache/tilesets/worldmap/329.png ../../../app/build/cache/tilesets/worldmap/33.png ../../../app/build/cache/tilesets/worldmap/330.png ../../../app/build/cache/tilesets/worldmap/331.png ../../../app/build/cache/tilesets/worldmap/332.png ../../../app/build/cache/tilesets/worldmap/333.png ../../../app/build/cache/tilesets/worldmap/334.png ../../../app/build/cache/tilesets/worldmap/335.png ../../../app/build/cache/tilesets/worldmap/336.png ../../../app/build/cache/tilesets/worldmap/337.png ../../../app/build/cache/tilesets/worldmap/338.png ../../../app/build/cache/tilesets/worldmap/339.png ../../../app/build/cache/tilesets/worldmap/34.png ../../../app/build/cache/tilesets/worldmap/340.png ../../../app/build/cache/tilesets/worldmap/341.png ../../../app/build/cache/tilesets/worldmap/342.png ../../../app/build/cache/tilesets/worldmap/343.png ../../../app/build/cache/tilesets/worldmap/344.png ../../../app/build/cache/tilesets/worldmap/345.png ../../../app/build/cache/tilesets/worldmap/346.png ../../../app/build/cache/tilesets/worldmap/347.png ../../../app/build/cache/tilesets/worldmap/348.png ../../../app/build/cache/tilesets/worldmap/349.png ../../../app/build/cache/tilesets/worldmap/35.png ../../../app/build/cache/tilesets/worldmap/350.png ../../../app/build/cache/tilesets/worldmap/351.png ../../../app/build/cache/tilesets/worldmap/352.png ../../../app/build/cache/tilesets/worldmap/353.png ../../../app/build/cache/tilesets/worldmap/354.png ../../../app/build/cache/tilesets/worldmap/355.png ../../../app/build/cache/tilesets/worldmap/356.png ../../../app/build/cache/tilesets/worldmap/357.png ../../../app/build/cache/tilesets/worldmap/358.png ../../../app/build/cache/tilesets/worldmap/359.png ../../../app/build/cache/tilesets/worldmap/36.png ../../../app/build/cache/tilesets/worldmap/360.png ../../../app/build/cache/tilesets/worldmap/361.png ../../../app/build/cache/tilesets/worldmap/362.png ../../../app/build/cache/tilesets/worldmap/363.png ../../../app/build/cache/tilesets/worldmap/364.png ../../../app/build/cache/tilesets/worldmap/365.png ../../../app/build/cache/tilesets/worldmap/366.png ../../../app/build/cache/tilesets/worldmap/367.png ../../../app/build/cache/tilesets/worldmap/368.png ../../../app/build/cache/tilesets/worldmap/369.png ../../../app/build/cache/tilesets/worldmap/37.png ../../../app/build/cache/tilesets/worldmap/370.png ../../../app/build/cache/tilesets/worldmap/371.png ../../../app/build/cache/tilesets/worldmap/372.png ../../../app/build/cache/tilesets/worldmap/373.png ../../../app/build/cache/tilesets/worldmap/374.png ../../../app/build/cache/tilesets/worldmap/375.png ../../../app/build/cache/tilesets/worldmap/376.png ../../../app/build/cache/tilesets/worldmap/377.png ../../../app/build/cache/tilesets/worldmap/378.png ../../../app/build/cache/tilesets/worldmap/379.png ../../../app/build/cache/tilesets/worldmap/38.png ../../../app/build/cache/tilesets/worldmap/380.png ../../../app/build/cache/tilesets/worldmap/381.png ../../../app/build/cache/tilesets/worldmap/382.png ../../../app/build/cache/tilesets/worldmap/383.png ../../../app/build/cache/tilesets/worldmap/384.png ../../../app/build/cache/tilesets/worldmap/385.png ../../../app/build/cache/tilesets/worldmap/386.png ../../../app/build/cache/tilesets/worldmap/387.png ../../../app/build/cache/tilesets/worldmap/388.png ../../../app/build/cache/tilesets/worldmap/389.png ../../../app/build/cache/tilesets/worldmap/39.png ../../../app/build/cache/tilesets/worldmap/390.png ../../../app/build/cache/tilesets/worldmap/391.png ../../../app/build/cache/tilesets/worldmap/392.png ../../../app/build/cache/tilesets/worldmap/393.png ../../../app/build/cache/tilesets/worldmap/394.png ../../../app/build/cache/tilesets/worldmap/395.png ../../../app/build/cache/tilesets/worldmap/396.png ../../../app/build/cache/tilesets/worldmap/397.png ../../../app/build/cache/tilesets/worldmap/398.png ../../../app/build/cache/tilesets/worldmap/399.png ../../../app/build/cache/tilesets/worldmap/4.png ../../../app/build/cache/tilesets/worldmap/40.png ../../../app/build/cache/tilesets/worldmap/400.png ../../../app/build/cache/tilesets/worldmap/401.png ../../../app/build/cache/tilesets/worldmap/402.png ../../../app/build/cache/tilesets/worldmap/403.png ../../../app/build/cache/tilesets/worldmap/404.png ../../../app/build/cache/tilesets/worldmap/405.png ../../../app/build/cache/tilesets/worldmap/406.png ../../../app/build/cache/tilesets/worldmap/407.png ../../../app/build/cache/tilesets/worldmap/408.png ../../../app/build/cache/tilesets/worldmap/409.png ../../../app/build/cache/tilesets/worldmap/41.png ../../../app/build/cache/tilesets/worldmap/410.png ../../../app/build/cache/tilesets/worldmap/411.png ../../../app/build/cache/tilesets/worldmap/412.png ../../../app/build/cache/tilesets/worldmap/413.png ../../../app/build/cache/tilesets/worldmap/414.png ../../../app/build/cache/tilesets/worldmap/415.png ../../../app/build/cache/tilesets/worldmap/416.png ../../../app/build/cache/tilesets/worldmap/417.png ../../../app/build/cache/tilesets/worldmap/418.png ../../../app/build/cache/tilesets/worldmap/419.png ../../../app/build/cache/tilesets/worldmap/42.png ../../../app/build/cache/tilesets/worldmap/420.png ../../../app/build/cache/tilesets/worldmap/421.png ../../../app/build/cache/tilesets/worldmap/422.png ../../../app/build/cache/tilesets/worldmap/423.png ../../../app/build/cache/tilesets/worldmap/424.png ../../../app/build/cache/tilesets/worldmap/425.png ../../../app/build/cache/tilesets/worldmap/426.png ../../../app/build/cache/tilesets/worldmap/427.png ../../../app/build/cache/tilesets/worldmap/428.png ../../../app/build/cache/tilesets/worldmap/429.png ../../../app/build/cache/tilesets/worldmap/43.png ../../../app/build/cache/tilesets/worldmap/430.png ../../../app/build/cache/tilesets/worldmap/431.png ../../../app/build/cache/tilesets/worldmap/432.png ../../../app/build/cache/tilesets/worldmap/433.png ../../../app/build/cache/tilesets/worldmap/434.png ../../../app/build/cache/tilesets/worldmap/435.png ../../../app/build/cache/tilesets/worldmap/436.png ../../../app/build/cache/tilesets/worldmap/437.png ../../../app/build/cache/tilesets/worldmap/438.png ../../../app/build/cache/tilesets/worldmap/439.png ../../../app/build/cache/tilesets/worldmap/44.png ../../../app/build/cache/tilesets/worldmap/440.png ../../../app/build/cache/tilesets/worldmap/441.png ../../../app/build/cache/tilesets/worldmap/442.png ../../../app/build/cache/tilesets/worldmap/443.png ../../../app/build/cache/tilesets/worldmap/444.png ../../../app/build/cache/tilesets/worldmap/445.png ../../../app/build/cache/tilesets/worldmap/446.png ../../../app/build/cache/tilesets/worldmap/447.png ../../../app/build/cache/tilesets/worldmap/448.png ../../../app/build/cache/tilesets/worldmap/449.png ../../../app/build/cache/tilesets/worldmap/45.png ../../../app/build/cache/tilesets/worldmap/450.png ../../../app/build/cache/tilesets/worldmap/451.png ../../../app/build/cache/tilesets/worldmap/452.png ../../../app/build/cache/tilesets/worldmap/453.png ../../../app/build/cache/tilesets/worldmap/454.png ../../../app/build/cache/tilesets/worldmap/455.png ../../../app/build/cache/tilesets/worldmap/456.png ../../../app/build/cache/tilesets/worldmap/457.png ../../../app/build/cache/tilesets/worldmap/458.png ../../../app/build/cache/tilesets/worldmap/459.png ../../../app/build/cache/tilesets/worldmap/46.png ../../../app/build/cache/tilesets/worldmap/460.png ../../../app/build/cache/tilesets/worldmap/461.png ../../../app/build/cache/tilesets/worldmap/462.png ../../../app/build/cache/tilesets/worldmap/463.png ../../../app/build/cache/tilesets/worldmap/464.png ../../../app/build/cache/tilesets/worldmap/465.png ../../../app/build/cache/tilesets/worldmap/466.png ../../../app/build/cache/tilesets/worldmap/467.png ../../../app/build/cache/tilesets/worldmap/468.png ../../../app/build/cache/tilesets/worldmap/469.png ../../../app/build/cache/tilesets/worldmap/47.png ../../../app/build/cache/tilesets/worldmap/470.png ../../../app/build/cache/tilesets/worldmap/471.png ../../../app/build/cache/tilesets/worldmap/472.png ../../../app/build/cache/tilesets/worldmap/473.png ../../../app/build/cache/tilesets/worldmap/474.png ../../../app/build/cache/tilesets/worldmap/475.png ../../../app/build/cache/tilesets/worldmap/476.png ../../../app/build/cache/tilesets/worldmap/477.png ../../../app/build/cache/tilesets/worldmap/478.png ../../../app/build/cache/tilesets/worldmap/479.png ../../../app/build/cache/tilesets/worldmap/48.png ../../../app/build/cache/tilesets/worldmap/480.png ../../../app/build/cache/tilesets/worldmap/481.png ../../../app/build/cache/tilesets/worldmap/482.png ../../../app/build/cache/tilesets/worldmap/483.png ../../../app/build/cache/tilesets/worldmap/484.png ../../../app/build/cache/tilesets/worldmap/485.png ../../../app/build/cache/tilesets/worldmap/486.png ../../../app/build/cache/tilesets/worldmap/487.png ../../../app/build/cache/tilesets/worldmap/488.png ../../../app/build/cache/tilesets/worldmap/489.png ../../../app/build/cache/tilesets/worldmap/49.png ../../../app/build/cache/tilesets/worldmap/490.png ../../../app/build/cache/tilesets/worldmap/491.png ../../../app/build/cache/tilesets/worldmap/492.png ../../../app/build/cache/tilesets/worldmap/493.png ../../../app/build/cache/tilesets/worldmap/494.png ../../../app/build/cache/tilesets/worldmap/495.png ../../../app/build/cache/tilesets/worldmap/496.png ../../../app/build/cache/tilesets/worldmap/497.png ../../../app/build/cache/tilesets/worldmap/498.png ../../../app/build/cache/tilesets/worldmap/499.png ../../../app/build/cache/tilesets/worldmap/5.png ../../../app/build/cache/tilesets/worldmap/50.png ../../../app/build/cache/tilesets/worldmap/500.png ../../../app/build/cache/tilesets/worldmap/501.png ../../../app/build/cache/tilesets/worldmap/502.png ../../../app/build/cache/tilesets/worldmap/503.png ../../../app/build/cache/tilesets/worldmap/504.png ../../../app/build/cache/tilesets/worldmap/505.png ../../../app/build/cache/tilesets/worldmap/506.png ../../../app/build/cache/tilesets/worldmap/507.png ../../../app/build/cache/tilesets/worldmap/508.png ../../../app/build/cache/tilesets/worldmap/509.png ../../../app/build/cache/tilesets/worldmap/51.png ../../../app/build/cache/tilesets/worldmap/510.png ../../../app/build/cache/tilesets/worldmap/511.png ../../../app/build/cache/tilesets/worldmap/512.png ../../../app/build/cache/tilesets/worldmap/513.png ../../../app/build/cache/tilesets/worldmap/514.png ../../../app/build/cache/tilesets/worldmap/515.png ../../../app/build/cache/tilesets/worldmap/516.png ../../../app/build/cache/tilesets/worldmap/517.png ../../../app/build/cache/tilesets/worldmap/518.png ../../../app/build/cache/tilesets/worldmap/519.png ../../../app/build/cache/tilesets/worldmap/52.png ../../../app/build/cache/tilesets/worldmap/520.png ../../../app/build/cache/tilesets/worldmap/521.png ../../../app/build/cache/tilesets/worldmap/522.png ../../../app/build/cache/tilesets/worldmap/523.png ../../../app/build/cache/tilesets/worldmap/524.png ../../../app/build/cache/tilesets/worldmap/525.png ../../../app/build/cache/tilesets/worldmap/526.png ../../../app/build/cache/tilesets/worldmap/527.png ../../../app/build/cache/tilesets/worldmap/528.png ../../../app/build/cache/tilesets/worldmap/529.png ../../../app/build/cache/tilesets/worldmap/53.png ../../../app/build/cache/tilesets/worldmap/530.png ../../../app/build/cache/tilesets/worldmap/531.png ../../../app/build/cache/tilesets/worldmap/532.png ../../../app/build/cache/tilesets/worldmap/533.png ../../../app/build/cache/tilesets/worldmap/534.png ../../../app/build/cache/tilesets/worldmap/535.png ../../../app/build/cache/tilesets/worldmap/536.png ../../../app/build/cache/tilesets/worldmap/537.png ../../../app/build/cache/tilesets/worldmap/538.png ../../../app/build/cache/tilesets/worldmap/539.png ../../../app/build/cache/tilesets/worldmap/54.png ../../../app/build/cache/tilesets/worldmap/540.png ../../../app/build/cache/tilesets/worldmap/541.png ../../../app/build/cache/tilesets/worldmap/542.png ../../../app/build/cache/tilesets/worldmap/543.png ../../../app/build/cache/tilesets/worldmap/544.png ../../../app/build/cache/tilesets/worldmap/545.png ../../../app/build/cache/tilesets/worldmap/546.png ../../../app/build/cache/tilesets/worldmap/547.png ../../../app/build/cache/tilesets/worldmap/548.png ../../../app/build/cache/tilesets/worldmap/549.png ../../../app/build/cache/tilesets/worldmap/55.png ../../../app/build/cache/tilesets/worldmap/550.png ../../../app/build/cache/tilesets/worldmap/551.png ../../../app/build/cache/tilesets/worldmap/552.png ../../../app/build/cache/tilesets/worldmap/553.png ../../../app/build/cache/tilesets/worldmap/554.png ../../../app/build/cache/tilesets/worldmap/555.png ../../../app/build/cache/tilesets/worldmap/556.png ../../../app/build/cache/tilesets/worldmap/557.png ../../../app/build/cache/tilesets/worldmap/558.png ../../../app/build/cache/tilesets/worldmap/559.png ../../../app/build/cache/tilesets/worldmap/56.png ../../../app/build/cache/tilesets/worldmap/560.png ../../../app/build/cache/tilesets/worldmap/561.png ../../../app/build/cache/tilesets/worldmap/562.png ../../../app/build/cache/tilesets/worldmap/563.png ../../../app/build/cache/tilesets/worldmap/564.png ../../../app/build/cache/tilesets/worldmap/565.png ../../../app/build/cache/tilesets/worldmap/566.png ../../../app/build/cache/tilesets/worldmap/567.png ../../../app/build/cache/tilesets/worldmap/568.png ../../../app/build/cache/tilesets/worldmap/569.png ../../../app/build/cache/tilesets/worldmap/57.png ../../../app/build/cache/tilesets/worldmap/570.png ../../../app/build/cache/tilesets/worldmap/571.png ../../../app/build/cache/tilesets/worldmap/572.png ../../../app/build/cache/tilesets/worldmap/573.png ../../../app/build/cache/tilesets/worldmap/574.png ../../../app/build/cache/tilesets/worldmap/575.png ../../../app/build/cache/tilesets/worldmap/576.png ../../../app/build/cache/tilesets/worldmap/577.png ../../../app/build/cache/tilesets/worldmap/578.png ../../../app/build/cache/tilesets/worldmap/579.png ../../../app/build/cache/tilesets/worldmap/58.png ../../../app/build/cache/tilesets/worldmap/580.png ../../../app/build/cache/tilesets/worldmap/581.png ../../../app/build/cache/tilesets/worldmap/582.png ../../../app/build/cache/tilesets/worldmap/583.png ../../../app/build/cache/tilesets/worldmap/584.png ../../../app/build/cache/tilesets/worldmap/585.png ../../../app/build/cache/tilesets/worldmap/586.png ../../../app/build/cache/tilesets/worldmap/587.png ../../../app/build/cache/tilesets/worldmap/588.png ../../../app/build/cache/tilesets/worldmap/589.png ../../../app/build/cache/tilesets/worldmap/59.png ../../../app/build/cache/tilesets/worldmap/590.png ../../../app/build/cache/tilesets/worldmap/591.png ../../../app/build/cache/tilesets/worldmap/592.png ../../../app/build/cache/tilesets/worldmap/593.png ../../../app/build/cache/tilesets/worldmap/594.png ../../../app/build/cache/tilesets/worldmap/595.png ../../../app/build/cache/tilesets/worldmap/596.png ../../../app/build/cache/tilesets/worldmap/597.png ../../../app/build/cache/tilesets/worldmap/598.png ../../../app/build/cache/tilesets/worldmap/599.png ../../../app/build/cache/tilesets/worldmap/6.png ../../../app/build/cache/tilesets/worldmap/60.png ../../../app/build/cache/tilesets/worldmap/600.png ../../../app/build/cache/tilesets/worldmap/601.png ../../../app/build/cache/tilesets/worldmap/602.png ../../../app/build/cache/tilesets/worldmap/603.png ../../../app/build/cache/tilesets/worldmap/604.png ../../../app/build/cache/tilesets/worldmap/605.png ../../../app/build/cache/tilesets/worldmap/606.png ../../../app/build/cache/tilesets/worldmap/607.png ../../../app/build/cache/tilesets/worldmap/608.png ../../../app/build/cache/tilesets/worldmap/609.png ../../../app/build/cache/tilesets/worldmap/61.png ../../../app/build/cache/tilesets/worldmap/610.png ../../../app/build/cache/tilesets/worldmap/611.png ../../../app/build/cache/tilesets/worldmap/612.png ../../../app/build/cache/tilesets/worldmap/613.png ../../../app/build/cache/tilesets/worldmap/614.png ../../../app/build/cache/tilesets/worldmap/615.png ../../../app/build/cache/tilesets/worldmap/616.png ../../../app/build/cache/tilesets/worldmap/617.png ../../../app/build/cache/tilesets/worldmap/618.png ../../../app/build/cache/tilesets/worldmap/619.png ../../../app/build/cache/tilesets/worldmap/62.png ../../../app/build/cache/tilesets/worldmap/620.png ../../../app/build/cache/tilesets/worldmap/621.png ../../../app/build/cache/tilesets/worldmap/622.png ../../../app/build/cache/tilesets/worldmap/623.png ../../../app/build/cache/tilesets/worldmap/624.png ../../../app/build/cache/tilesets/worldmap/625.png ../../../app/build/cache/tilesets/worldmap/626.png ../../../app/build/cache/tilesets/worldmap/627.png ../../../app/build/cache/tilesets/worldmap/628.png ../../../app/build/cache/tilesets/worldmap/629.png ../../../app/build/cache/tilesets/worldmap/63.png ../../../app/build/cache/tilesets/worldmap/630.png ../../../app/build/cache/tilesets/worldmap/631.png ../../../app/build/cache/tilesets/worldmap/632.png ../../../app/build/cache/tilesets/worldmap/633.png ../../../app/build/cache/tilesets/worldmap/634.png ../../../app/build/cache/tilesets/worldmap/635.png ../../../app/build/cache/tilesets/worldmap/636.png ../../../app/build/cache/tilesets/worldmap/637.png ../../../app/build/cache/tilesets/worldmap/638.png ../../../app/build/cache/tilesets/worldmap/639.png ../../../app/build/cache/tilesets/worldmap/64.png ../../../app/build/cache/tilesets/worldmap/640.png ../../../app/build/cache/tilesets/worldmap/641.png ../../../app/build/cache/tilesets/worldmap/642.png ../../../app/build/cache/tilesets/worldmap/643.png ../../../app/build/cache/tilesets/worldmap/644.png ../../../app/build/cache/tilesets/worldmap/645.png ../../../app/build/cache/tilesets/worldmap/646.png ../../../app/build/cache/tilesets/worldmap/647.png ../../../app/build/cache/tilesets/worldmap/648.png ../../../app/build/cache/tilesets/worldmap/649.png ../../../app/build/cache/tilesets/worldmap/65.png ../../../app/build/cache/tilesets/worldmap/650.png ../../../app/build/cache/tilesets/worldmap/651.png ../../../app/build/cache/tilesets/worldmap/652.png ../../../app/build/cache/tilesets/worldmap/653.png ../../../app/build/cache/tilesets/worldmap/654.png ../../../app/build/cache/tilesets/worldmap/655.png ../../../app/build/cache/tilesets/worldmap/656.png ../../../app/build/cache/tilesets/worldmap/657.png ../../../app/build/cache/tilesets/worldmap/658.png ../../../app/build/cache/tilesets/worldmap/659.png ../../../app/build/cache/tilesets/worldmap/66.png ../../../app/build/cache/tilesets/worldmap/660.png ../../../app/build/cache/tilesets/worldmap/661.png ../../../app/build/cache/tilesets/worldmap/662.png ../../../app/build/cache/tilesets/worldmap/663.png ../../../app/build/cache/tilesets/worldmap/664.png ../../../app/build/cache/tilesets/worldmap/665.png ../../../app/build/cache/tilesets/worldmap/666.png ../../../app/build/cache/tilesets/worldmap/667.png ../../../app/build/cache/tilesets/worldmap/668.png ../../../app/build/cache/tilesets/worldmap/669.png ../../../app/build/cache/tilesets/worldmap/67.png ../../../app/build/cache/tilesets/worldmap/670.png ../../../app/build/cache/tilesets/worldmap/671.png ../../../app/build/cache/tilesets/worldmap/672.png ../../../app/build/cache/tilesets/worldmap/673.png ../../../app/build/cache/tilesets/worldmap/674.png ../../../app/build/cache/tilesets/worldmap/675.png ../../../app/build/cache/tilesets/worldmap/676.png ../../../app/build/cache/tilesets/worldmap/677.png ../../../app/build/cache/tilesets/worldmap/678.png ../../../app/build/cache/tilesets/worldmap/679.png ../../../app/build/cache/tilesets/worldmap/68.png ../../../app/build/cache/tilesets/worldmap/680.png ../../../app/build/cache/tilesets/worldmap/681.png ../../../app/build/cache/tilesets/worldmap/682.png ../../../app/build/cache/tilesets/worldmap/683.png ../../../app/build/cache/tilesets/worldmap/684.png ../../../app/build/cache/tilesets/worldmap/685.png ../../../app/build/cache/tilesets/worldmap/686.png ../../../app/build/cache/tilesets/worldmap/687.png ../../../app/build/cache/tilesets/worldmap/688.png ../../../app/build/cache/tilesets/worldmap/689.png ../../../app/build/cache/tilesets/worldmap/69.png ../../../app/build/cache/tilesets/worldmap/690.png ../../../app/build/cache/tilesets/worldmap/691.png ../../../app/build/cache/tilesets/worldmap/692.png ../../../app/build/cache/tilesets/worldmap/693.png ../../../app/build/cache/tilesets/worldmap/694.png ../../../app/build/cache/tilesets/worldmap/695.png ../../../app/build/cache/tilesets/worldmap/696.png ../../../app/build/cache/tilesets/worldmap/697.png ../../../app/build/cache/tilesets/worldmap/698.png ../../../app/build/cache/tilesets/worldmap/699.png ../../../app/build/cache/tilesets/worldmap/7.png ../../../app/build/cache/tilesets/worldmap/70.png ../../../app/build/cache/tilesets/worldmap/700.png ../../../app/build/cache/tilesets/worldmap/701.png ../../../app/build/cache/tilesets/worldmap/702.png ../../../app/build/cache/tilesets/worldmap/703.png ../../../app/build/cache/tilesets/worldmap/704.png ../../../app/build/cache/tilesets/worldmap/705.png ../../../app/build/cache/tilesets/worldmap/706.png ../../../app/build/cache/tilesets/worldmap/707.png ../../../app/build/cache/tilesets/worldmap/708.png ../../../app/build/cache/tilesets/worldmap/709.png ../../../app/build/cache/tilesets/worldmap/71.png ../../../app/build/cache/tilesets/worldmap/710.png ../../../app/build/cache/tilesets/worldmap/711.png ../../../app/build/cache/tilesets/worldmap/712.png ../../../app/build/cache/tilesets/worldmap/713.png ../../../app/build/cache/tilesets/worldmap/714.png ../../../app/build/cache/tilesets/worldmap/715.png ../../../app/build/cache/tilesets/worldmap/716.png ../../../app/build/cache/tilesets/worldmap/717.png ../../../app/build/cache/tilesets/worldmap/718.png ../../../app/build/cache/tilesets/worldmap/719.png ../../../app/build/cache/tilesets/worldmap/72.png ../../../app/build/cache/tilesets/worldmap/720.png ../../../app/build/cache/tilesets/worldmap/721.png ../../../app/build/cache/tilesets/worldmap/722.png ../../../app/build/cache/tilesets/worldmap/723.png ../../../app/build/cache/tilesets/worldmap/724.png ../../../app/build/cache/tilesets/worldmap/725.png ../../../app/build/cache/tilesets/worldmap/726.png ../../../app/build/cache/tilesets/worldmap/727.png ../../../app/build/cache/tilesets/worldmap/728.png ../../../app/build/cache/tilesets/worldmap/729.png ../../../app/build/cache/tilesets/worldmap/73.png ../../../app/build/cache/tilesets/worldmap/730.png ../../../app/build/cache/tilesets/worldmap/731.png ../../../app/build/cache/tilesets/worldmap/732.png ../../../app/build/cache/tilesets/worldmap/733.png ../../../app/build/cache/tilesets/worldmap/734.png ../../../app/build/cache/tilesets/worldmap/735.png ../../../app/build/cache/tilesets/worldmap/736.png ../../../app/build/cache/tilesets/worldmap/737.png ../../../app/build/cache/tilesets/worldmap/738.png ../../../app/build/cache/tilesets/worldmap/739.png ../../../app/build/cache/tilesets/worldmap/74.png ../../../app/build/cache/tilesets/worldmap/740.png ../../../app/build/cache/tilesets/worldmap/741.png ../../../app/build/cache/tilesets/worldmap/742.png ../../../app/build/cache/tilesets/worldmap/743.png ../../../app/build/cache/tilesets/worldmap/744.png ../../../app/build/cache/tilesets/worldmap/745.png ../../../app/build/cache/tilesets/worldmap/746.png ../../../app/build/cache/tilesets/worldmap/747.png ../../../app/build/cache/tilesets/worldmap/748.png ../../../app/build/cache/tilesets/worldmap/749.png ../../../app/build/cache/tilesets/worldmap/75.png ../../../app/build/cache/tilesets/worldmap/750.png ../../../app/build/cache/tilesets/worldmap/751.png ../../../app/build/cache/tilesets/worldmap/752.png ../../../app/build/cache/tilesets/worldmap/753.png ../../../app/build/cache/tilesets/worldmap/754.png ../../../app/build/cache/tilesets/worldmap/755.png ../../../app/build/cache/tilesets/worldmap/756.png ../../../app/build/cache/tilesets/worldmap/757.png ../../../app/build/cache/tilesets/worldmap/758.png ../../../app/build/cache/tilesets/worldmap/759.png ../../../app/build/cache/tilesets/worldmap/76.png ../../../app/build/cache/tilesets/worldmap/760.png ../../../app/build/cache/tilesets/worldmap/761.png ../../../app/build/cache/tilesets/worldmap/762.png ../../../app/build/cache/tilesets/worldmap/763.png ../../../app/build/cache/tilesets/worldmap/764.png ../../../app/build/cache/tilesets/worldmap/765.png ../../../app/build/cache/tilesets/worldmap/766.png ../../../app/build/cache/tilesets/worldmap/767.png ../../../app/build/cache/tilesets/worldmap/768.png ../../../app/build/cache/tilesets/worldmap/769.png ../../../app/build/cache/tilesets/worldmap/77.png ../../../app/build/cache/tilesets/worldmap/770.png ../../../app/build/cache/tilesets/worldmap/771.png ../../../app/build/cache/tilesets/worldmap/772.png ../../../app/build/cache/tilesets/worldmap/773.png ../../../app/build/cache/tilesets/worldmap/774.png ../../../app/build/cache/tilesets/worldmap/775.png ../../../app/build/cache/tilesets/worldmap/776.png ../../../app/build/cache/tilesets/worldmap/777.png ../../../app/build/cache/tilesets/worldmap/778.png ../../../app/build/cache/tilesets/worldmap/779.png ../../../app/build/cache/tilesets/worldmap/78.png ../../../app/build/cache/tilesets/worldmap/780.png ../../../app/build/cache/tilesets/worldmap/781.png ../../../app/build/cache/tilesets/worldmap/782.png ../../../app/build/cache/tilesets/worldmap/783.png ../../../app/build/cache/tilesets/worldmap/784.png ../../../app/build/cache/tilesets/worldmap/785.png ../../../app/build/cache/tilesets/worldmap/786.png ../../../app/build/cache/tilesets/worldmap/787.png ../../../app/build/cache/tilesets/worldmap/788.png ../../../app/build/cache/tilesets/worldmap/789.png ../../../app/build/cache/tilesets/worldmap/79.png ../../../app/build/cache/tilesets/worldmap/790.png ../../../app/build/cache/tilesets/worldmap/791.png ../../../app/build/cache/tilesets/worldmap/792.png ../../../app/build/cache/tilesets/worldmap/793.png ../../../app/build/cache/tilesets/worldmap/794.png ../../../app/build/cache/tilesets/worldmap/795.png ../../../app/build/cache/tilesets/worldmap/796.png ../../../app/build/cache/tilesets/worldmap/797.png ../../../app/build/cache/tilesets/worldmap/798.png ../../../app/build/cache/tilesets/worldmap/799.png ../../../app/build/cache/tilesets/worldmap/8.png ../../../app/build/cache/tilesets/worldmap/80.png ../../../app/build/cache/tilesets/worldmap/800.png ../../../app/build/cache/tilesets/worldmap/801.png ../../../app/build/cache/tilesets/worldmap/802.png ../../../app/build/cache/tilesets/worldmap/803.png ../../../app/build/cache/tilesets/worldmap/804.png ../../../app/build/cache/tilesets/worldmap/805.png ../../../app/build/cache/tilesets/worldmap/806.png ../../../app/build/cache/tilesets/worldmap/807.png ../../../app/build/cache/tilesets/worldmap/808.png ../../../app/build/cache/tilesets/worldmap/809.png ../../../app/build/cache/tilesets/worldmap/81.png ../../../app/build/cache/tilesets/worldmap/810.png ../../../app/build/cache/tilesets/worldmap/811.png ../../../app/build/cache/tilesets/worldmap/812.png ../../../app/build/cache/tilesets/worldmap/813.png ../../../app/build/cache/tilesets/worldmap/814.png ../../../app/build/cache/tilesets/worldmap/815.png ../../../app/build/cache/tilesets/worldmap/816.png ../../../app/build/cache/tilesets/worldmap/817.png ../../../app/build/cache/tilesets/worldmap/818.png ../../../app/build/cache/tilesets/worldmap/819.png ../../../app/build/cache/tilesets/worldmap/82.png ../../../app/build/cache/tilesets/worldmap/820.png ../../../app/build/cache/tilesets/worldmap/821.png ../../../app/build/cache/tilesets/worldmap/822.png ../../../app/build/cache/tilesets/worldmap/823.png ../../../app/build/cache/tilesets/worldmap/824.png ../../../app/build/cache/tilesets/worldmap/825.png ../../../app/build/cache/tilesets/worldmap/826.png ../../../app/build/cache/tilesets/worldmap/827.png ../../../app/build/cache/tilesets/worldmap/828.png ../../../app/build/cache/tilesets/worldmap/829.png ../../../app/build/cache/tilesets/worldmap/83.png ../../../app/build/cache/tilesets/worldmap/830.png ../../../app/build/cache/tilesets/worldmap/831.png ../../../app/build/cache/tilesets/worldmap/832.png ../../../app/build/cache/tilesets/worldmap/833.png ../../../app/build/cache/tilesets/worldmap/834.png ../../../app/build/cache/tilesets/worldmap/835.png ../../../app/build/cache/tilesets/worldmap/836.png ../../../app/build/cache/tilesets/worldmap/837.png ../../../app/build/cache/tilesets/worldmap/838.png ../../../app/build/cache/tilesets/worldmap/839.png ../../../app/build/cache/tilesets/worldmap/84.png ../../../app/build/cache/tilesets/worldmap/840.png ../../../app/build/cache/tilesets/worldmap/841.png ../../../app/build/cache/tilesets/worldmap/842.png ../../../app/build/cache/tilesets/worldmap/843.png ../../../app/build/cache/tilesets/worldmap/844.png ../../../app/build/cache/tilesets/worldmap/845.png ../../../app/build/cache/tilesets/worldmap/846.png ../../../app/build/cache/tilesets/worldmap/847.png ../../../app/build/cache/tilesets/worldmap/848.png ../../../app/build/cache/tilesets/worldmap/849.png ../../../app/build/cache/tilesets/worldmap/85.png ../../../app/build/cache/tilesets/worldmap/850.png ../../../app/build/cache/tilesets/worldmap/851.png ../../../app/build/cache/tilesets/worldmap/852.png ../../../app/build/cache/tilesets/worldmap/853.png ../../../app/build/cache/tilesets/worldmap/854.png ../../../app/build/cache/tilesets/worldmap/855.png ../../../app/build/cache/tilesets/worldmap/856.png ../../../app/build/cache/tilesets/worldmap/857.png ../../../app/build/cache/tilesets/worldmap/858.png ../../../app/build/cache/tilesets/worldmap/859.png ../../../app/build/cache/tilesets/worldmap/86.png ../../../app/build/cache/tilesets/worldmap/860.png ../../../app/build/cache/tilesets/worldmap/861.png ../../../app/build/cache/tilesets/worldmap/862.png ../../../app/build/cache/tilesets/worldmap/863.png ../../../app/build/cache/tilesets/worldmap/864.png ../../../app/build/cache/tilesets/worldmap/865.png ../../../app/build/cache/tilesets/worldmap/866.png ../../../app/build/cache/tilesets/worldmap/867.png ../../../app/build/cache/tilesets/worldmap/868.png ../../../app/build/cache/tilesets/worldmap/869.png ../../../app/build/cache/tilesets/worldmap/87.png ../../../app/build/cache/tilesets/worldmap/870.png ../../../app/build/cache/tilesets/worldmap/871.png ../../../app/build/cache/tilesets/worldmap/872.png ../../../app/build/cache/tilesets/worldmap/873.png ../../../app/build/cache/tilesets/worldmap/874.png ../../../app/build/cache/tilesets/worldmap/875.png ../../../app/build/cache/tilesets/worldmap/876.png ../../../app/build/cache/tilesets/worldmap/877.png ../../../app/build/cache/tilesets/worldmap/878.png ../../../app/build/cache/tilesets/worldmap/879.png ../../../app/build/cache/tilesets/worldmap/88.png ../../../app/build/cache/tilesets/worldmap/880.png ../../../app/build/cache/tilesets/worldmap/881.png ../../../app/build/cache/tilesets/worldmap/882.png ../../../app/build/cache/tilesets/worldmap/883.png ../../../app/build/cache/tilesets/worldmap/884.png ../../../app/build/cache/tilesets/worldmap/885.png ../../../app/build/cache/tilesets/worldmap/886.png ../../../app/build/cache/tilesets/worldmap/887.png ../../../app/build/cache/tilesets/worldmap/888.png ../../../app/build/cache/tilesets/worldmap/889.png ../../../app/build/cache/tilesets/worldmap/89.png ../../../app/build/cache/tilesets/worldmap/890.png ../../../app/build/cache/tilesets/worldmap/891.png ../../../app/build/cache/tilesets/worldmap/892.png ../../../app/build/cache/tilesets/worldmap/893.png ../../../app/build/cache/tilesets/worldmap/894.png ../../../app/build/cache/tilesets/worldmap/895.png ../../../app/build/cache/tilesets/worldmap/896.png ../../../app/build/cache/tilesets/worldmap/897.png ../../../app/build/cache/tilesets/worldmap/898.png ../../../app/build/cache/tilesets/worldmap/899.png ../../../app/build/cache/tilesets/worldmap/9.png ../../../app/build/cache/tilesets/worldmap/90.png ../../../app/build/cache/tilesets/worldmap/900.png ../../../app/build/cache/tilesets/worldmap/901.png ../../../app/build/cache/tilesets/worldmap/902.png ../../../app/build/cache/tilesets/worldmap/903.png ../../../app/build/cache/tilesets/worldmap/904.png ../../../app/build/cache/tilesets/worldmap/905.png ../../../app/build/cache/tilesets/worldmap/906.png ../../../app/build/cache/tilesets/worldmap/907.png ../../../app/build/cache/tilesets/worldmap/908.png ../../../app/build/cache/tilesets/worldmap/909.png ../../../app/build/cache/tilesets/worldmap/91.png ../../../app/build/cache/tilesets/worldmap/910.png ../../../app/build/cache/tilesets/worldmap/911.png ../../../app/build/cache/tilesets/worldmap/912.png ../../../app/build/cache/tilesets/worldmap/913.png ../../../app/build/cache/tilesets/worldmap/914.png ../../../app/build/cache/tilesets/worldmap/915.png ../../../app/build/cache/tilesets/worldmap/916.png ../../../app/build/cache/tilesets/worldmap/917.png ../../../app/build/cache/tilesets/worldmap/918.png ../../../app/build/cache/tilesets/worldmap/919.png ../../../app/build/cache/tilesets/worldmap/92.png ../../../app/build/cache/tilesets/worldmap/920.png ../../../app/build/cache/tilesets/worldmap/921.png ../../../app/build/cache/tilesets/worldmap/922.png ../../../app/build/cache/tilesets/worldmap/923.png ../../../app/build/cache/tilesets/worldmap/924.png ../../../app/build/cache/tilesets/worldmap/925.png ../../../app/build/cache/tilesets/worldmap/926.png ../../../app/build/cache/tilesets/worldmap/927.png ../../../app/build/cache/tilesets/worldmap/928.png ../../../app/build/cache/tilesets/worldmap/929.png ../../../app/build/cache/tilesets/worldmap/93.png ../../../app/build/cache/tilesets/worldmap/930.png ../../../app/build/cache/tilesets/worldmap/931.png ../../../app/build/cache/tilesets/worldmap/932.png ../../../app/build/cache/tilesets/worldmap/933.png ../../../app/build/cache/tilesets/worldmap/934.png ../../../app/build/cache/tilesets/worldmap/935.png ../../../app/build/cache/tilesets/worldmap/936.png ../../../app/build/cache/tilesets/worldmap/937.png ../../../app/build/cache/tilesets/worldmap/938.png ../../../app/build/cache/tilesets/worldmap/939.png ../../../app/build/cache/tilesets/worldmap/94.png ../../../app/build/cache/tilesets/worldmap/940.png ../../../app/build/cache/tilesets/worldmap/941.png ../../../app/build/cache/tilesets/worldmap/942.png ../../../app/build/cache/tilesets/worldmap/943.png ../../../app/build/cache/tilesets/worldmap/944.png ../../../app/build/cache/tilesets/worldmap/945.png ../../../app/build/cache/tilesets/worldmap/946.png ../../../app/build/cache/tilesets/worldmap/947.png ../../../app/build/cache/tilesets/worldmap/948.png ../../../app/build/cache/tilesets/worldmap/949.png ../../../app/build/cache/tilesets/worldmap/95.png ../../../app/build/cache/tilesets/worldmap/950.png ../../../app/build/cache/tilesets/worldmap/951.png ../../../app/build/cache/tilesets/worldmap/952.png ../../../app/build/cache/tilesets/worldmap/953.png ../../../app/build/cache/tilesets/worldmap/954.png ../../../app/build/cache/tilesets/worldmap/955.png ../../../app/build/cache/tilesets/worldmap/956.png ../../../app/build/cache/tilesets/worldmap/957.png ../../../app/build/cache/tilesets/worldmap/958.png ../../../app/build/cache/tilesets/worldmap/959.png ../../../app/build/cache/tilesets/worldmap/96.png ../../../app/build/cache/tilesets/worldmap/960.png ../../../app/build/cache/tilesets/worldmap/961.png ../../../app/build/cache/tilesets/worldmap/962.png ../../../app/build/cache/tilesets/worldmap/963.png ../../../app/build/cache/tilesets/worldmap/964.png ../../../app/build/cache/tilesets/worldmap/965.png ../../../app/build/cache/tilesets/worldmap/966.png ../../../app/build/cache/tilesets/worldmap/967.png ../../../app/build/cache/tilesets/worldmap/968.png ../../../app/build/cache/tilesets/worldmap/969.png ../../../app/build/cache/tilesets/worldmap/97.png ../../../app/build/cache/tilesets/worldmap/970.png ../../../app/build/cache/tilesets/worldmap/971.png ../../../app/build/cache/tilesets/worldmap/972.png ../../../app/build/cache/tilesets/worldmap/973.png ../../../app/build/cache/tilesets/worldmap/974.png ../../../app/build/cache/tilesets/worldmap/975.png ../../../app/build/cache/tilesets/worldmap/976.png ../../../app/build/cache/tilesets/worldmap/977.png ../../../app/build/cache/tilesets/worldmap/978.png ../../../app/build/cache/tilesets/worldmap/979.png ../../../app/build/cache/tilesets/worldmap/98.png ../../../app/build/cache/tilesets/worldmap/980.png ../../../app/build/cache/tilesets/worldmap/981.png ../../../app/build/cache/tilesets/worldmap/982.png ../../../app/build/cache/tilesets/worldmap/983.png ../../../app/build/cache/tilesets/worldmap/984.png ../../../app/build/cache/tilesets/worldmap/985.png ../../../app/build/cache/tilesets/worldmap/986.png ../../../app/build/cache/tilesets/worldmap/987.png ../../../app/build/cache/tilesets/worldmap/988.png ../../../app/build/cache/tilesets/worldmap/989.png ../../../app/build/cache/tilesets/worldmap/99.png ../../../app/build/cache/tilesets/worldmap/990.png ../../../app/build/cache/tilesets/worldmap/991.png ../../../app/build/cache/tilesets/worldmap/992.png ../../../app/build/cache/tilesets/worldmap/993.png ../../../app/build/cache/tilesets/worldmap/994.png ../../../app/build/cache/tilesets/worldmap/995.png ../../../app/build/cache/tilesets/worldmap/996.png ../../../app/build/cache/tilesets/worldmap/997.png ../../../app/build/cache/tilesets/worldmap/998.png ../../../app/build/cache/tilesets/worldmap/999.png pivotPoint 0,0 spriteScale 1 scale9Enabled scale9Borders 2,2,4,4 scale9Paddings 2,2,4,4 scale9FromFile fileList ../../../app/build/cache/tilesets/worldmap ignoreFileList replaceList ignoredWarnings commonDivisorX 1 commonDivisorY 1 packNormalMaps autodetectNormalMaps normalMapFilter normalMapSuffix normalMapSheetFileName exporterProperties ================================================ FILE: copyrighted/textures/all/worldmap.tsx ================================================ ================================================ FILE: copyrighted/textures/rse/creatures.json ================================================ {"frames": { "egg-manaphy": { "frame": {"x":1948,"y":900,"w":14,"h":17}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":27,"y":34,"w":14,"h":17}, "sourceSize": {"w":68,"h":56} }, "egg": { "frame": {"x":1949,"y":790,"w":15,"h":16}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":27,"y":38,"w":15,"h":16}, "sourceSize": {"w":68,"h":56} }, "mega": { "frame": {"x":1624,"y":798,"w":18,"h":18}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":43,"y":37,"w":18,"h":18}, "sourceSize": {"w":68,"h":56} }, "regular/abomasnow-mega": { "frame": {"x":1644,"y":50,"w":29,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":27,"w":29,"h":29}, "sourceSize": {"w":68,"h":56} }, "regular/abomasnow": { "frame": {"x":133,"y":110,"w":38,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":23,"w":38,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/abra": { "frame": {"x":804,"y":708,"w":25,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":32,"w":25,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/absol-mega": { "frame": {"x":804,"y":733,"w":28,"h":28}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":26,"w":28,"h":28}, "sourceSize": {"w":68,"h":56} }, "regular/absol": { "frame": {"x":187,"y":269,"w":36,"h":37}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":16,"w":36,"h":37}, "sourceSize": {"w":68,"h":56} }, "regular/accelgor": { "frame": {"x":572,"y":75,"w":35,"h":31}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":24,"w":35,"h":31}, "sourceSize": {"w":68,"h":56} }, "regular/aegislash-blade": { "frame": {"x":775,"y":425,"w":33,"h":37}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":17,"w":33,"h":37}, "sourceSize": {"w":68,"h":56} }, "regular/aegislash": { "frame": {"x":275,"y":308,"w":32,"h":37}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":17,"w":32,"h":37}, "sourceSize": {"w":68,"h":56} }, "regular/aerodactyl-mega": { "frame": {"x":234,"y":625,"w":34,"h":26}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":29,"w":34,"h":26}, "sourceSize": {"w":68,"h":56} }, "regular/aerodactyl": { "frame": {"x":58,"y":229,"w":49,"h":33}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":12,"y":17,"w":49,"h":33}, "sourceSize": {"w":68,"h":56} }, "regular/aggron-mega": { "frame": {"x":557,"y":160,"w":33,"h":28}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":27,"w":33,"h":28}, "sourceSize": {"w":68,"h":56} }, "regular/aggron": { "frame": {"x":51,"y":801,"w":44,"h":35}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":14,"y":18,"w":44,"h":35}, "sourceSize": {"w":68,"h":56} }, "regular/aipom": { "frame": {"x":1444,"y":501,"w":26,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":33,"w":26,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/alakazam-mega": { "frame": {"x":1000,"y":352,"w":32,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":24,"w":32,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alakazam": { "frame": {"x":514,"y":233,"w":38,"h":37}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":12,"y":17,"w":38,"h":37}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-caramel-swirl-berry": { "frame": {"x":1239,"y":414,"w":25,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-caramel-swirl-clover": { "frame": {"x":1368,"y":305,"w":25,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-caramel-swirl-flower": { "frame": {"x":1309,"y":486,"w":25,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-caramel-swirl-love": { "frame": {"x":751,"y":761,"w":25,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-caramel-swirl-plain": { "frame": {"x":850,"y":945,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-caramel-swirl-ribbon": { "frame": {"x":1006,"y":428,"w":27,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":22,"w":27,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-caramel-swirl-star": { "frame": {"x":860,"y":564,"w":25,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-caramel-swirl-strawberry": { "frame": {"x":903,"y":743,"w":25,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-gmax": { "frame": {"x":57,"y":338,"w":34,"h":52}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":2,"w":34,"h":52}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-lemon-cream-berry": { "frame": {"x":906,"y":777,"w":25,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-lemon-cream-clover": { "frame": {"x":921,"y":944,"w":25,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-lemon-cream-flower": { "frame": {"x":933,"y":777,"w":25,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-lemon-cream-love": { "frame": {"x":617,"y":916,"w":25,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-lemon-cream-plain": { "frame": {"x":850,"y":972,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-lemon-cream-ribbon": { "frame": {"x":1200,"y":340,"w":27,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":22,"w":27,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-lemon-cream-star": { "frame": {"x":958,"y":978,"w":25,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-lemon-cream-strawberry": { "frame": {"x":560,"y":1112,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-matcha-cream-berry": { "frame": {"x":955,"y":1012,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-matcha-cream-clover": { "frame": {"x":723,"y":1138,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-matcha-cream-flower": { "frame": {"x":962,"y":1198,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-matcha-cream-love": { "frame": {"x":688,"y":1225,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-matcha-cream-plain": { "frame": {"x":959,"y":669,"w":25,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-matcha-cream-ribbon": { "frame": {"x":1174,"y":453,"w":27,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":22,"w":27,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-matcha-cream-star": { "frame": {"x":960,"y":703,"w":25,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-matcha-cream-strawberry": { "frame": {"x":960,"y":737,"w":25,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-mint-cream-berry": { "frame": {"x":960,"y":771,"w":25,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-mint-cream-clover": { "frame": {"x":967,"y":833,"w":25,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-mint-cream-flower": { "frame": {"x":969,"y":867,"w":25,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-mint-cream-love": { "frame": {"x":979,"y":901,"w":25,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-mint-cream-plain": { "frame": {"x":980,"y":935,"w":25,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-mint-cream-ribbon": { "frame": {"x":816,"y":873,"w":27,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":22,"w":27,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-mint-cream-star": { "frame": {"x":985,"y":969,"w":25,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-mint-cream-strawberry": { "frame": {"x":989,"y":1003,"w":25,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-rainbow-swirl-berry": { "frame": {"x":989,"y":1037,"w":25,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-rainbow-swirl-clover": { "frame": {"x":989,"y":1071,"w":25,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-rainbow-swirl-flower": { "frame": {"x":989,"y":1105,"w":25,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-rainbow-swirl-love": { "frame": {"x":989,"y":1139,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-rainbow-swirl-plain": { "frame": {"x":996,"y":1198,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-rainbow-swirl-ribbon": { "frame": {"x":855,"y":1067,"w":27,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":22,"w":27,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-rainbow-swirl-star": { "frame": {"x":1027,"y":1225,"w":25,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-rainbow-swirl-strawberry": { "frame": {"x":1431,"y":229,"w":25,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-ruby-cream-berry": { "frame": {"x":1431,"y":263,"w":25,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-ruby-cream-clover": { "frame": {"x":1433,"y":297,"w":25,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-ruby-cream-flower": { "frame": {"x":1439,"y":331,"w":25,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-ruby-cream-love": { "frame": {"x":1498,"y":327,"w":25,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-ruby-cream-plain": { "frame": {"x":1442,"y":365,"w":25,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-ruby-cream-ribbon": { "frame": {"x":1652,"y":232,"w":27,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":22,"w":27,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-ruby-cream-star": { "frame": {"x":1442,"y":399,"w":25,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-ruby-cream-strawberry": { "frame": {"x":1498,"y":361,"w":25,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-ruby-swirl-berry": { "frame": {"x":1498,"y":395,"w":25,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-ruby-swirl-clover": { "frame": {"x":1659,"y":388,"w":25,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-ruby-swirl-flower": { "frame": {"x":1443,"y":433,"w":25,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-ruby-swirl-love": { "frame": {"x":1470,"y":428,"w":25,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-ruby-swirl-plain": { "frame": {"x":1559,"y":452,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-ruby-swirl-ribbon": { "frame": {"x":1469,"y":360,"w":27,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":22,"w":27,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-ruby-swirl-star": { "frame": {"x":1655,"y":453,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-ruby-swirl-strawberry": { "frame": {"x":1444,"y":467,"w":25,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-salted-cream-berry": { "frame": {"x":1559,"y":479,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-salted-cream-clover": { "frame": {"x":1593,"y":479,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-salted-cream-flower": { "frame": {"x":1627,"y":480,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-salted-cream-love": { "frame": {"x":1661,"y":480,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-salted-cream-plain": { "frame": {"x":1559,"y":506,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-salted-cream-ribbon": { "frame": {"x":1469,"y":394,"w":27,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":22,"w":27,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-salted-cream-star": { "frame": {"x":1593,"y":506,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-salted-cream-strawberry": { "frame": {"x":1627,"y":507,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-vanilla-cream-berry": { "frame": {"x":1661,"y":507,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-vanilla-cream-clover": { "frame": {"x":1686,"y":232,"w":25,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-vanilla-cream-flower": { "frame": {"x":1683,"y":266,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-vanilla-cream-love": { "frame": {"x":1689,"y":453,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-vanilla-cream-plain": { "frame": {"x":1717,"y":329,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-vanilla-cream-ribbon": { "frame": {"x":1593,"y":450,"w":27,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":22,"w":27,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-vanilla-cream-star": { "frame": {"x":1746,"y":262,"w":25,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie-vanilla-cream-strawberry": { "frame": {"x":1724,"y":480,"w":25,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alcremie": { "frame": {"x":1729,"y":514,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/alomomola": { "frame": {"x":993,"y":643,"w":15,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":30,"w":15,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/altaria-mega": { "frame": {"x":644,"y":911,"w":29,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":29,"w":29,"h":25}, "sourceSize": {"w":68,"h":56} }, "regular/altaria": { "frame": {"x":1216,"y":49,"w":38,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":15,"y":18,"w":38,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/amaura": { "frame": {"x":1763,"y":514,"w":19,"h":26}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":28,"w":19,"h":26}, "sourceSize": {"w":68,"h":56} }, "regular/ambipom": { "frame": {"x":1497,"y":429,"w":31,"h":27}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":19,"y":27,"w":31,"h":27}, "sourceSize": {"w":68,"h":56} }, "regular/amoonguss": { "frame": {"x":1627,"y":450,"w":26,"h":28}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":24,"w":26,"h":28}, "sourceSize": {"w":68,"h":56} }, "regular/ampharos-mega": { "frame": {"x":474,"y":557,"w":31,"h":28}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":26,"w":31,"h":28}, "sourceSize": {"w":68,"h":56} }, "regular/ampharos": { "frame": {"x":1185,"y":1175,"w":22,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":27,"w":22,"h":27}, "sourceSize": {"w":68,"h":56} }, "regular/anorith": { "frame": {"x":178,"y":144,"w":24,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":32,"w":24,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/appletun": { "frame": {"x":1466,"y":156,"w":36,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":21,"w":36,"h":33}, "sourceSize": {"w":68,"h":56} }, "regular/applin": { "frame": {"x":1956,"y":644,"w":17,"h":19}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":35,"w":17,"h":19}, "sourceSize": {"w":68,"h":56} }, "regular/araquanid": { "frame": {"x":97,"y":858,"w":36,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":29,"w":36,"h":27}, "sourceSize": {"w":68,"h":56} }, "regular/arbok": { "frame": {"x":1034,"y":352,"w":30,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":21,"w":30,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/arcanine": { "frame": {"x":554,"y":233,"w":39,"h":39}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":16,"w":39,"h":39}, "sourceSize": {"w":68,"h":56} }, "regular/arceus-bug": { "frame": {"x":1256,"y":232,"w":30,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":26,"w":30,"h":29}, "sourceSize": {"w":68,"h":56} }, "regular/arceus-dark": { "frame": {"x":804,"y":763,"w":30,"h":29}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":26,"w":30,"h":29}, "sourceSize": {"w":68,"h":56} }, "regular/arceus-dragon": { "frame": {"x":785,"y":901,"w":30,"h":29}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":26,"w":30,"h":29}, "sourceSize": {"w":68,"h":56} }, "regular/arceus-electric": { "frame": {"x":785,"y":933,"w":30,"h":29}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":26,"w":30,"h":29}, "sourceSize": {"w":68,"h":56} }, "regular/arceus-fairy": { "frame": {"x":835,"y":763,"w":30,"h":29}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":26,"w":30,"h":29}, "sourceSize": {"w":68,"h":56} }, "regular/arceus-fighting": { "frame": {"x":644,"y":938,"w":30,"h":29}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":26,"w":30,"h":29}, "sourceSize": {"w":68,"h":56} }, "regular/arceus-fire": { "frame": {"x":822,"y":1135,"w":30,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":26,"w":30,"h":29}, "sourceSize": {"w":68,"h":56} }, "regular/arceus-flying": { "frame": {"x":959,"y":1166,"w":30,"h":29}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":26,"w":30,"h":29}, "sourceSize": {"w":68,"h":56} }, "regular/arceus-ghost": { "frame": {"x":1492,"y":262,"w":30,"h":29}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":26,"w":30,"h":29}, "sourceSize": {"w":68,"h":56} }, "regular/arceus-grass": { "frame": {"x":1655,"y":293,"w":30,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":26,"w":30,"h":29}, "sourceSize": {"w":68,"h":56} }, "regular/arceus-ground": { "frame": {"x":1558,"y":326,"w":30,"h":29}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":26,"w":30,"h":29}, "sourceSize": {"w":68,"h":56} }, "regular/arceus-ice": { "frame": {"x":1622,"y":357,"w":30,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":26,"w":30,"h":29}, "sourceSize": {"w":68,"h":56} }, "regular/arceus-poison": { "frame": {"x":1654,"y":356,"w":30,"h":29}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":26,"w":30,"h":29}, "sourceSize": {"w":68,"h":56} }, "regular/arceus-psychic": { "frame": {"x":1559,"y":390,"w":30,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":26,"w":30,"h":29}, "sourceSize": {"w":68,"h":56} }, "regular/arceus-rock": { "frame": {"x":1559,"y":421,"w":30,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":26,"w":30,"h":29}, "sourceSize": {"w":68,"h":56} }, "regular/arceus-steel": { "frame": {"x":1655,"y":422,"w":30,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":26,"w":30,"h":29}, "sourceSize": {"w":68,"h":56} }, "regular/arceus-water": { "frame": {"x":1472,"y":493,"w":30,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":26,"w":30,"h":29}, "sourceSize": {"w":68,"h":56} }, "regular/arceus": { "frame": {"x":1713,"y":231,"w":30,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":26,"w":30,"h":29}, "sourceSize": {"w":68,"h":56} }, "regular/archen": { "frame": {"x":1262,"y":1222,"w":23,"h":17}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":37,"w":23,"h":17}, "sourceSize": {"w":68,"h":56} }, "regular/archeops": { "frame": {"x":780,"y":45,"w":38,"h":40}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":15,"y":14,"w":38,"h":40}, "sourceSize": {"w":68,"h":56} }, "regular/arctovish": { "frame": {"x":1323,"y":273,"w":32,"h":30}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":25,"w":32,"h":30}, "sourceSize": {"w":68,"h":56} }, "regular/arctozolt": { "frame": {"x":885,"y":272,"w":28,"h":37}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":17,"w":28,"h":37}, "sourceSize": {"w":68,"h":56} }, "regular/ariados": { "frame": {"x":1952,"y":461,"w":27,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":30,"w":27,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/armaldo": { "frame": {"x":1138,"y":452,"w":34,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":21,"w":34,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/aromatisse": { "frame": {"x":1751,"y":480,"w":24,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":24,"w":24,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/aron": { "frame": {"x":1831,"y":1181,"w":18,"h":14}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":40,"w":18,"h":14}, "sourceSize": {"w":68,"h":56} }, "regular/arrokuda": { "frame": {"x":1773,"y":310,"w":27,"h":17}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":37,"w":27,"h":17}, "sourceSize": {"w":68,"h":56} }, "regular/articuno-galar": { "frame": {"x":50,"y":838,"w":37,"h":45}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":17,"y":9,"w":37,"h":45}, "sourceSize": {"w":68,"h":56} }, "regular/articuno": { "frame": {"x":1450,"y":1,"w":46,"h":48}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":11,"y":6,"w":46,"h":48}, "sourceSize": {"w":68,"h":56} }, "regular/audino-mega": { "frame": {"x":1047,"y":517,"w":24,"h":28}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":26,"w":24,"h":28}, "sourceSize": {"w":68,"h":56} }, "regular/audino": { "frame": {"x":456,"y":852,"w":30,"h":31}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":22,"w":30,"h":31}, "sourceSize": {"w":68,"h":56} }, "regular/aurorus": { "frame": {"x":704,"y":156,"w":34,"h":38}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":16,"w":34,"h":38}, "sourceSize": {"w":68,"h":56} }, "regular/avalugg": { "frame": {"x":595,"y":233,"w":39,"h":27}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":15,"y":28,"w":39,"h":27}, "sourceSize": {"w":68,"h":56} }, "regular/axew": { "frame": {"x":1505,"y":1186,"w":20,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":32,"w":20,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/azelf": { "frame": {"x":652,"y":727,"w":35,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":20,"w":35,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/azumarill": { "frame": {"x":591,"y":356,"w":34,"h":37}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":18,"y":16,"w":34,"h":37}, "sourceSize": {"w":68,"h":56} }, "regular/azurill": { "frame": {"x":1781,"y":637,"w":17,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":33,"w":17,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/bagon": { "frame": {"x":1709,"y":1207,"w":17,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":32,"w":17,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/baltoy": { "frame": {"x":1624,"y":682,"w":18,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":31,"w":18,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/banette-mega": { "frame": {"x":930,"y":743,"w":28,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":24,"w":28,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/banette": { "frame": {"x":1801,"y":592,"w":24,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":33,"w":24,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/barbaracle": { "frame": {"x":274,"y":347,"w":38,"h":33}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":14,"y":22,"w":38,"h":33}, "sourceSize": {"w":68,"h":56} }, "regular/barboach": { "frame": {"x":1215,"y":528,"w":23,"h":15}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":38,"w":23,"h":15}, "sourceSize": {"w":68,"h":56} }, "regular/barraskewda": { "frame": {"x":252,"y":843,"w":38,"h":22}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":15,"y":32,"w":38,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/basculin-blue-striped": { "frame": {"x":1810,"y":542,"w":29,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":31,"w":29,"h":25}, "sourceSize": {"w":68,"h":56} }, "regular/basculin": { "frame": {"x":1751,"y":329,"w":30,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":31,"w":30,"h":25}, "sourceSize": {"w":68,"h":56} }, "regular/bastiodon": { "frame": {"x":1779,"y":390,"w":28,"h":25}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":29,"w":28,"h":25}, "sourceSize": {"w":68,"h":56} }, "regular/bayleef": { "frame": {"x":1786,"y":542,"w":22,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":29,"w":22,"h":25}, "sourceSize": {"w":68,"h":56} }, "regular/beartic": { "frame": {"x":466,"y":154,"w":42,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":14,"y":23,"w":42,"h":33}, "sourceSize": {"w":68,"h":56} }, "regular/beautifly": { "frame": {"x":960,"y":805,"w":27,"h":26}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":29,"w":27,"h":26}, "sourceSize": {"w":68,"h":56} }, "regular/beedrill-mega": { "frame": {"x":834,"y":733,"w":29,"h":28}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":27,"w":29,"h":28}, "sourceSize": {"w":68,"h":56} }, "regular/beedrill": { "frame": {"x":1215,"y":806,"w":27,"h":25}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":28,"w":27,"h":25}, "sourceSize": {"w":68,"h":56} }, "regular/beheeyem": { "frame": {"x":1836,"y":48,"w":26,"h":36}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":17,"w":26,"h":36}, "sourceSize": {"w":68,"h":56} }, "regular/beldum": { "frame": {"x":1523,"y":1094,"w":21,"h":19}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":34,"w":21,"h":19}, "sourceSize": {"w":68,"h":56} }, "regular/bellossom": { "frame": {"x":793,"y":1165,"w":27,"h":30}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":25,"w":27,"h":30}, "sourceSize": {"w":68,"h":56} }, "regular/bellsprout": { "frame": {"x":1600,"y":708,"w":22,"h":17}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":37,"w":22,"h":17}, "sourceSize": {"w":68,"h":56} }, "regular/bergmite": { "frame": {"x":1651,"y":1244,"w":19,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":34,"w":19,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/bewear": { "frame": {"x":699,"y":480,"w":28,"h":34}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":22,"w":28,"h":34}, "sourceSize": {"w":68,"h":56} }, "regular/bibarel": { "frame": {"x":967,"y":643,"w":24,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":30,"w":24,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/bidoof": { "frame": {"x":1767,"y":1191,"w":22,"h":18}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":36,"w":22,"h":18}, "sourceSize": {"w":68,"h":56} }, "regular/binacle": { "frame": {"x":548,"y":918,"w":18,"h":26}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":25,"y":28,"w":18,"h":26}, "sourceSize": {"w":68,"h":56} }, "regular/bisharp": { "frame": {"x":1001,"y":161,"w":28,"h":34}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":21,"w":28,"h":34}, "sourceSize": {"w":68,"h":56} }, "regular/blacephalon": { "frame": {"x":1717,"y":49,"w":35,"h":35}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":17,"w":35,"h":35}, "sourceSize": {"w":68,"h":56} }, "regular/blastoise-gmax": { "frame": {"x":1,"y":876,"w":51,"h":46}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":8,"y":8,"w":51,"h":46}, "sourceSize": {"w":68,"h":56} }, "regular/blastoise-mega": { "frame": {"x":443,"y":785,"w":32,"h":30}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":25,"w":32,"h":30}, "sourceSize": {"w":68,"h":56} }, "regular/blastoise": { "frame": {"x":666,"y":112,"w":36,"h":40}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":15,"y":15,"w":36,"h":40}, "sourceSize": {"w":68,"h":56} }, "regular/blaziken-mega": { "frame": {"x":173,"y":108,"w":34,"h":29}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":17,"y":26,"w":34,"h":29}, "sourceSize": {"w":68,"h":56} }, "regular/blaziken": { "frame": {"x":873,"y":122,"w":36,"h":36}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":18,"w":36,"h":36}, "sourceSize": {"w":68,"h":56} }, "regular/blipbug": { "frame": {"x":1029,"y":119,"w":20,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":27,"w":20,"h":29}, "sourceSize": {"w":68,"h":56} }, "regular/blissey": { "frame": {"x":1873,"y":86,"w":35,"h":35}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":17,"w":35,"h":35}, "sourceSize": {"w":68,"h":56} }, "regular/blitzle": { "frame": {"x":1550,"y":653,"w":19,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":25,"y":30,"w":19,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/boldore": { "frame": {"x":1784,"y":514,"w":26,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":31,"w":26,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/boltund": { "frame": {"x":1946,"y":96,"w":38,"h":31}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":13,"y":25,"w":38,"h":31}, "sourceSize": {"w":68,"h":56} }, "regular/bonsly": { "frame": {"x":1156,"y":1239,"w":14,"h":22}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":27,"y":32,"w":14,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/bouffalant": { "frame": {"x":286,"y":925,"w":42,"h":31}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":9,"y":22,"w":42,"h":31}, "sourceSize": {"w":68,"h":56} }, "regular/bounsweet": { "frame": {"x":1643,"y":1174,"w":18,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":32,"w":18,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/braixen": { "frame": {"x":1397,"y":865,"w":22,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":30,"w":22,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/braviary": { "frame": {"x":405,"y":432,"w":43,"h":40}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":14,"y":13,"w":43,"h":40}, "sourceSize": {"w":68,"h":56} }, "regular/breloom": { "frame": {"x":1723,"y":451,"w":25,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":27,"w":25,"h":27}, "sourceSize": {"w":68,"h":56} }, "regular/brionne": { "frame": {"x":1023,"y":1170,"w":25,"h":26}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":29,"w":25,"h":26}, "sourceSize": {"w":68,"h":56} }, "regular/bronzong": { "frame": {"x":1288,"y":305,"w":38,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":24,"w":38,"h":29}, "sourceSize": {"w":68,"h":56} }, "regular/bronzor": { "frame": {"x":1913,"y":938,"w":15,"h":18}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":36,"w":15,"h":18}, "sourceSize": {"w":68,"h":56} }, "regular/bruxish": { "frame": {"x":1339,"y":1220,"w":23,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":31,"w":23,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/budew": { "frame": {"x":1504,"y":540,"w":14,"h":20}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":27,"y":34,"w":14,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/buizel": { "frame": {"x":1390,"y":1181,"w":23,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":32,"w":23,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/bulbasaur": { "frame": {"x":1473,"y":777,"w":22,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":33,"w":22,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/buneary": { "frame": {"x":1628,"y":609,"w":20,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":25,"y":30,"w":20,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/bunnelby": { "frame": {"x":488,"y":852,"w":18,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":27,"w":18,"h":27}, "sourceSize": {"w":68,"h":56} }, "regular/burmy-sandy": { "frame": {"x":1180,"y":891,"w":17,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":29,"w":17,"h":25}, "sourceSize": {"w":68,"h":56} }, "regular/burmy-trash": { "frame": {"x":1811,"y":329,"w":18,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":29,"w":18,"h":25}, "sourceSize": {"w":68,"h":56} }, "regular/burmy": { "frame": {"x":1908,"y":595,"w":19,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":25,"y":30,"w":19,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/butterfree-gmax": { "frame": {"x":1750,"y":1,"w":48,"h":45}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":12,"y":11,"w":48,"h":45}, "sourceSize": {"w":68,"h":56} }, "regular/butterfree": { "frame": {"x":496,"y":391,"w":43,"h":40}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":15,"y":12,"w":43,"h":40}, "sourceSize": {"w":68,"h":56} }, "regular/buzzwole": { "frame": {"x":553,"y":274,"w":35,"h":41}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":17,"y":13,"w":35,"h":41}, "sourceSize": {"w":68,"h":56} }, "regular/cacnea": { "frame": {"x":1243,"y":512,"w":24,"h":19}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":35,"w":24,"h":19}, "sourceSize": {"w":68,"h":56} }, "regular/cacturne": { "frame": {"x":1018,"y":825,"w":21,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":25,"w":21,"h":29}, "sourceSize": {"w":68,"h":56} }, "regular/calyrex-ice-rider": { "frame": {"x":55,"y":447,"w":39,"h":51}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":5,"w":39,"h":51}, "sourceSize": {"w":68,"h":56} }, "regular/calyrex-shadow-rider": { "frame": {"x":360,"y":50,"w":38,"h":52}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":3,"w":38,"h":52}, "sourceSize": {"w":68,"h":56} }, "regular/calyrex": { "frame": {"x":1111,"y":260,"w":35,"h":38}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":15,"w":35,"h":38}, "sourceSize": {"w":68,"h":56} }, "regular/camerupt-mega": { "frame": {"x":1288,"y":273,"w":33,"h":30}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":26,"w":33,"h":30}, "sourceSize": {"w":68,"h":56} }, "regular/camerupt": { "frame": {"x":1904,"y":192,"w":29,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":30,"w":29,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/carbink": { "frame": {"x":1961,"y":1168,"w":16,"h":15}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":26,"y":39,"w":16,"h":15}, "sourceSize": {"w":68,"h":56} }, "regular/carkol": { "frame": {"x":1839,"y":514,"w":24,"h":26}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":29,"w":24,"h":26}, "sourceSize": {"w":68,"h":56} }, "regular/carnivine": { "frame": {"x":1891,"y":516,"w":29,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":29,"w":29,"h":25}, "sourceSize": {"w":68,"h":56} }, "regular/carracosta": { "frame": {"x":402,"y":604,"w":38,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":14,"y":20,"w":38,"h":33}, "sourceSize": {"w":68,"h":56} }, "regular/carvanha": { "frame": {"x":1474,"y":1091,"w":21,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":33,"w":21,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/cascoon": { "frame": {"x":1549,"y":749,"w":23,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":34,"w":23,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/castform-rainy": { "frame": {"x":1418,"y":1102,"w":16,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":31,"w":16,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/castform-snowy": { "frame": {"x":1055,"y":1198,"w":19,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":29,"w":19,"h":25}, "sourceSize": {"w":68,"h":56} }, "regular/castform-sunny": { "frame": {"x":1519,"y":1231,"w":20,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":32,"w":20,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/castform": { "frame": {"x":1421,"y":901,"w":15,"h":22}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":26,"y":32,"w":15,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/caterpie": { "frame": {"x":1769,"y":1237,"w":16,"h":18}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":26,"y":36,"w":16,"h":18}, "sourceSize": {"w":68,"h":56} }, "regular/celebi": { "frame": {"x":1624,"y":1109,"w":16,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":33,"w":16,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/celesteela": { "frame": {"x":400,"y":518,"w":44,"h":41}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":11,"y":9,"w":44,"h":41}, "sourceSize": {"w":68,"h":56} }, "regular/centiskorch-gmax": { "frame": {"x":199,"y":1,"w":56,"h":47}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":6,"y":7,"w":56,"h":47}, "sourceSize": {"w":68,"h":56} }, "regular/centiskorch": { "frame": {"x":184,"y":733,"w":39,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":14,"y":22,"w":39,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/chandelure": { "frame": {"x":584,"y":436,"w":39,"h":36}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":17,"w":39,"h":36}, "sourceSize": {"w":68,"h":56} }, "regular/chansey": { "frame": {"x":1347,"y":681,"w":21,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":32,"w":21,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/charizard-gmax": { "frame": {"x":820,"y":1,"w":43,"h":52}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":14,"y":2,"w":43,"h":52}, "sourceSize": {"w":68,"h":56} }, "regular/charizard-mega-x": { "frame": {"x":98,"y":738,"w":42,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":13,"y":26,"w":42,"h":27}, "sourceSize": {"w":68,"h":56} }, "regular/charizard-mega-y": { "frame": {"x":401,"y":753,"w":40,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":14,"y":26,"w":40,"h":27}, "sourceSize": {"w":68,"h":56} }, "regular/charizard": { "frame": {"x":225,"y":261,"w":46,"h":41}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":9,"y":14,"w":46,"h":41}, "sourceSize": {"w":68,"h":56} }, "regular/charjabug": { "frame": {"x":1618,"y":844,"w":20,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":32,"w":20,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/charmander": { "frame": {"x":1574,"y":748,"w":23,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":33,"w":23,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/charmeleon": { "frame": {"x":1841,"y":542,"w":24,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":29,"w":24,"h":25}, "sourceSize": {"w":68,"h":56} }, "regular/chatot": { "frame": {"x":1525,"y":673,"w":22,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":30,"w":22,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/cherrim-sunshine": { "frame": {"x":1687,"y":293,"w":28,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":27,"w":28,"h":29}, "sourceSize": {"w":68,"h":56} }, "regular/cherrim": { "frame": {"x":1054,"y":1225,"w":21,"h":28}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":28,"w":21,"h":28}, "sourceSize": {"w":68,"h":56} }, "regular/cherubi": { "frame": {"x":1483,"y":1188,"w":20,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":34,"w":20,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/chesnaught": { "frame": {"x":757,"y":1137,"w":28,"h":26}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":28,"w":28,"h":26}, "sourceSize": {"w":68,"h":56} }, "regular/chespin": { "frame": {"x":1421,"y":1259,"w":19,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":25,"y":30,"w":19,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/chewtle": { "frame": {"x":1035,"y":980,"w":18,"h":25}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":25,"y":30,"w":18,"h":25}, "sourceSize": {"w":68,"h":56} }, "regular/chikorita": { "frame": {"x":1647,"y":704,"w":17,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":33,"w":17,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/chimchar": { "frame": {"x":1763,"y":542,"w":21,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":30,"w":21,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/chimecho": { "frame": {"x":1717,"y":660,"w":17,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":26,"y":32,"w":17,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/chinchou": { "frame": {"x":1576,"y":605,"w":24,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":33,"w":24,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/chingling": { "frame": {"x":1130,"y":863,"w":25,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":33,"w":25,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/cinccino": { "frame": {"x":1769,"y":157,"w":35,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":23,"w":35,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/cinderace-gmax": { "frame": {"x":1,"y":171,"w":55,"h":52}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":11,"y":4,"w":55,"h":52}, "sourceSize": {"w":68,"h":56} }, "regular/cinderace": { "frame": {"x":779,"y":131,"w":23,"h":43}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":24,"y":12,"w":23,"h":43}, "sourceSize": {"w":68,"h":56} }, "regular/clamperl": { "frame": {"x":1571,"y":843,"w":21,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":33,"w":21,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/clauncher": { "frame": {"x":1215,"y":507,"w":26,"h":19}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":35,"w":26,"h":19}, "sourceSize": {"w":68,"h":56} }, "regular/clawitzer": { "frame": {"x":267,"y":570,"w":43,"h":30}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":20,"w":43,"h":30}, "sourceSize": {"w":68,"h":56} }, "regular/claydol": { "frame": {"x":745,"y":866,"w":32,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":20,"w":32,"h":33}, "sourceSize": {"w":68,"h":56} }, "regular/clefable": { "frame": {"x":401,"y":677,"w":39,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":21,"w":39,"h":33}, "sourceSize": {"w":68,"h":56} }, "regular/clefairy": { "frame": {"x":1710,"y":727,"w":20,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":33,"w":20,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/cleffa": { "frame": {"x":1623,"y":1152,"w":18,"h":18}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":36,"w":18,"h":18}, "sourceSize": {"w":68,"h":56} }, "regular/clobbopus": { "frame": {"x":1594,"y":993,"w":21,"h":18}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":38,"w":21,"h":18}, "sourceSize": {"w":68,"h":56} }, "regular/cloyster": { "frame": {"x":851,"y":386,"w":39,"h":35}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":19,"w":39,"h":35}, "sourceSize": {"w":68,"h":56} }, "regular/coalossal-gmax": { "frame": {"x":874,"y":1,"w":44,"h":52}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":11,"y":3,"w":44,"h":52}, "sourceSize": {"w":68,"h":56} }, "regular/coalossal": { "frame": {"x":545,"y":356,"w":34,"h":44}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":17,"y":12,"w":34,"h":44}, "sourceSize": {"w":68,"h":56} }, "regular/cobalion": { "frame": {"x":157,"y":928,"w":31,"h":39}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":15,"w":31,"h":39}, "sourceSize": {"w":68,"h":56} }, "regular/cofagrigus": { "frame": {"x":142,"y":729,"w":40,"h":36}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":15,"y":17,"w":40,"h":36}, "sourceSize": {"w":68,"h":56} }, "regular/combee": { "frame": {"x":930,"y":811,"w":27,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":33,"w":27,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/combusken": { "frame": {"x":1750,"y":451,"w":25,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":27,"w":25,"h":27}, "sourceSize": {"w":68,"h":56} }, "regular/comfey": { "frame": {"x":596,"y":274,"w":33,"h":36}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":14,"w":33,"h":36}, "sourceSize": {"w":68,"h":56} }, "regular/conkeldurr": { "frame": {"x":204,"y":95,"w":52,"h":34}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":6,"y":22,"w":52,"h":34}, "sourceSize": {"w":68,"h":56} }, "regular/copperajah-gmax": { "frame": {"x":51,"y":551,"w":44,"h":48}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":9,"y":8,"w":44,"h":48}, "sourceSize": {"w":68,"h":56} }, "regular/copperajah": { "frame": {"x":1806,"y":157,"w":35,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":23,"w":35,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/corphish": { "frame": {"x":1471,"y":875,"w":23,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":33,"w":23,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/corsola-galar": { "frame": {"x":1448,"y":650,"w":23,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":32,"w":23,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/corsola": { "frame": {"x":1599,"y":772,"w":23,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":32,"w":23,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/corviknight-gmax": { "frame": {"x":1035,"y":1,"w":50,"h":46}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":10,"y":8,"w":50,"h":46}, "sourceSize": {"w":68,"h":56} }, "regular/corviknight": { "frame": {"x":545,"y":692,"w":36,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":15,"y":24,"w":36,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/corvisquire": { "frame": {"x":1399,"y":945,"w":24,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":36,"w":24,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/cosmoem": { "frame": {"x":1471,"y":898,"w":23,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":31,"w":23,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/cosmog": { "frame": {"x":1372,"y":916,"w":25,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":30,"w":25,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/cottonee": { "frame": {"x":1892,"y":661,"w":23,"h":16}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":38,"w":23,"h":16}, "sourceSize": {"w":68,"h":56} }, "regular/crabominable": { "frame": {"x":1261,"y":263,"w":34,"h":25}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":17,"y":28,"w":34,"h":25}, "sourceSize": {"w":68,"h":56} }, "regular/crabrawler": { "frame": {"x":1671,"y":561,"w":22,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":30,"w":22,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/cradily": { "frame": {"x":1777,"y":486,"w":27,"h":26}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":28,"w":27,"h":26}, "sourceSize": {"w":68,"h":56} }, "regular/cramorant-gorging": { "frame": {"x":1221,"y":185,"w":33,"h":37}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":14,"y":17,"w":33,"h":37}, "sourceSize": {"w":68,"h":56} }, "regular/cramorant-gulping": { "frame": {"x":1066,"y":351,"w":31,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":21,"w":31,"h":33}, "sourceSize": {"w":68,"h":56} }, "regular/cramorant": { "frame": {"x":824,"y":1197,"w":25,"h":31}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":22,"y":23,"w":25,"h":31}, "sourceSize": {"w":68,"h":56} }, "regular/cranidos": { "frame": {"x":1617,"y":892,"w":23,"h":21}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":22,"y":33,"w":23,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/crawdaunt": { "frame": {"x":1584,"y":197,"w":35,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":15,"y":23,"w":35,"h":33}, "sourceSize": {"w":68,"h":56} }, "regular/cresselia": { "frame": {"x":1910,"y":85,"w":34,"h":36}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":15,"w":34,"h":36}, "sourceSize": {"w":68,"h":56} }, "regular/croagunk": { "frame": {"x":1506,"y":1210,"w":19,"h":19}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":35,"w":19,"h":19}, "sourceSize": {"w":68,"h":56} }, "regular/crobat": { "frame": {"x":225,"y":309,"w":48,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":15,"y":19,"w":48,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/croconaw": { "frame": {"x":1058,"y":603,"w":23,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":27,"w":23,"h":27}, "sourceSize": {"w":68,"h":56} }, "regular/crustle": { "frame": {"x":1302,"y":446,"w":38,"h":31}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":13,"y":25,"w":38,"h":31}, "sourceSize": {"w":68,"h":56} }, "regular/cryogonal": { "frame": {"x":819,"y":965,"w":29,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":21,"w":29,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/cubchoo": { "frame": {"x":1589,"y":1225,"w":16,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":34,"w":16,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/cubone": { "frame": {"x":1619,"y":1172,"w":22,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":33,"w":22,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/cufant": { "frame": {"x":1162,"y":517,"w":27,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":19,"y":30,"w":27,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/cursola": { "frame": {"x":699,"y":510,"w":34,"h":34}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":20,"w":34,"h":34}, "sourceSize": {"w":68,"h":56} }, "regular/cutiefly": { "frame": {"x":1521,"y":1070,"w":21,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":29,"w":21,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/cyndaquil": { "frame": {"x":943,"y":647,"w":22,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":34,"w":22,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/darkrai": { "frame": {"x":609,"y":984,"w":33,"h":30}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":25,"w":33,"h":30}, "sourceSize": {"w":68,"h":56} }, "regular/darmanitan-galar-zen": { "frame": {"x":1429,"y":82,"w":32,"h":35}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":20,"w":32,"h":35}, "sourceSize": {"w":68,"h":56} }, "regular/darmanitan-galar": { "frame": {"x":776,"y":387,"w":31,"h":36}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":20,"w":31,"h":36}, "sourceSize": {"w":68,"h":56} }, "regular/darmanitan-zen": { "frame": {"x":1806,"y":486,"w":28,"h":26}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":29,"w":28,"h":26}, "sourceSize": {"w":68,"h":56} }, "regular/darmanitan": { "frame": {"x":403,"y":639,"w":37,"h":36}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":19,"w":37,"h":36}, "sourceSize": {"w":68,"h":56} }, "regular/dartrix": { "frame": {"x":1447,"y":1259,"w":19,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":24,"y":29,"w":19,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/darumaka-galar": { "frame": {"x":1623,"y":753,"w":19,"h":17}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":37,"w":19,"h":17}, "sourceSize": {"w":68,"h":56} }, "regular/darumaka": { "frame": {"x":1829,"y":1219,"w":19,"h":17}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":37,"w":19,"h":17}, "sourceSize": {"w":68,"h":56} }, "regular/decidueye": { "frame": {"x":217,"y":883,"w":27,"h":40}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":15,"w":27,"h":40}, "sourceSize": {"w":68,"h":56} }, "regular/dedenne": { "frame": {"x":709,"y":901,"w":36,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":25,"w":36,"h":29}, "sourceSize": {"w":68,"h":56} }, "regular/deerling-autumn": { "frame": {"x":1654,"y":609,"w":20,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":30,"w":20,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/deerling-summer": { "frame": {"x":1415,"y":1127,"w":20,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":30,"w":20,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/deerling-winter": { "frame": {"x":1415,"y":1153,"w":20,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":30,"w":20,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/deerling": { "frame": {"x":1436,"y":1099,"w":20,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":30,"w":20,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/deino": { "frame": {"x":1955,"y":620,"w":18,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":32,"w":18,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/delcatty": { "frame": {"x":1424,"y":573,"w":24,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":31,"w":24,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/delibird": { "frame": {"x":1170,"y":339,"w":28,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":23,"w":28,"h":33}, "sourceSize": {"w":68,"h":56} }, "regular/delphox": { "frame": {"x":1043,"y":576,"w":29,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":29,"w":29,"h":25}, "sourceSize": {"w":68,"h":56} }, "regular/deoxys-attack": { "frame": {"x":628,"y":1121,"w":31,"h":28}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":18,"y":28,"w":31,"h":28}, "sourceSize": {"w":68,"h":56} }, "regular/deoxys-defense": { "frame": {"x":1951,"y":408,"w":28,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":30,"w":28,"h":25}, "sourceSize": {"w":68,"h":56} }, "regular/deoxys-speed": { "frame": {"x":1951,"y":548,"w":27,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":28,"w":27,"h":27}, "sourceSize": {"w":68,"h":56} }, "regular/deoxys": { "frame": {"x":658,"y":1147,"w":28,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":30,"w":28,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/dewgong": { "frame": {"x":740,"y":156,"w":39,"h":39}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":14,"y":16,"w":39,"h":39}, "sourceSize": {"w":68,"h":56} }, "regular/dewott": { "frame": {"x":1199,"y":891,"w":21,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":29,"w":21,"h":25}, "sourceSize": {"w":68,"h":56} }, "regular/dewpider": { "frame": {"x":1595,"y":1201,"w":16,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":32,"w":16,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/dhelmise": { "frame": {"x":219,"y":843,"w":31,"h":38}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":18,"w":31,"h":38}, "sourceSize": {"w":68,"h":56} }, "regular/dialga": { "frame": {"x":179,"y":343,"w":43,"h":45}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":15,"y":8,"w":43,"h":45}, "sourceSize": {"w":68,"h":56} }, "regular/diancie-mega": { "frame": {"x":1281,"y":121,"w":32,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":28,"w":32,"h":27}, "sourceSize": {"w":68,"h":56} }, "regular/diancie": { "frame": {"x":675,"y":269,"w":35,"h":41}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":13,"w":35,"h":41}, "sourceSize": {"w":68,"h":56} }, "regular/diggersby": { "frame": {"x":544,"y":762,"w":36,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":16,"y":23,"w":36,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/diglett-alola": { "frame": {"x":1877,"y":679,"w":17,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":34,"w":17,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/diglett": { "frame": {"x":1826,"y":746,"w":17,"h":16}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":38,"w":17,"h":16}, "sourceSize": {"w":68,"h":56} }, "regular/ditto": { "frame": {"x":1954,"y":978,"w":18,"h":15}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":39,"w":18,"h":15}, "sourceSize": {"w":68,"h":56} }, "regular/dodrio": { "frame": {"x":959,"y":197,"w":42,"h":34}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":10,"y":21,"w":42,"h":34}, "sourceSize": {"w":68,"h":56} }, "regular/doduo": { "frame": {"x":1564,"y":1225,"w":23,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":34,"w":23,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/donphan": { "frame": {"x":1526,"y":451,"w":31,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":30,"w":31,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/dottler": { "frame": {"x":1170,"y":633,"w":27,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":31,"w":27,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/doublade": { "frame": {"x":1242,"y":448,"w":33,"h":25}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":18,"y":31,"w":33,"h":25}, "sourceSize": {"w":68,"h":56} }, "regular/dracovish": { "frame": {"x":1041,"y":274,"w":33,"h":34}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":20,"w":33,"h":34}, "sourceSize": {"w":68,"h":56} }, "regular/dracozolt": { "frame": {"x":541,"y":436,"w":41,"h":36}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":15,"y":18,"w":41,"h":36}, "sourceSize": {"w":68,"h":56} }, "regular/dragalge": { "frame": {"x":1133,"y":149,"w":39,"h":34}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":18,"w":39,"h":34}, "sourceSize": {"w":68,"h":56} }, "regular/dragapult": { "frame": {"x":311,"y":92,"w":49,"h":41}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":12,"y":12,"w":49,"h":41}, "sourceSize": {"w":68,"h":56} }, "regular/dragonair": { "frame": {"x":1313,"y":1217,"w":24,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":30,"w":24,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/dragonite": { "frame": {"x":781,"y":87,"w":38,"h":42}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":9,"w":38,"h":42}, "sourceSize": {"w":68,"h":56} }, "regular/drakloak": { "frame": {"x":1809,"y":514,"w":28,"h":26}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":27,"w":28,"h":26}, "sourceSize": {"w":68,"h":56} }, "regular/drampa": { "frame": {"x":246,"y":883,"w":40,"h":26}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":13,"y":30,"w":40,"h":26}, "sourceSize": {"w":68,"h":56} }, "regular/drapion": { "frame": {"x":476,"y":43,"w":54,"h":30}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":7,"y":25,"w":54,"h":30}, "sourceSize": {"w":68,"h":56} }, "regular/dratini": { "frame": {"x":1576,"y":653,"w":22,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":34,"w":22,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/drednaw-gmax": { "frame": {"x":1,"y":607,"w":53,"h":48}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":8,"y":7,"w":53,"h":48}, "sourceSize": {"w":68,"h":56} }, "regular/drednaw": { "frame": {"x":403,"y":1059,"w":42,"h":29}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":13,"y":26,"w":42,"h":29}, "sourceSize": {"w":68,"h":56} }, "regular/dreepy": { "frame": {"x":1254,"y":1241,"w":26,"h":19}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":34,"w":26,"h":19}, "sourceSize": {"w":68,"h":56} }, "regular/drifblim": { "frame": {"x":626,"y":516,"w":32,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":24,"w":32,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/drifloon": { "frame": {"x":1319,"y":894,"w":17,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":26,"y":31,"w":17,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/drilbur": { "frame": {"x":1637,"y":1197,"w":23,"h":19}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":35,"w":23,"h":19}, "sourceSize": {"w":68,"h":56} }, "regular/drizzile": { "frame": {"x":1522,"y":228,"w":26,"h":30}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":25,"w":26,"h":30}, "sourceSize": {"w":68,"h":56} }, "regular/drowzee": { "frame": {"x":1187,"y":865,"w":26,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":30,"w":26,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/druddigon": { "frame": {"x":911,"y":82,"w":43,"h":37}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":12,"y":18,"w":43,"h":37}, "sourceSize": {"w":68,"h":56} }, "regular/dubwool": { "frame": {"x":626,"y":550,"w":32,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":22,"w":32,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/ducklett": { "frame": {"x":1767,"y":822,"w":18,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":33,"w":18,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/dugtrio-alola": { "frame": {"x":1249,"y":618,"w":25,"h":26}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":28,"w":25,"h":26}, "sourceSize": {"w":68,"h":56} }, "regular/dugtrio": { "frame": {"x":1395,"y":268,"w":34,"h":36}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":20,"w":34,"h":36}, "sourceSize": {"w":68,"h":56} }, "regular/dunsparce": { "frame": {"x":1836,"y":484,"w":26,"h":28}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":25,"w":26,"h":28}, "sourceSize": {"w":68,"h":56} }, "regular/duosion": { "frame": {"x":1788,"y":1150,"w":18,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":33,"w":18,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/duraludon-gmax": { "frame": {"x":258,"y":133,"w":37,"h":50}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":15,"y":4,"w":37,"h":50}, "sourceSize": {"w":68,"h":56} }, "regular/duraludon": { "frame": {"x":267,"y":804,"w":31,"h":37}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":17,"w":31,"h":37}, "sourceSize": {"w":68,"h":56} }, "regular/durant": { "frame": {"x":420,"y":1234,"w":41,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":13,"y":31,"w":41,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/dusclops": { "frame": {"x":924,"y":583,"w":28,"h":26}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":28,"w":28,"h":26}, "sourceSize": {"w":68,"h":56} }, "regular/dusknoir": { "frame": {"x":959,"y":233,"w":42,"h":36}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":12,"y":17,"w":42,"h":36}, "sourceSize": {"w":68,"h":56} }, "regular/duskull": { "frame": {"x":1527,"y":1162,"w":20,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":31,"w":20,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/dustox": { "frame": {"x":1890,"y":462,"w":28,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":33,"w":28,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/dwebble": { "frame": {"x":1523,"y":1115,"w":21,"h":19}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":35,"w":21,"h":19}, "sourceSize": {"w":68,"h":56} }, "regular/eelektrik": { "frame": {"x":1617,"y":917,"w":23,"h":21}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":33,"w":23,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/eelektross": { "frame": {"x":831,"y":707,"w":32,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":31,"w":32,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/eevee-gmax": { "frame": {"x":666,"y":154,"w":36,"h":40}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":16,"w":36,"h":40}, "sourceSize": {"w":68,"h":56} }, "regular/eevee-starter": { "frame": {"x":1038,"y":661,"w":28,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":32,"w":28,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/eevee": { "frame": {"x":1918,"y":679,"w":19,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":34,"w":19,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/eiscue-noice": { "frame": {"x":490,"y":817,"w":16,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":21,"w":16,"h":33}, "sourceSize": {"w":68,"h":56} }, "regular/eiscue": { "frame": {"x":426,"y":885,"w":23,"h":37}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":17,"w":23,"h":37}, "sourceSize": {"w":68,"h":56} }, "regular/ekans": { "frame": {"x":1527,"y":1187,"w":20,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":31,"w":20,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/eldegoss": { "frame": {"x":1525,"y":390,"w":28,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":28,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/electabuzz": { "frame": {"x":451,"y":885,"w":35,"h":37}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":15,"w":35,"h":37}, "sourceSize": {"w":68,"h":56} }, "regular/electivire": { "frame": {"x":186,"y":308,"w":37,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":19,"w":37,"h":33}, "sourceSize": {"w":68,"h":56} }, "regular/electrike": { "frame": {"x":1474,"y":1072,"w":21,"h":17}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":37,"w":21,"h":17}, "sourceSize": {"w":68,"h":56} }, "regular/electrode": { "frame": {"x":1706,"y":1162,"w":18,"h":18}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":36,"w":18,"h":18}, "sourceSize": {"w":68,"h":56} }, "regular/elekid": { "frame": {"x":1449,"y":994,"w":23,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":32,"w":23,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/elgyem": { "frame": {"x":1665,"y":802,"w":15,"h":21}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":26,"y":33,"w":15,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/emboar": { "frame": {"x":1472,"y":524,"w":30,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":27,"w":30,"h":27}, "sourceSize": {"w":68,"h":56} }, "regular/emolga": { "frame": {"x":274,"y":883,"w":40,"h":28}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":17,"y":21,"w":40,"h":28}, "sourceSize": {"w":68,"h":56} }, "regular/empoleon": { "frame": {"x":1864,"y":485,"w":25,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":27,"w":25,"h":27}, "sourceSize": {"w":68,"h":56} }, "regular/entei": { "frame": {"x":755,"y":272,"w":41,"h":37}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":16,"w":41,"h":37}, "sourceSize": {"w":68,"h":56} }, "regular/escavalier": { "frame": {"x":660,"y":509,"w":34,"h":37}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":17,"y":19,"w":34,"h":37}, "sourceSize": {"w":68,"h":56} }, "regular/espeon": { "frame": {"x":474,"y":587,"w":37,"h":31}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":16,"y":24,"w":37,"h":31}, "sourceSize": {"w":68,"h":56} }, "regular/espurr": { "frame": {"x":1672,"y":1244,"w":18,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":34,"w":18,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/eternatus-eternamax": { "frame": {"x":1,"y":1,"w":68,"h":56}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":68,"h":56}, "sourceSize": {"w":68,"h":56} }, "regular/eternatus": { "frame": {"x":71,"y":55,"w":60,"h":50}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":7,"y":6,"w":60,"h":50}, "sourceSize": {"w":68,"h":56} }, "regular/excadrill": { "frame": {"x":406,"y":1147,"w":41,"h":31}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":14,"y":24,"w":41,"h":31}, "sourceSize": {"w":68,"h":56} }, "regular/exeggcute": { "frame": {"x":1862,"y":367,"w":26,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":34,"w":26,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/exeggutor-alola": { "frame": {"x":594,"y":1,"w":39,"h":56}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":13,"y":0,"w":39,"h":56}, "sourceSize": {"w":68,"h":56} }, "regular/exeggutor": { "frame": {"x":510,"y":149,"w":39,"h":45}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":16,"y":8,"w":39,"h":45}, "sourceSize": {"w":68,"h":56} }, "regular/exploud": { "frame": {"x":225,"y":730,"w":43,"h":35}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":17,"w":43,"h":35}, "sourceSize": {"w":68,"h":56} }, "regular/falinks": { "frame": {"x":654,"y":701,"w":33,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":32,"w":33,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/farfetchd-galar": { "frame": {"x":468,"y":75,"w":50,"h":31}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":10,"y":25,"w":50,"h":31}, "sourceSize": {"w":68,"h":56} }, "regular/farfetchd": { "frame": {"x":1068,"y":661,"w":28,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":30,"w":28,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/fearow": { "frame": {"x":789,"y":1254,"w":32,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":30,"w":32,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/feebas": { "frame": {"x":1607,"y":1225,"w":19,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":31,"w":19,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/female/frillish": { "frame": {"x":1594,"y":1085,"w":21,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":32,"w":21,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/female/hippopotas": { "frame": {"x":1559,"y":560,"w":26,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":34,"w":26,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/female/hippowdon": { "frame": {"x":1001,"y":121,"w":38,"h":26}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":15,"y":29,"w":38,"h":26}, "sourceSize": {"w":68,"h":56} }, "regular/female/indeedee": { "frame": {"x":1687,"y":422,"w":28,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":25,"w":28,"h":29}, "sourceSize": {"w":68,"h":56} }, "regular/female/jellicent": { "frame": {"x":1070,"y":427,"w":33,"h":34}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":21,"w":33,"h":34}, "sourceSize": {"w":68,"h":56} }, "regular/female/meowstic": { "frame": {"x":622,"y":691,"w":30,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":24,"w":30,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/female/pikachu-alola-cap": { "frame": {"x":1050,"y":1170,"w":26,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":31,"w":26,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/female/pikachu-hoenn-cap": { "frame": {"x":1075,"y":1170,"w":26,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":31,"w":26,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/female/pikachu-kalos-cap": { "frame": {"x":1178,"y":1005,"w":26,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":31,"w":26,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/female/pikachu-original-cap": { "frame": {"x":1206,"y":1063,"w":26,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":31,"w":26,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/female/pikachu-partner-cap": { "frame": {"x":1234,"y":1121,"w":26,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":31,"w":26,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/female/pikachu-sinnoh-cap": { "frame": {"x":1248,"y":590,"w":26,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":31,"w":26,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/female/pikachu-starter": { "frame": {"x":1806,"y":422,"w":30,"h":25}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":17,"y":31,"w":30,"h":25}, "sourceSize": {"w":68,"h":56} }, "regular/female/pikachu-unova-cap": { "frame": {"x":1273,"y":590,"w":26,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":31,"w":26,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/female/pikachu-world-cap": { "frame": {"x":1298,"y":548,"w":26,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":31,"w":26,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/female/pikachu": { "frame": {"x":1449,"y":1018,"w":23,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":32,"w":23,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/female/pyroar": { "frame": {"x":812,"y":641,"w":32,"h":26}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":28,"w":32,"h":26}, "sourceSize": {"w":68,"h":56} }, "regular/female/unfezant": { "frame": {"x":609,"y":75,"w":31,"h":31}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":24,"w":31,"h":31}, "sourceSize": {"w":68,"h":56} }, "regular/fennekin": { "frame": {"x":1766,"y":989,"w":19,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":33,"w":19,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/feraligatr": { "frame": {"x":919,"y":1038,"w":33,"h":28}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":26,"w":33,"h":28}, "sourceSize": {"w":68,"h":56} }, "regular/ferroseed": { "frame": {"x":1847,"y":1093,"w":17,"h":18}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":26,"y":36,"w":17,"h":18}, "sourceSize": {"w":68,"h":56} }, "regular/ferrothorn": { "frame": {"x":1197,"y":89,"w":44,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":11,"y":29,"w":44,"h":27}, "sourceSize": {"w":68,"h":56} }, "regular/finneon": { "frame": {"x":1459,"y":1185,"w":22,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":33,"w":22,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/flaaffy": { "frame": {"x":1396,"y":839,"w":23,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":30,"w":23,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/flabebe-blue": { "frame": {"x":1705,"y":1040,"w":17,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":34,"w":17,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/flabebe-orange": { "frame": {"x":1788,"y":1215,"w":17,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":34,"w":17,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/flabebe-white": { "frame": {"x":1848,"y":1135,"w":17,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":34,"w":17,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/flabebe-yellow": { "frame": {"x":1848,"y":1157,"w":17,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":34,"w":17,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/flabebe": { "frame": {"x":1969,"y":916,"w":17,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":34,"w":17,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/flapple-gmax": { "frame": {"x":721,"y":197,"w":29,"h":46}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":8,"w":29,"h":46}, "sourceSize": {"w":68,"h":56} }, "regular/flapple": { "frame": {"x":270,"y":687,"w":37,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":21,"w":37,"h":33}, "sourceSize": {"w":68,"h":56} }, "regular/flareon": { "frame": {"x":893,"y":311,"w":32,"h":35}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":20,"w":32,"h":35}, "sourceSize": {"w":68,"h":56} }, "regular/fletchinder": { "frame": {"x":1287,"y":1219,"w":24,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":32,"w":24,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/fletchling": { "frame": {"x":1527,"y":1212,"w":20,"h":17}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":37,"w":20,"h":17}, "sourceSize": {"w":68,"h":56} }, "regular/floatzel": { "frame": {"x":1922,"y":548,"w":27,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":31,"w":27,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/floette-blue": { "frame": {"x":1415,"y":1179,"w":21,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":30,"w":21,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/floette-eternal": { "frame": {"x":1295,"y":674,"w":25,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":31,"w":25,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/floette-orange": { "frame": {"x":1422,"y":918,"w":21,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":30,"w":21,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/floette-white": { "frame": {"x":1426,"y":1073,"w":21,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":30,"w":21,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/floette-yellow": { "frame": {"x":1474,"y":994,"w":21,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":30,"w":21,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/floette": { "frame": {"x":1474,"y":1020,"w":21,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":30,"w":21,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/florges-blue": { "frame": {"x":1834,"y":453,"w":28,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":27,"w":28,"h":29}, "sourceSize": {"w":68,"h":56} }, "regular/florges-orange": { "frame": {"x":1890,"y":400,"w":28,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":27,"w":28,"h":29}, "sourceSize": {"w":68,"h":56} }, "regular/florges-white": { "frame": {"x":1890,"y":431,"w":28,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":27,"w":28,"h":29}, "sourceSize": {"w":68,"h":56} }, "regular/florges-yellow": { "frame": {"x":1891,"y":485,"w":28,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":27,"w":28,"h":29}, "sourceSize": {"w":68,"h":56} }, "regular/florges": { "frame": {"x":1921,"y":369,"w":28,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":27,"w":28,"h":29}, "sourceSize": {"w":68,"h":56} }, "regular/flygon": { "frame": {"x":135,"y":849,"w":39,"h":36}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":17,"w":39,"h":36}, "sourceSize": {"w":68,"h":56} }, "regular/fomantis": { "frame": {"x":1692,"y":1243,"w":16,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":27,"y":32,"w":16,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/foongus": { "frame": {"x":1907,"y":1180,"w":16,"h":19}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":35,"w":16,"h":19}, "sourceSize": {"w":68,"h":56} }, "regular/forretress": { "frame": {"x":1558,"y":582,"w":25,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":34,"w":25,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/fraxure": { "frame": {"x":1158,"y":782,"w":27,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":31,"w":27,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/frillish": { "frame": {"x":1617,"y":1085,"w":21,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":32,"w":21,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/froakie": { "frame": {"x":1744,"y":869,"w":20,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":34,"w":20,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/frogadier": { "frame": {"x":1370,"y":572,"w":25,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":32,"w":25,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/froslass": { "frame": {"x":464,"y":817,"w":24,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":22,"w":24,"h":33}, "sourceSize": {"w":68,"h":56} }, "regular/frosmoth": { "frame": {"x":1220,"y":263,"w":39,"h":34}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":15,"y":20,"w":39,"h":34}, "sourceSize": {"w":68,"h":56} }, "regular/furfrou-dandy": { "frame": {"x":1044,"y":1093,"w":26,"h":28}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":26,"w":26,"h":28}, "sourceSize": {"w":68,"h":56} }, "regular/furfrou-debutante": { "frame": {"x":1083,"y":603,"w":27,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":27,"w":27,"h":27}, "sourceSize": {"w":68,"h":56} }, "regular/furfrou-diamond": { "frame": {"x":1806,"y":454,"w":26,"h":30}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":24,"w":26,"h":30}, "sourceSize": {"w":68,"h":56} }, "regular/furfrou-heart": { "frame": {"x":1073,"y":516,"w":27,"h":28}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":26,"w":27,"h":28}, "sourceSize": {"w":68,"h":56} }, "regular/furfrou-kabuki": { "frame": {"x":1135,"y":575,"w":27,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":27,"w":27,"h":27}, "sourceSize": {"w":68,"h":56} }, "regular/furfrou-la-reine": { "frame": {"x":1135,"y":604,"w":27,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":27,"w":27,"h":27}, "sourceSize": {"w":68,"h":56} }, "regular/furfrou-matron": { "frame": {"x":1142,"y":633,"w":26,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":27,"w":26,"h":27}, "sourceSize": {"w":68,"h":56} }, "regular/furfrou-pharaoh": { "frame": {"x":1010,"y":634,"w":26,"h":28}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":26,"w":26,"h":28}, "sourceSize": {"w":68,"h":56} }, "regular/furfrou-star": { "frame": {"x":1920,"y":430,"w":28,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":25,"w":28,"h":29}, "sourceSize": {"w":68,"h":56} }, "regular/furfrou": { "frame": {"x":926,"y":460,"w":26,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":25,"w":26,"h":29}, "sourceSize": {"w":68,"h":56} }, "regular/furret": { "frame": {"x":1532,"y":556,"w":25,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":31,"w":25,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/gabite": { "frame": {"x":1345,"y":813,"w":25,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":31,"w":25,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/gallade-mega": { "frame": {"x":984,"y":574,"w":27,"h":28}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":26,"w":27,"h":28}, "sourceSize": {"w":68,"h":56} }, "regular/gallade": { "frame": {"x":775,"y":609,"w":28,"h":35}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":22,"y":20,"w":28,"h":35}, "sourceSize": {"w":68,"h":56} }, "regular/galvantula": { "frame": {"x":1941,"y":129,"w":39,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":13,"y":27,"w":39,"h":29}, "sourceSize": {"w":68,"h":56} }, "regular/garbodor-gmax": { "frame": {"x":710,"y":1,"w":53,"h":42}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":5,"y":13,"w":53,"h":42}, "sourceSize": {"w":68,"h":56} }, "regular/garbodor": { "frame": {"x":913,"y":197,"w":44,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":13,"y":23,"w":44,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/garchomp-mega": { "frame": {"x":1408,"y":379,"w":32,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":29,"w":32,"h":27}, "sourceSize": {"w":68,"h":56} }, "regular/garchomp": { "frame": {"x":1386,"y":156,"w":37,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":20,"w":37,"h":33}, "sourceSize": {"w":68,"h":56} }, "regular/gardevoir-mega": { "frame": {"x":954,"y":584,"w":28,"h":26}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":28,"w":28,"h":26}, "sourceSize": {"w":68,"h":56} }, "regular/gardevoir": { "frame": {"x":1172,"y":374,"w":28,"h":37}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":18,"w":28,"h":37}, "sourceSize": {"w":68,"h":56} }, "regular/gastly": { "frame": {"x":1345,"y":840,"w":25,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":31,"w":25,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/gastrodon-east": { "frame": {"x":443,"y":558,"w":29,"h":30}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":26,"w":29,"h":30}, "sourceSize": {"w":68,"h":56} }, "regular/gastrodon": { "frame": {"x":746,"y":833,"w":30,"h":31}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":25,"w":30,"h":31}, "sourceSize": {"w":68,"h":56} }, "regular/genesect-burn": { "frame": {"x":1269,"y":448,"w":31,"h":36}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":19,"w":31,"h":36}, "sourceSize": {"w":68,"h":56} }, "regular/genesect-chill": { "frame": {"x":578,"y":762,"w":31,"h":36}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":19,"w":31,"h":36}, "sourceSize": {"w":68,"h":56} }, "regular/genesect-douse": { "frame": {"x":579,"y":878,"w":31,"h":36}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":19,"w":31,"h":36}, "sourceSize": {"w":68,"h":56} }, "regular/genesect-shock": { "frame": {"x":642,"y":834,"w":31,"h":36}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":19,"w":31,"h":36}, "sourceSize": {"w":68,"h":56} }, "regular/genesect": { "frame": {"x":527,"y":1043,"w":31,"h":36}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":19,"w":31,"h":36}, "sourceSize": {"w":68,"h":56} }, "regular/gengar-gmax": { "frame": {"x":204,"y":50,"w":48,"h":43}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":10,"y":13,"w":48,"h":43}, "sourceSize": {"w":68,"h":56} }, "regular/gengar-mega": { "frame": {"x":1395,"y":306,"w":36,"h":31}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":25,"w":36,"h":31}, "sourceSize": {"w":68,"h":56} }, "regular/gengar": { "frame": {"x":1220,"y":224,"w":34,"h":37}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":17,"w":34,"h":37}, "sourceSize": {"w":68,"h":56} }, "regular/geodude-alola": { "frame": {"x":1303,"y":618,"w":26,"h":17}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":37,"w":26,"h":17}, "sourceSize": {"w":68,"h":56} }, "regular/geodude": { "frame": {"x":1276,"y":661,"w":26,"h":17}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":37,"w":26,"h":17}, "sourceSize": {"w":68,"h":56} }, "regular/gible": { "frame": {"x":1688,"y":798,"w":21,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":33,"w":21,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/gigalith": { "frame": {"x":623,"y":474,"w":40,"h":35}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":15,"y":20,"w":40,"h":35}, "sourceSize": {"w":68,"h":56} }, "regular/girafarig": { "frame": {"x":1076,"y":1198,"w":24,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":29,"w":24,"h":25}, "sourceSize": {"w":68,"h":56} }, "regular/giratina-origin": { "frame": {"x":226,"y":343,"w":46,"h":41}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":10,"y":8,"w":46,"h":41}, "sourceSize": {"w":68,"h":56} }, "regular/giratina": { "frame": {"x":271,"y":387,"w":44,"h":36}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":12,"y":17,"w":44,"h":36}, "sourceSize": {"w":68,"h":56} }, "regular/glaceon": { "frame": {"x":1550,"y":191,"w":38,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":15,"y":23,"w":38,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/glalie-mega": { "frame": {"x":1276,"y":618,"w":25,"h":26}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":28,"w":25,"h":26}, "sourceSize": {"w":68,"h":56} }, "regular/glalie": { "frame": {"x":923,"y":1101,"w":32,"h":30}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":23,"w":32,"h":30}, "sourceSize": {"w":68,"h":56} }, "regular/glameow": { "frame": {"x":1098,"y":691,"w":28,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":30,"w":28,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/glastrier": { "frame": {"x":139,"y":887,"w":35,"h":39}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":17,"w":35,"h":39}, "sourceSize": {"w":68,"h":56} }, "regular/gligar": { "frame": {"x":1298,"y":520,"w":26,"h":26}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":29,"w":26,"h":26}, "sourceSize": {"w":68,"h":56} }, "regular/gliscor": { "frame": {"x":688,"y":1165,"w":33,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":30,"w":33,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/gloom": { "frame": {"x":1422,"y":624,"w":24,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":31,"w":24,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/gogoat": { "frame": {"x":1397,"y":572,"w":25,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":30,"w":25,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/golbat": { "frame": {"x":224,"y":767,"w":43,"h":35}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":17,"w":43,"h":35}, "sourceSize": {"w":68,"h":56} }, "regular/goldeen": { "frame": {"x":1432,"y":550,"w":26,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":33,"w":26,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/golduck": { "frame": {"x":358,"y":568,"w":40,"h":34}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":13,"y":19,"w":40,"h":34}, "sourceSize": {"w":68,"h":56} }, "regular/golem-alola": { "frame": {"x":262,"y":1145,"w":37,"h":40}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":15,"w":37,"h":40}, "sourceSize": {"w":68,"h":56} }, "regular/golem": { "frame": {"x":302,"y":1230,"w":40,"h":35}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":10,"y":19,"w":40,"h":35}, "sourceSize": {"w":68,"h":56} }, "regular/golett": { "frame": {"x":1896,"y":679,"w":20,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":34,"w":20,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/golisopod": { "frame": {"x":888,"y":423,"w":39,"h":35}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":14,"y":21,"w":39,"h":35}, "sourceSize": {"w":68,"h":56} }, "regular/golurk": { "frame": {"x":948,"y":944,"w":30,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":23,"w":30,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/goodra": { "frame": {"x":1035,"y":428,"w":33,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":23,"w":33,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/goomy": { "frame": {"x":1889,"y":1164,"w":14,"h":16}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":27,"y":38,"w":14,"h":16}, "sourceSize": {"w":68,"h":56} }, "regular/gorebyss": { "frame": {"x":1315,"y":125,"w":28,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":31,"w":28,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/gossifleur": { "frame": {"x":1767,"y":1215,"w":19,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":34,"w":19,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/gothita": { "frame": {"x":1975,"y":703,"w":16,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":34,"w":16,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/gothitelle": { "frame": {"x":432,"y":817,"w":30,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":22,"w":30,"h":33}, "sourceSize": {"w":68,"h":56} }, "regular/gothorita": { "frame": {"x":1497,"y":749,"w":24,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":32,"w":24,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/gourgeist-large": { "frame": {"x":1135,"y":546,"w":25,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":28,"w":25,"h":27}, "sourceSize": {"w":68,"h":56} }, "regular/gourgeist-small": { "frame": {"x":1437,"y":1125,"w":20,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":30,"w":20,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/gourgeist-super": { "frame": {"x":1130,"y":834,"w":25,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":27,"w":25,"h":27}, "sourceSize": {"w":68,"h":56} }, "regular/gourgeist": { "frame": {"x":507,"y":1225,"w":40,"h":34}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":16,"y":21,"w":40,"h":34}, "sourceSize": {"w":68,"h":56} }, "regular/granbull": { "frame": {"x":1179,"y":978,"w":24,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":29,"w":24,"h":25}, "sourceSize": {"w":68,"h":56} }, "regular/grapploct": { "frame": {"x":957,"y":1101,"w":30,"h":30}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":26,"w":30,"h":30}, "sourceSize": {"w":68,"h":56} }, "regular/graveler-alola": { "frame": {"x":721,"y":1252,"w":31,"h":26}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":28,"w":31,"h":26}, "sourceSize": {"w":68,"h":56} }, "regular/graveler": { "frame": {"x":1128,"y":691,"w":28,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":30,"w":28,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/greedent": { "frame": {"x":711,"y":999,"w":32,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":21,"w":32,"h":33}, "sourceSize": {"w":68,"h":56} }, "regular/greninja-ash": { "frame": {"x":675,"y":908,"w":32,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":31,"w":32,"h":25}, "sourceSize": {"w":68,"h":56} }, "regular/greninja": { "frame": {"x":823,"y":1254,"w":32,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":32,"w":32,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/grimer-alola": { "frame": {"x":1640,"y":1046,"w":23,"h":20}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":34,"w":23,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/grimer": { "frame": {"x":1640,"y":1071,"w":23,"h":20}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":34,"w":23,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/grimmsnarl-gmax": { "frame": {"x":309,"y":217,"w":41,"h":49}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":10,"y":7,"w":41,"h":49}, "sourceSize": {"w":68,"h":56} }, "regular/grimmsnarl": { "frame": {"x":971,"y":423,"w":33,"h":35}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":21,"w":33,"h":35}, "sourceSize": {"w":68,"h":56} }, "regular/grookey": { "frame": {"x":1347,"y":600,"w":21,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":30,"w":21,"h":25}, "sourceSize": {"w":68,"h":56} }, "regular/grotle": { "frame": {"x":1422,"y":649,"w":24,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":31,"w":24,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/groudon-primal": { "frame": {"x":1174,"y":413,"w":38,"h":26}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":16,"y":28,"w":38,"h":26}, "sourceSize": {"w":68,"h":56} }, "regular/groudon": { "frame": {"x":219,"y":210,"w":49,"h":37}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":10,"y":17,"w":49,"h":37}, "sourceSize": {"w":68,"h":56} }, "regular/grovyle": { "frame": {"x":1070,"y":463,"w":30,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":30,"w":30,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/growlithe": { "frame": {"x":1422,"y":674,"w":23,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":30,"w":23,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/grubbin": { "frame": {"x":1952,"y":916,"w":19,"h":15}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":25,"y":36,"w":19,"h":15}, "sourceSize": {"w":68,"h":56} }, "regular/grumpig": { "frame": {"x":1383,"y":1075,"w":25,"h":21}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":33,"w":25,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/gulpin": { "frame": {"x":1915,"y":745,"w":19,"h":19}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":35,"w":19,"h":19}, "sourceSize": {"w":68,"h":56} }, "regular/gumshoos": { "frame": {"x":1298,"y":590,"w":22,"h":26}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":28,"w":22,"h":26}, "sourceSize": {"w":68,"h":56} }, "regular/gurdurr": { "frame": {"x":1016,"y":1062,"w":29,"h":26}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":28,"w":29,"h":26}, "sourceSize": {"w":68,"h":56} }, "regular/guzzlord": { "frame": {"x":476,"y":1,"w":57,"h":40}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":5,"y":15,"w":57,"h":40}, "sourceSize": {"w":68,"h":56} }, "regular/gyarados-mega": { "frame": {"x":850,"y":1034,"w":32,"h":31}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":25,"w":32,"h":31}, "sourceSize": {"w":68,"h":56} }, "regular/gyarados": { "frame": {"x":541,"y":392,"w":40,"h":42}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":15,"y":11,"w":40,"h":42}, "sourceSize": {"w":68,"h":56} }, "regular/hakamo-o": { "frame": {"x":1013,"y":701,"w":23,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":27,"w":23,"h":29}, "sourceSize": {"w":68,"h":56} }, "regular/happiny": { "frame": {"x":1705,"y":821,"w":16,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":33,"w":16,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/hariyama": { "frame": {"x":1783,"y":329,"w":26,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":29,"w":26,"h":25}, "sourceSize": {"w":68,"h":56} }, "regular/hatenna": { "frame": {"x":1347,"y":627,"w":21,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":31,"w":21,"h":25}, "sourceSize": {"w":68,"h":56} }, "regular/hatterene-gmax": { "frame": {"x":176,"y":223,"w":41,"h":44}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":14,"y":12,"w":41,"h":44}, "sourceSize": {"w":68,"h":56} }, "regular/hatterene": { "frame": {"x":930,"y":348,"w":29,"h":36}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":20,"w":29,"h":36}, "sourceSize": {"w":68,"h":56} }, "regular/hattrem": { "frame": {"x":1370,"y":787,"w":24,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":31,"w":24,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/haunter": { "frame": {"x":675,"y":935,"w":32,"h":28}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":26,"w":32,"h":28}, "sourceSize": {"w":68,"h":56} }, "regular/hawlucha": { "frame": {"x":1621,"y":198,"w":37,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":23,"w":37,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/haxorus": { "frame": {"x":892,"y":386,"w":37,"h":35}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":20,"w":37,"h":35}, "sourceSize": {"w":68,"h":56} }, "regular/heatmor": { "frame": {"x":1039,"y":233,"w":39,"h":28}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":15,"y":27,"w":39,"h":28}, "sourceSize": {"w":68,"h":56} }, "regular/heatran": { "frame": {"x":462,"y":233,"w":50,"h":30}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":9,"y":25,"w":50,"h":30}, "sourceSize": {"w":68,"h":56} }, "regular/heliolisk": { "frame": {"x":1686,"y":388,"w":27,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":23,"w":27,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/helioptile": { "frame": {"x":1504,"y":519,"w":20,"h":19}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":35,"w":20,"h":19}, "sourceSize": {"w":68,"h":56} }, "regular/heracross-mega": { "frame": {"x":514,"y":884,"w":36,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":16,"y":24,"w":36,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/heracross": { "frame": {"x":178,"y":388,"w":46,"h":42}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":11,"y":11,"w":46,"h":42}, "sourceSize": {"w":68,"h":56} }, "regular/herdier": { "frame": {"x":1422,"y":700,"w":23,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":30,"w":23,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/hippopotas": { "frame": {"x":1587,"y":560,"w":26,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":34,"w":26,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/hippowdon": { "frame": {"x":1200,"y":300,"w":38,"h":26}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":15,"y":29,"w":38,"h":26}, "sourceSize": {"w":68,"h":56} }, "regular/hitmonchan": { "frame": {"x":1182,"y":223,"w":36,"h":37}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":15,"y":16,"w":36,"h":37}, "sourceSize": {"w":68,"h":56} }, "regular/hitmonlee": { "frame": {"x":1523,"y":260,"w":30,"h":31}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":24,"w":30,"h":31}, "sourceSize": {"w":68,"h":56} }, "regular/hitmontop": { "frame": {"x":1148,"y":185,"w":39,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":16,"y":23,"w":39,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/ho-oh": { "frame": {"x":1,"y":717,"w":48,"h":51}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":10,"y":4,"w":48,"h":51}, "sourceSize": {"w":68,"h":56} }, "regular/honchkrow": { "frame": {"x":1071,"y":1060,"w":28,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":30,"w":28,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/honedge": { "frame": {"x":1504,"y":491,"w":20,"h":26}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":27,"y":28,"w":20,"h":26}, "sourceSize": {"w":68,"h":56} }, "regular/hoopa-unbound": { "frame": {"x":1345,"y":82,"w":40,"h":30}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":14,"y":26,"w":40,"h":30}, "sourceSize": {"w":68,"h":56} }, "regular/hoopa": { "frame": {"x":1617,"y":942,"w":23,"h":21}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":22,"y":32,"w":23,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/hoothoot": { "frame": {"x":1682,"y":894,"w":19,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":32,"w":19,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/hoppip": { "frame": {"x":1524,"y":601,"w":24,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":32,"w":24,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/horsea": { "frame": {"x":1809,"y":1173,"w":20,"h":19}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":35,"w":20,"h":19}, "sourceSize": {"w":68,"h":56} }, "regular/houndoom-mega": { "frame": {"x":1745,"y":231,"w":25,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":26,"w":25,"h":29}, "sourceSize": {"w":68,"h":56} }, "regular/houndoom": { "frame": {"x":1867,"y":542,"w":22,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":29,"w":22,"h":25}, "sourceSize": {"w":68,"h":56} }, "regular/houndour": { "frame": {"x":1541,"y":1231,"w":21,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":32,"w":21,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/huntail": { "frame": {"x":1130,"y":775,"w":27,"h":26}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":22,"y":29,"w":27,"h":26}, "sourceSize": {"w":68,"h":56} }, "regular/hydreigon": { "frame": {"x":625,"y":392,"w":44,"h":31}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":11,"y":22,"w":44,"h":31}, "sourceSize": {"w":68,"h":56} }, "regular/hypno": { "frame": {"x":959,"y":271,"w":42,"h":37}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":12,"y":16,"w":42,"h":37}, "sourceSize": {"w":68,"h":56} }, "regular/igglybuff": { "frame": {"x":1867,"y":1142,"w":17,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":34,"w":17,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/illumise": { "frame": {"x":1573,"y":1153,"w":21,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":31,"w":21,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/impidimp": { "frame": {"x":1682,"y":918,"w":19,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":34,"w":19,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/incineroar": { "frame": {"x":582,"y":584,"w":36,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":22,"w":36,"h":33}, "sourceSize": {"w":68,"h":56} }, "regular/indeedee": { "frame": {"x":1864,"y":421,"w":24,"h":30}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":24,"w":24,"h":30}, "sourceSize": {"w":68,"h":56} }, "regular/infernape": { "frame": {"x":1075,"y":575,"w":28,"h":26}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":28,"w":28,"h":26}, "sourceSize": {"w":68,"h":56} }, "regular/inkay": { "frame": {"x":1683,"y":942,"w":20,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":32,"w":20,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/inteleon-gmax": { "frame": {"x":1,"y":385,"w":52,"h":52}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":6,"y":4,"w":52,"h":52}, "sourceSize": {"w":68,"h":56} }, "regular/inteleon": { "frame": {"x":1051,"y":85,"w":30,"h":47}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":8,"w":30,"h":47}, "sourceSize": {"w":68,"h":56} }, "regular/ivysaur": { "frame": {"x":1449,"y":1042,"w":23,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":32,"w":23,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/jangmo-o": { "frame": {"x":1313,"y":1080,"w":24,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":29,"w":24,"h":25}, "sourceSize": {"w":68,"h":56} }, "regular/jellicent": { "frame": {"x":780,"y":999,"w":32,"h":33}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":18,"y":21,"w":32,"h":33}, "sourceSize": {"w":68,"h":56} }, "regular/jigglypuff": { "frame": {"x":1683,"y":966,"w":20,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":32,"w":20,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/jirachi": { "frame": {"x":1524,"y":625,"w":24,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":32,"w":24,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/jolteon": { "frame": {"x":1737,"y":158,"w":30,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":30,"h":33}, "sourceSize": {"w":68,"h":56} }, "regular/joltik": { "frame": {"x":1322,"y":685,"w":23,"h":18}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":36,"w":23,"h":18}, "sourceSize": {"w":68,"h":56} }, "regular/jumpluff": { "frame": {"x":1396,"y":759,"w":24,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":30,"w":24,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/jynx": { "frame": {"x":1168,"y":49,"w":46,"h":35}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":12,"y":18,"w":46,"h":35}, "sourceSize": {"w":68,"h":56} }, "regular/kabuto": { "frame": {"x":1925,"y":1094,"w":18,"h":15}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":25,"y":39,"w":18,"h":15}, "sourceSize": {"w":68,"h":56} }, "regular/kabutops": { "frame": {"x":545,"y":583,"w":35,"h":34}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":15,"y":19,"w":35,"h":34}, "sourceSize": {"w":68,"h":56} }, "regular/kadabra": { "frame": {"x":1717,"y":296,"w":31,"h":27}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":18,"y":27,"w":31,"h":27}, "sourceSize": {"w":68,"h":56} }, "regular/kakuna": { "frame": {"x":1952,"y":937,"w":15,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":34,"w":15,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/kangaskhan-mega": { "frame": {"x":857,"y":1254,"w":32,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":30,"w":32,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/kangaskhan": { "frame": {"x":1465,"y":119,"w":37,"h":35}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":20,"w":37,"h":35}, "sourceSize": {"w":68,"h":56} }, "regular/karrablast": { "frame": {"x":1488,"y":553,"w":14,"h":19}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":27,"y":35,"w":14,"h":19}, "sourceSize": {"w":68,"h":56} }, "regular/kartana": { "frame": {"x":226,"y":527,"w":46,"h":39}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":11,"y":13,"w":46,"h":39}, "sourceSize": {"w":68,"h":56} }, "regular/kecleon": { "frame": {"x":1592,"y":1037,"w":22,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":32,"w":22,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/keldeo-resolute": { "frame": {"x":956,"y":83,"w":44,"h":36}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":11,"y":18,"w":44,"h":36}, "sourceSize": {"w":68,"h":56} }, "regular/keldeo": { "frame": {"x":270,"y":765,"w":37,"h":37}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":17,"w":37,"h":37}, "sourceSize": {"w":68,"h":56} }, "regular/kingdra": { "frame": {"x":665,"y":354,"w":32,"h":36}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":13,"w":32,"h":36}, "sourceSize": {"w":68,"h":56} }, "regular/kingler-gmax": { "frame": {"x":254,"y":50,"w":51,"h":40}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":9,"y":16,"w":51,"h":40}, "sourceSize": {"w":68,"h":56} }, "regular/kingler": { "frame": {"x":309,"y":306,"w":46,"h":40}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":11,"y":16,"w":46,"h":40}, "sourceSize": {"w":68,"h":56} }, "regular/kirlia": { "frame": {"x":1222,"y":891,"w":20,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":29,"w":20,"h":25}, "sourceSize": {"w":68,"h":56} }, "regular/klang": { "frame": {"x":1831,"y":366,"w":29,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":33,"w":29,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/klefki": { "frame": {"x":1387,"y":82,"w":40,"h":34}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":14,"y":20,"w":40,"h":34}, "sourceSize": {"w":68,"h":56} }, "regular/klink": { "frame": {"x":1074,"y":1150,"w":24,"h":18}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":35,"w":24,"h":18}, "sourceSize": {"w":68,"h":56} }, "regular/klinklang": { "frame": {"x":1504,"y":119,"w":38,"h":34}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":21,"w":38,"h":34}, "sourceSize": {"w":68,"h":56} }, "regular/koffing": { "frame": {"x":1041,"y":792,"w":27,"h":28}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":28,"w":27,"h":28}, "sourceSize": {"w":68,"h":56} }, "regular/komala": { "frame": {"x":1449,"y":1066,"w":23,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":30,"w":23,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/kommo-o": { "frame": {"x":301,"y":1194,"w":36,"h":34}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":22,"w":36,"h":34}, "sourceSize": {"w":68,"h":56} }, "regular/krabby": { "frame": {"x":1102,"y":465,"w":30,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":31,"w":30,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/kricketot": { "frame": {"x":1438,"y":1177,"w":19,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":29,"w":19,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/kricketune": { "frame": {"x":1252,"y":661,"w":22,"h":26}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":28,"w":22,"h":26}, "sourceSize": {"w":68,"h":56} }, "regular/krokorok": { "frame": {"x":1149,"y":1005,"w":27,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":31,"w":27,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/krookodile": { "frame": {"x":581,"y":916,"w":34,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":22,"w":34,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/kubfu": { "frame": {"x":1437,"y":1151,"w":20,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":28,"w":20,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/kyogre-primal": { "frame": {"x":1239,"y":374,"w":38,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":16,"y":32,"w":38,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/kyogre": { "frame": {"x":71,"y":107,"w":60,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":3,"y":24,"w":60,"h":29}, "sourceSize": {"w":68,"h":56} }, "regular/kyurem-black": { "frame": {"x":309,"y":348,"w":46,"h":39}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":14,"y":17,"w":46,"h":39}, "sourceSize": {"w":68,"h":56} }, "regular/kyurem-white": { "frame": {"x":1,"y":929,"w":54,"h":43}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":12,"y":13,"w":54,"h":43}, "sourceSize": {"w":68,"h":56} }, "regular/kyurem": { "frame": {"x":502,"y":272,"w":49,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":8,"y":22,"w":49,"h":33}, "sourceSize": {"w":68,"h":56} }, "regular/lairon": { "frame": {"x":1379,"y":967,"w":25,"h":19}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":22,"y":35,"w":25,"h":19}, "sourceSize": {"w":68,"h":56} }, "regular/lampent": { "frame": {"x":1601,"y":796,"w":21,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":34,"w":21,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/landorus-therian": { "frame": {"x":496,"y":433,"w":39,"h":43}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":16,"y":11,"w":39,"h":43}, "sourceSize": {"w":68,"h":56} }, "regular/landorus": { "frame": {"x":1589,"y":81,"w":39,"h":37}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":13,"y":17,"w":39,"h":37}, "sourceSize": {"w":68,"h":56} }, "regular/lanturn": { "frame": {"x":412,"y":924,"w":41,"h":26}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":13,"y":29,"w":41,"h":26}, "sourceSize": {"w":68,"h":56} }, "regular/lapras-gmax": { "frame": {"x":129,"y":339,"w":48,"h":42}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":11,"y":14,"w":48,"h":42}, "sourceSize": {"w":68,"h":56} }, "regular/lapras": { "frame": {"x":192,"y":1059,"w":34,"h":38}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":17,"w":34,"h":38}, "sourceSize": {"w":68,"h":56} }, "regular/larvesta": { "frame": {"x":1613,"y":1195,"w":22,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":33,"w":22,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/larvitar": { "frame": {"x":1725,"y":1109,"w":17,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":32,"w":17,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/latias-mega": { "frame": {"x":700,"y":580,"w":37,"h":26}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":28,"w":37,"h":26}, "sourceSize": {"w":68,"h":56} }, "regular/latias": { "frame": {"x":474,"y":1182,"w":41,"h":30}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":16,"y":21,"w":41,"h":30}, "sourceSize": {"w":68,"h":56} }, "regular/latios-mega": { "frame": {"x":739,"y":580,"w":37,"h":26}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":28,"w":37,"h":26}, "sourceSize": {"w":68,"h":56} }, "regular/latios": { "frame": {"x":1345,"y":48,"w":47,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":13,"y":19,"w":47,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/leafeon": { "frame": {"x":773,"y":545,"w":35,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":22,"w":35,"h":33}, "sourceSize": {"w":68,"h":56} }, "regular/leavanny": { "frame": {"x":1975,"y":604,"w":16,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":31,"w":16,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/ledian": { "frame": {"x":1475,"y":944,"w":21,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":31,"w":21,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/ledyba": { "frame": {"x":1928,"y":851,"w":18,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":34,"w":18,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/lickilicky": { "frame": {"x":625,"y":438,"w":32,"h":34}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":18,"w":32,"h":34}, "sourceSize": {"w":68,"h":56} }, "regular/lickitung": { "frame": {"x":1693,"y":592,"w":25,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":35,"w":25,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/liepard": { "frame": {"x":1394,"y":229,"w":35,"h":37}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":18,"w":35,"h":37}, "sourceSize": {"w":68,"h":56} }, "regular/lileep": { "frame": {"x":1683,"y":990,"w":20,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":32,"w":20,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/lilligant": { "frame": {"x":612,"y":878,"w":30,"h":36}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":17,"w":30,"h":36}, "sourceSize": {"w":68,"h":56} }, "regular/lillipup": { "frame": {"x":1766,"y":1169,"w":20,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":34,"w":20,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/linoone-galar": { "frame": {"x":1524,"y":649,"w":24,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":32,"w":24,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/linoone": { "frame": {"x":1523,"y":699,"w":24,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":32,"w":24,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/litleo": { "frame": {"x":1930,"y":620,"w":23,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":32,"w":23,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/litten": { "frame": {"x":1146,"y":1255,"w":27,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":31,"w":27,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/litwick": { "frame": {"x":1958,"y":730,"w":15,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":27,"y":34,"w":15,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/lombre": { "frame": {"x":1474,"y":1046,"w":21,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":30,"w":21,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/lopunny-mega": { "frame": {"x":728,"y":700,"w":35,"h":26}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":29,"w":35,"h":26}, "sourceSize": {"w":68,"h":56} }, "regular/lopunny": { "frame": {"x":1357,"y":269,"w":36,"h":34}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":20,"w":36,"h":34}, "sourceSize": {"w":68,"h":56} }, "regular/lotad": { "frame": {"x":1946,"y":1030,"w":19,"h":17}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":37,"w":19,"h":17}, "sourceSize": {"w":68,"h":56} }, "regular/loudred": { "frame": {"x":1030,"y":1198,"w":23,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":29,"w":23,"h":25}, "sourceSize": {"w":68,"h":56} }, "regular/lucario-mega": { "frame": {"x":1241,"y":690,"w":21,"h":26}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":28,"w":21,"h":26}, "sourceSize": {"w":68,"h":56} }, "regular/lucario": { "frame": {"x":765,"y":701,"w":26,"h":37}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":19,"w":26,"h":37}, "sourceSize": {"w":68,"h":56} }, "regular/ludicolo": { "frame": {"x":400,"y":564,"w":38,"h":40}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":15,"y":15,"w":38,"h":40}, "sourceSize": {"w":68,"h":56} }, "regular/lugia-shadow": { "frame": {"x":140,"y":631,"w":47,"h":42}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":12,"y":8,"w":47,"h":42}, "sourceSize": {"w":68,"h":56} }, "regular/lugia": { "frame": {"x":140,"y":680,"w":47,"h":42}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":12,"y":8,"w":47,"h":42}, "sourceSize": {"w":68,"h":56} }, "regular/lumineon": { "frame": {"x":1313,"y":1163,"w":24,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":29,"w":24,"h":25}, "sourceSize": {"w":68,"h":56} }, "regular/lunala": { "frame": {"x":535,"y":474,"w":42,"h":40}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":13,"y":13,"w":42,"h":40}, "sourceSize": {"w":68,"h":56} }, "regular/lunatone": { "frame": {"x":984,"y":460,"w":20,"h":26}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":29,"w":20,"h":26}, "sourceSize": {"w":68,"h":56} }, "regular/lurantis": { "frame": {"x":850,"y":501,"w":29,"h":35}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":17,"w":29,"h":35}, "sourceSize": {"w":68,"h":56} }, "regular/luvdisc": { "frame": {"x":1644,"y":802,"w":14,"h":19}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":27,"y":35,"w":14,"h":19}, "sourceSize": {"w":68,"h":56} }, "regular/luxio": { "frame": {"x":925,"y":1255,"w":32,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":31,"w":32,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/luxray": { "frame": {"x":1861,"y":158,"w":35,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":20,"w":35,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/lycanroc-dusk": { "frame": {"x":1660,"y":195,"w":34,"h":35}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":17,"w":34,"h":35}, "sourceSize": {"w":68,"h":56} }, "regular/lycanroc-midnight": { "frame": {"x":850,"y":532,"w":30,"h":35}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":17,"w":30,"h":35}, "sourceSize": {"w":68,"h":56} }, "regular/lycanroc": { "frame": {"x":845,"y":871,"w":34,"h":30}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":18,"y":22,"w":34,"h":30}, "sourceSize": {"w":68,"h":56} }, "regular/machamp-gmax": { "frame": {"x":1500,"y":1,"w":46,"h":48}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":9,"y":7,"w":46,"h":48}, "sourceSize": {"w":68,"h":56} }, "regular/machamp": { "frame": {"x":842,"y":230,"w":42,"h":38}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":12,"y":16,"w":42,"h":38}, "sourceSize": {"w":68,"h":56} }, "regular/machoke": { "frame": {"x":1072,"y":1090,"w":28,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":30,"w":28,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/machop": { "frame": {"x":1484,"y":1138,"w":18,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":32,"w":18,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/magby": { "frame": {"x":1703,"y":868,"w":18,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":32,"w":18,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/magcargo": { "frame": {"x":1422,"y":726,"w":23,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":30,"w":23,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/magearna-original": { "frame": {"x":421,"y":967,"w":30,"h":41}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":13,"w":30,"h":41}, "sourceSize": {"w":68,"h":56} }, "regular/magearna": { "frame": {"x":429,"y":1010,"w":30,"h":41}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":13,"w":30,"h":41}, "sourceSize": {"w":68,"h":56} }, "regular/magikarp": { "frame": {"x":1865,"y":514,"w":24,"h":26}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":29,"w":24,"h":26}, "sourceSize": {"w":68,"h":56} }, "regular/magmar": { "frame": {"x":344,"y":885,"w":38,"h":38}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":16,"w":38,"h":38}, "sourceSize": {"w":68,"h":56} }, "regular/magmortar": { "frame": {"x":1174,"y":150,"w":39,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":19,"w":39,"h":33}, "sourceSize": {"w":68,"h":56} }, "regular/magnemite": { "frame": {"x":1345,"y":894,"w":25,"h":17}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":36,"w":25,"h":17}, "sourceSize": {"w":68,"h":56} }, "regular/magneton": { "frame": {"x":46,"y":1110,"w":41,"h":36}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":15,"y":18,"w":41,"h":36}, "sourceSize": {"w":68,"h":56} }, "regular/magnezone": { "frame": {"x":191,"y":1189,"w":41,"h":34}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":13,"y":20,"w":41,"h":34}, "sourceSize": {"w":68,"h":56} }, "regular/makuhita": { "frame": {"x":1744,"y":892,"w":20,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":33,"w":20,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/malamar": { "frame": {"x":887,"y":552,"w":29,"h":35}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":19,"y":21,"w":29,"h":35}, "sourceSize": {"w":68,"h":56} }, "regular/mamoswine": { "frame": {"x":927,"y":309,"w":37,"h":30}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":16,"y":25,"w":37,"h":30}, "sourceSize": {"w":68,"h":56} }, "regular/manaphy": { "frame": {"x":1523,"y":723,"w":24,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":32,"w":24,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/mandibuzz": { "frame": {"x":542,"y":1177,"w":27,"h":36}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":19,"w":27,"h":36}, "sourceSize": {"w":68,"h":56} }, "regular/manectric-mega": { "frame": {"x":1105,"y":575,"w":28,"h":26}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":29,"w":28,"h":26}, "sourceSize": {"w":68,"h":56} }, "regular/manectric": { "frame": {"x":860,"y":669,"w":31,"h":35}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":20,"w":31,"h":35}, "sourceSize": {"w":68,"h":56} }, "regular/mankey": { "frame": {"x":1920,"y":461,"w":30,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":32,"w":30,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/mantine": { "frame": {"x":129,"y":144,"w":47,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":12,"y":31,"w":47,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/mantyke": { "frame": {"x":1756,"y":724,"w":22,"h":19}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":34,"w":22,"h":19}, "sourceSize": {"w":68,"h":56} }, "regular/maractus": { "frame": {"x":1371,"y":446,"w":34,"h":35}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":20,"w":34,"h":35}, "sourceSize": {"w":68,"h":56} }, "regular/mareanie": { "frame": {"x":1523,"y":747,"w":24,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":31,"w":24,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/mareep": { "frame": {"x":1550,"y":604,"w":24,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":32,"w":24,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/marill": { "frame": {"x":1404,"y":994,"w":25,"h":19}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":35,"w":25,"h":19}, "sourceSize": {"w":68,"h":56} }, "regular/marowak-alola": { "frame": {"x":270,"y":644,"w":37,"h":41}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":13,"y":11,"w":37,"h":41}, "sourceSize": {"w":68,"h":56} }, "regular/marowak": { "frame": {"x":1898,"y":158,"w":35,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":14,"y":20,"w":35,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/marshadow-gen7": { "frame": {"x":611,"y":840,"w":29,"h":36}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":19,"w":29,"h":36}, "sourceSize": {"w":68,"h":56} }, "regular/marshadow": { "frame": {"x":611,"y":840,"w":29,"h":36}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":19,"w":29,"h":36}, "sourceSize": {"w":68,"h":56} }, "regular/marshtomp": { "frame": {"x":1575,"y":771,"w":22,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":31,"w":22,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/masquerain": { "frame": {"x":1046,"y":852,"w":28,"h":25}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":29,"w":28,"h":25}, "sourceSize": {"w":68,"h":56} }, "regular/mawile-mega": { "frame": {"x":790,"y":1224,"w":32,"h":28}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":27,"w":32,"h":28}, "sourceSize": {"w":68,"h":56} }, "regular/mawile": { "frame": {"x":747,"y":901,"w":36,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":15,"y":25,"w":36,"h":29}, "sourceSize": {"w":68,"h":56} }, "regular/medicham-mega": { "frame": {"x":1492,"y":294,"w":31,"h":29}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":26,"w":31,"h":29}, "sourceSize": {"w":68,"h":56} }, "regular/medicham": { "frame": {"x":1027,"y":1259,"w":19,"h":27}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":25,"y":27,"w":19,"h":27}, "sourceSize": {"w":68,"h":56} }, "regular/meditite": { "frame": {"x":1684,"y":1014,"w":19,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":32,"w":19,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/meganium": { "frame": {"x":1013,"y":732,"w":25,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":25,"w":25,"h":29}, "sourceSize": {"w":68,"h":56} }, "regular/melmetal-gmax": { "frame": {"x":1297,"y":1,"w":49,"h":44}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":9,"y":10,"w":49,"h":44}, "sourceSize": {"w":68,"h":56} }, "regular/melmetal": { "frame": {"x":204,"y":131,"w":52,"h":31}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":7,"y":24,"w":52,"h":31}, "sourceSize": {"w":68,"h":56} }, "regular/meloetta-pirouette": { "frame": {"x":1363,"y":1048,"w":17,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":29,"w":17,"h":25}, "sourceSize": {"w":68,"h":56} }, "regular/meloetta": { "frame": {"x":1975,"y":629,"w":16,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":31,"w":16,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/meltan": { "frame": {"x":1884,"y":787,"w":19,"h":19}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":36,"w":19,"h":19}, "sourceSize": {"w":68,"h":56} }, "regular/meowstic": { "frame": {"x":722,"y":1104,"w":30,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":24,"w":30,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/meowth-alola": { "frame": {"x":1550,"y":628,"w":23,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":31,"w":23,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/meowth-galar": { "frame": {"x":1549,"y":674,"w":23,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":31,"w":23,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/meowth-gmax": { "frame": {"x":824,"y":122,"w":32,"h":47}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":17,"y":7,"w":32,"h":47}, "sourceSize": {"w":68,"h":56} }, "regular/meowth": { "frame": {"x":1549,"y":699,"w":23,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":31,"w":23,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/mesprit": { "frame": {"x":1328,"y":305,"w":38,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":14,"y":23,"w":38,"h":29}, "sourceSize": {"w":68,"h":56} }, "regular/metagross-mega": { "frame": {"x":916,"y":611,"w":34,"h":26}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":16,"y":29,"w":34,"h":26}, "sourceSize": {"w":68,"h":56} }, "regular/metagross": { "frame": {"x":592,"y":159,"w":48,"h":27}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":11,"y":27,"w":48,"h":27}, "sourceSize": {"w":68,"h":56} }, "regular/metang": { "frame": {"x":1950,"y":435,"w":29,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":32,"w":29,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/metapod": { "frame": {"x":1917,"y":663,"w":14,"h":20}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":27,"y":34,"w":14,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/mew": { "frame": {"x":1062,"y":971,"w":25,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":26,"w":25,"h":27}, "sourceSize": {"w":68,"h":56} }, "regular/mewtwo-mega-x": { "frame": {"x":1086,"y":1255,"w":23,"h":28}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":22,"y":26,"w":23,"h":28}, "sourceSize": {"w":68,"h":56} }, "regular/mewtwo-mega-y": { "frame": {"x":1344,"y":336,"w":22,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":24,"w":22,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/mewtwo": { "frame": {"x":1250,"y":85,"w":34,"h":44}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":11,"w":34,"h":44}, "sourceSize": {"w":68,"h":56} }, "regular/mienfoo": { "frame": {"x":1744,"y":915,"w":20,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":33,"w":20,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/mienshao": { "frame": {"x":959,"y":310,"w":39,"h":35}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":18,"w":39,"h":35}, "sourceSize": {"w":68,"h":56} }, "regular/mightyena": { "frame": {"x":1175,"y":1255,"w":27,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":31,"w":27,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/milcery": { "frame": {"x":1928,"y":830,"w":18,"h":19}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":35,"w":18,"h":19}, "sourceSize": {"w":68,"h":56} }, "regular/milotic": { "frame": {"x":83,"y":1153,"w":42,"h":35}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":16,"y":21,"w":42,"h":35}, "sourceSize": {"w":68,"h":56} }, "regular/miltank": { "frame": {"x":1433,"y":191,"w":37,"h":35}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":18,"w":37,"h":35}, "sourceSize": {"w":68,"h":56} }, "regular/mime-jr": { "frame": {"x":1975,"y":654,"w":16,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":31,"w":16,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/mimikyu": { "frame": {"x":1526,"y":477,"w":25,"h":31}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":25,"w":25,"h":31}, "sourceSize": {"w":68,"h":56} }, "regular/minccino": { "frame": {"x":1447,"y":777,"w":24,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":33,"w":24,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/minior-blue-gen7": { "frame": {"x":1823,"y":724,"w":19,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":32,"w":19,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/minior-blue": { "frame": {"x":1823,"y":724,"w":19,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":32,"w":19,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/minior-green-gen7": { "frame": {"x":1787,"y":996,"w":19,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":32,"w":19,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/minior-green": { "frame": {"x":1787,"y":996,"w":19,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":32,"w":19,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/minior-indigo-gen7": { "frame": {"x":1787,"y":1018,"w":19,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":32,"w":19,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/minior-indigo": { "frame": {"x":1787,"y":1018,"w":19,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":32,"w":19,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/minior-orange-gen7": { "frame": {"x":1787,"y":1040,"w":19,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":32,"w":19,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/minior-orange": { "frame": {"x":1787,"y":1040,"w":19,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":32,"w":19,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/minior-red-gen7": { "frame": {"x":1787,"y":1062,"w":19,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":32,"w":19,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/minior-red": { "frame": {"x":1787,"y":1062,"w":19,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":32,"w":19,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/minior-violet-gen7": { "frame": {"x":1787,"y":1084,"w":19,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":32,"w":19,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/minior-violet": { "frame": {"x":1787,"y":1084,"w":19,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":32,"w":19,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/minior-yellow-gen7": { "frame": {"x":1787,"y":1106,"w":19,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":32,"w":19,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/minior-yellow": { "frame": {"x":1787,"y":1106,"w":19,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":32,"w":19,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/minior": { "frame": {"x":1787,"y":1128,"w":19,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":32,"w":19,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/minun": { "frame": {"x":1808,"y":929,"w":18,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":33,"w":18,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/misdreavus": { "frame": {"x":1808,"y":952,"w":18,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":33,"w":18,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/mismagius": { "frame": {"x":986,"y":669,"w":21,"h":30}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":26,"w":21,"h":30}, "sourceSize": {"w":68,"h":56} }, "regular/moltres-galar": { "frame": {"x":226,"y":386,"w":43,"h":44}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":12,"y":10,"w":43,"h":44}, "sourceSize": {"w":68,"h":56} }, "regular/moltres": { "frame": {"x":1348,"y":1,"w":49,"h":45}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":14,"y":8,"w":49,"h":45}, "sourceSize": {"w":68,"h":56} }, "regular/monferno": { "frame": {"x":1313,"y":1190,"w":24,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":30,"w":24,"h":25}, "sourceSize": {"w":68,"h":56} }, "regular/morelull": { "frame": {"x":581,"y":950,"w":15,"h":26}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":27,"y":28,"w":15,"h":26}, "sourceSize": {"w":68,"h":56} }, "regular/morgrem": { "frame": {"x":1319,"y":732,"w":24,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":31,"w":24,"h":25}, "sourceSize": {"w":68,"h":56} }, "regular/morpeko-hangry": { "frame": {"x":1640,"y":896,"w":19,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":31,"w":19,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/morpeko": { "frame": {"x":1640,"y":921,"w":19,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":31,"w":19,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/mothim": { "frame": {"x":592,"y":209,"w":27,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":31,"w":27,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/mr-mime-galar": { "frame": {"x":615,"y":725,"w":35,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":23,"w":35,"h":33}, "sourceSize": {"w":68,"h":56} }, "regular/mr-mime": { "frame": {"x":1754,"y":48,"w":39,"h":36}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":14,"y":19,"w":39,"h":36}, "sourceSize": {"w":68,"h":56} }, "regular/mr-rime": { "frame": {"x":1202,"y":374,"w":35,"h":35}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":21,"w":35,"h":35}, "sourceSize": {"w":68,"h":56} }, "regular/mudbray": { "frame": {"x":1314,"y":1053,"w":23,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":29,"w":23,"h":25}, "sourceSize": {"w":68,"h":56} }, "regular/mudkip": { "frame": {"x":1605,"y":1250,"w":21,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":34,"w":21,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/mudsdale": { "frame": {"x":810,"y":533,"w":35,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":23,"w":35,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/muk-alola": { "frame": {"x":1951,"y":487,"w":28,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":27,"w":28,"h":27}, "sourceSize": {"w":68,"h":56} }, "regular/muk": { "frame": {"x":1102,"y":517,"w":28,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":27,"w":28,"h":27}, "sourceSize": {"w":68,"h":56} }, "regular/munchlax": { "frame": {"x":1808,"y":860,"w":16,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":33,"w":16,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/munna": { "frame": {"x":1850,"y":1220,"w":17,"h":16}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":38,"w":17,"h":16}, "sourceSize": {"w":68,"h":56} }, "regular/murkrow": { "frame": {"x":1594,"y":893,"w":21,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":31,"w":21,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/musharna": { "frame": {"x":816,"y":934,"w":32,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":26,"w":32,"h":29}, "sourceSize": {"w":68,"h":56} }, "regular/naganadel": { "frame": {"x":507,"y":190,"w":41,"h":43}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":17,"y":8,"w":41,"h":43}, "sourceSize": {"w":68,"h":56} }, "regular/natu": { "frame": {"x":1906,"y":808,"w":19,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":34,"w":19,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/necrozma-dawn": { "frame": {"x":1800,"y":1,"w":48,"h":45}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":10,"y":11,"w":48,"h":45}, "sourceSize": {"w":68,"h":56} }, "regular/necrozma-dusk": { "frame": {"x":1,"y":493,"w":55,"h":48}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":9,"y":8,"w":55,"h":48}, "sourceSize": {"w":68,"h":56} }, "regular/necrozma-ultra": { "frame": {"x":442,"y":590,"w":37,"h":30}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":16,"y":25,"w":37,"h":30}, "sourceSize": {"w":68,"h":56} }, "regular/necrozma": { "frame": {"x":821,"y":82,"w":43,"h":38}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":12,"y":17,"w":43,"h":38}, "sourceSize": {"w":68,"h":56} }, "regular/nickit": { "frame": {"x":1241,"y":718,"w":26,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":31,"w":26,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/nidoking": { "frame": {"x":869,"y":160,"w":44,"h":35}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":13,"y":19,"w":44,"h":35}, "sourceSize": {"w":68,"h":56} }, "regular/nidoqueen": { "frame": {"x":810,"y":423,"w":37,"h":37}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":16,"w":37,"h":37}, "sourceSize": {"w":68,"h":56} }, "regular/nidoran-f": { "frame": {"x":1744,"y":938,"w":20,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":33,"w":20,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/nidoran-m": { "frame": {"x":1684,"y":1062,"w":20,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":32,"w":20,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/nidorina": { "frame": {"x":1433,"y":1205,"w":21,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":30,"w":21,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/nidorino": { "frame": {"x":1800,"y":615,"w":21,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":24,"y":30,"w":21,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/nihilego": { "frame": {"x":609,"y":1016,"w":31,"h":33}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":17,"w":31,"h":33}, "sourceSize": {"w":68,"h":56} }, "regular/nincada": { "frame": {"x":1260,"y":1262,"w":25,"h":16}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":38,"w":25,"h":16}, "sourceSize": {"w":68,"h":56} }, "regular/ninetales-alola": { "frame": {"x":778,"y":580,"w":32,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":28,"w":32,"h":27}, "sourceSize": {"w":68,"h":56} }, "regular/ninetales": { "frame": {"x":1675,"y":49,"w":40,"h":35}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":20,"w":40,"h":35}, "sourceSize": {"w":68,"h":56} }, "regular/ninjask": { "frame": {"x":689,"y":666,"w":36,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":22,"w":36,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/noctowl": { "frame": {"x":737,"y":129,"w":25,"h":40}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":22,"y":16,"w":25,"h":40}, "sourceSize": {"w":68,"h":56} }, "regular/noibat": { "frame": {"x":1520,"y":818,"w":23,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":30,"w":23,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/noivern": { "frame": {"x":312,"y":568,"w":44,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":14,"y":23,"w":44,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/nosepass": { "frame": {"x":1927,"y":808,"w":19,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":34,"w":19,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/numel": { "frame": {"x":1685,"y":1196,"w":21,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":34,"w":21,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/nuzleaf": { "frame": {"x":1363,"y":1075,"w":18,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":29,"w":18,"h":25}, "sourceSize": {"w":68,"h":56} }, "regular/obstagoon": { "frame": {"x":884,"y":1003,"w":31,"h":33}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":17,"y":21,"w":31,"h":33}, "sourceSize": {"w":68,"h":56} }, "regular/octillery": { "frame": {"x":1891,"y":543,"w":29,"h":28}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":28,"w":29,"h":28}, "sourceSize": {"w":68,"h":56} }, "regular/oddish": { "frame": {"x":1766,"y":1012,"w":19,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":33,"w":19,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/omanyte": { "frame": {"x":1767,"y":1255,"w":20,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":34,"w":20,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/omastar": { "frame": {"x":51,"y":1242,"w":41,"h":36}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":17,"w":41,"h":36}, "sourceSize": {"w":68,"h":56} }, "regular/onix": { "frame": {"x":46,"y":1065,"w":35,"h":43}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":10,"w":35,"h":43}, "sourceSize": {"w":68,"h":56} }, "regular/oranguru": { "frame": {"x":589,"y":108,"w":49,"h":30}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":9,"y":26,"w":49,"h":30}, "sourceSize": {"w":68,"h":56} }, "regular/orbeetle-gmax": { "frame": {"x":1,"y":1153,"w":54,"h":42}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":11,"y":11,"w":54,"h":42}, "sourceSize": {"w":68,"h":56} }, "regular/orbeetle": { "frame": {"x":865,"y":706,"w":31,"h":35}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":18,"w":31,"h":35}, "sourceSize": {"w":68,"h":56} }, "regular/oricorio-pau": { "frame": {"x":1703,"y":637,"w":20,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":27,"y":30,"w":20,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/oricorio-pom-pom": { "frame": {"x":1592,"y":1061,"w":22,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":31,"w":22,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/oricorio-sensu": { "frame": {"x":1357,"y":940,"w":19,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":29,"w":19,"h":25}, "sourceSize": {"w":68,"h":56} }, "regular/oricorio": { "frame": {"x":1766,"y":1035,"w":19,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":32,"w":19,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/oshawott": { "frame": {"x":1847,"y":983,"w":18,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":27,"y":34,"w":18,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/pachirisu": { "frame": {"x":1319,"y":759,"w":24,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":29,"w":24,"h":25}, "sourceSize": {"w":68,"h":56} }, "regular/palkia": { "frame": {"x":184,"y":527,"w":47,"h":40}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":10,"y":14,"w":47,"h":40}, "sourceSize": {"w":68,"h":56} }, "regular/palossand": { "frame": {"x":617,"y":1247,"w":31,"h":33}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":18,"y":23,"w":31,"h":33}, "sourceSize": {"w":68,"h":56} }, "regular/palpitoad": { "frame": {"x":1817,"y":787,"w":20,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":34,"w":20,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/pancham": { "frame": {"x":1956,"y":665,"w":17,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":33,"w":17,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/pangoro": { "frame": {"x":581,"y":619,"w":35,"h":34}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":22,"w":35,"h":34}, "sourceSize": {"w":68,"h":56} }, "regular/panpour": { "frame": {"x":1549,"y":724,"w":23,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":31,"w":23,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/pansage": { "frame": {"x":1474,"y":969,"w":22,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":31,"w":22,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/pansear": { "frame": {"x":1546,"y":1085,"w":22,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":32,"w":22,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/paras": { "frame": {"x":1574,"y":675,"w":24,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":32,"w":24,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/parasect": { "frame": {"x":1370,"y":813,"w":24,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":30,"w":24,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/passimian": { "frame": {"x":311,"y":639,"w":44,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":14,"y":24,"w":44,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/patrat": { "frame": {"x":1756,"y":702,"w":22,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":34,"w":22,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/pawniard": { "frame": {"x":1710,"y":1231,"w":16,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":32,"w":16,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/pelipper": { "frame": {"x":888,"y":460,"w":36,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":27,"w":36,"h":29}, "sourceSize": {"w":68,"h":56} }, "regular/perrserker": { "frame": {"x":1414,"y":483,"w":28,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":21,"w":28,"h":33}, "sourceSize": {"w":68,"h":56} }, "regular/persian-alola": { "frame": {"x":1283,"y":997,"w":26,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":30,"w":26,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/persian": { "frame": {"x":401,"y":712,"w":39,"h":39}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":12,"y":16,"w":39,"h":39}, "sourceSize": {"w":68,"h":56} }, "regular/petilil": { "frame": {"x":1891,"y":958,"w":14,"h":20}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":27,"y":34,"w":14,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/phanpy": { "frame": {"x":1778,"y":788,"w":22,"h":18}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":36,"w":22,"h":18}, "sourceSize": {"w":68,"h":56} }, "regular/phantump": { "frame": {"x":1209,"y":1117,"w":27,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":19,"y":31,"w":27,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/pheromosa": { "frame": {"x":225,"y":432,"w":45,"h":42}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":13,"y":10,"w":45,"h":42}, "sourceSize": {"w":68,"h":56} }, "regular/phione": { "frame": {"x":1367,"y":1259,"w":25,"h":19}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":35,"w":25,"h":19}, "sourceSize": {"w":68,"h":56} }, "regular/pichu-spiky-eared": { "frame": {"x":1808,"y":883,"w":17,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":33,"w":17,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/pichu": { "frame": {"x":1808,"y":906,"w":17,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":33,"w":17,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/pidgeot-mega": { "frame": {"x":656,"y":633,"w":37,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":26,"w":37,"h":29}, "sourceSize": {"w":68,"h":56} }, "regular/pidgeot": { "frame": {"x":891,"y":348,"w":37,"h":36}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":19,"w":37,"h":36}, "sourceSize": {"w":68,"h":56} }, "regular/pidgeotto": { "frame": {"x":1520,"y":842,"w":23,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":32,"w":23,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/pidgey": { "frame": {"x":1840,"y":830,"w":20,"h":19}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":35,"w":20,"h":19}, "sourceSize": {"w":68,"h":56} }, "regular/pidove": { "frame": {"x":1928,"y":896,"w":18,"h":18}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":36,"w":18,"h":18}, "sourceSize": {"w":68,"h":56} }, "regular/pignite": { "frame": {"x":1396,"y":785,"w":25,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":31,"w":25,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/pikachu-alola-cap": { "frame": {"x":1242,"y":746,"w":26,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":31,"w":26,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/pikachu-belle": { "frame": {"x":1243,"y":483,"w":24,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":27,"w":24,"h":27}, "sourceSize": {"w":68,"h":56} }, "regular/pikachu-cosplay": { "frame": {"x":1520,"y":916,"w":23,"h":22}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":32,"w":23,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/pikachu-gmax": { "frame": {"x":92,"y":169,"w":37,"h":53}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":3,"w":37,"h":53}, "sourceSize": {"w":68,"h":56} }, "regular/pikachu-hoenn-cap": { "frame": {"x":1242,"y":774,"w":26,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":31,"w":26,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/pikachu-kalos-cap": { "frame": {"x":1242,"y":802,"w":26,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":31,"w":26,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/pikachu-libre": { "frame": {"x":1544,"y":866,"w":23,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":32,"w":23,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/pikachu-original-cap": { "frame": {"x":1242,"y":830,"w":26,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":31,"w":26,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/pikachu-partner-cap": { "frame": {"x":1267,"y":745,"w":26,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":31,"w":26,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/pikachu-phd": { "frame": {"x":1544,"y":890,"w":23,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":32,"w":23,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/pikachu-pop-star": { "frame": {"x":1268,"y":885,"w":26,"h":22}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":32,"w":26,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/pikachu-rock-star": { "frame": {"x":1544,"y":914,"w":23,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":32,"w":23,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/pikachu-sinnoh-cap": { "frame": {"x":1267,"y":773,"w":26,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":31,"w":26,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/pikachu-starter": { "frame": {"x":1863,"y":389,"w":30,"h":25}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":17,"y":31,"w":30,"h":25}, "sourceSize": {"w":68,"h":56} }, "regular/pikachu-unova-cap": { "frame": {"x":1267,"y":801,"w":26,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":31,"w":26,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/pikachu-world-cap": { "frame": {"x":1267,"y":829,"w":26,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":31,"w":26,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/pikachu": { "frame": {"x":1520,"y":941,"w":23,"h":22}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":32,"w":23,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/pikipek": { "frame": {"x":1934,"y":599,"w":19,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":25,"y":30,"w":19,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/piloswine": { "frame": {"x":1473,"y":624,"w":24,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":31,"w":24,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/pincurchin": { "frame": {"x":1662,"y":1197,"w":21,"h":19}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":35,"w":21,"h":19}, "sourceSize": {"w":68,"h":56} }, "regular/pineco": { "frame": {"x":1766,"y":1058,"w":19,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":33,"w":19,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/pinsir-mega": { "frame": {"x":655,"y":1042,"w":33,"h":27}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":19,"y":28,"w":33,"h":27}, "sourceSize": {"w":68,"h":56} }, "regular/pinsir": { "frame": {"x":97,"y":488,"w":48,"h":37}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":7,"y":16,"w":48,"h":37}, "sourceSize": {"w":68,"h":56} }, "regular/piplup": { "frame": {"x":1827,"y":1238,"w":15,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":27,"y":33,"w":15,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/plusle": { "frame": {"x":1808,"y":975,"w":18,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":33,"w":18,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/poipole": { "frame": {"x":1161,"y":1210,"w":25,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":27,"w":25,"h":27}, "sourceSize": {"w":68,"h":56} }, "regular/politoed": { "frame": {"x":898,"y":706,"w":26,"h":35}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":19,"w":26,"h":35}, "sourceSize": {"w":68,"h":56} }, "regular/poliwag": { "frame": {"x":1599,"y":753,"w":22,"h":17}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":37,"w":22,"h":17}, "sourceSize": {"w":68,"h":56} }, "regular/poliwhirl": { "frame": {"x":1445,"y":896,"w":24,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":33,"w":24,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/poliwrath": { "frame": {"x":309,"y":772,"w":43,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":12,"y":21,"w":43,"h":33}, "sourceSize": {"w":68,"h":56} }, "regular/polteageist": { "frame": {"x":1617,"y":261,"w":30,"h":31}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":19,"y":23,"w":30,"h":31}, "sourceSize": {"w":68,"h":56} }, "regular/ponyta-galar": { "frame": {"x":1267,"y":857,"w":26,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":31,"w":26,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/ponyta": { "frame": {"x":1102,"y":1198,"w":26,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":29,"w":26,"h":25}, "sourceSize": {"w":68,"h":56} }, "regular/poochyena": { "frame": {"x":1644,"y":679,"w":23,"h":20}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":34,"w":23,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/popplio": { "frame": {"x":1684,"y":1038,"w":19,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":32,"w":19,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/porygon-z": { "frame": {"x":276,"y":843,"w":29,"h":38}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":12,"w":29,"h":38}, "sourceSize": {"w":68,"h":56} }, "regular/porygon": { "frame": {"x":1744,"y":1255,"w":21,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":34,"w":21,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/porygon2": { "frame": {"x":1837,"y":248,"w":29,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":21,"w":29,"h":29}, "sourceSize": {"w":68,"h":56} }, "regular/primarina": { "frame": {"x":552,"y":190,"w":41,"h":38}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":12,"y":17,"w":41,"h":38}, "sourceSize": {"w":68,"h":56} }, "regular/primeape": { "frame": {"x":1006,"y":462,"w":30,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":29,"w":30,"h":25}, "sourceSize": {"w":68,"h":56} }, "regular/prinplup": { "frame": {"x":1572,"y":1109,"w":19,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":24,"y":30,"w":19,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/probopass": { "frame": {"x":1215,"y":864,"w":26,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":29,"w":26,"h":25}, "sourceSize": {"w":68,"h":56} }, "regular/psyduck": { "frame": {"x":1473,"y":1255,"w":20,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":31,"w":20,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/pumpkaboo-large": { "frame": {"x":1702,"y":844,"w":19,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":32,"w":19,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/pumpkaboo-small": { "frame": {"x":1623,"y":1131,"w":17,"h":19}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":33,"w":17,"h":19}, "sourceSize": {"w":68,"h":56} }, "regular/pumpkaboo-super": { "frame": {"x":1496,"y":817,"w":22,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":31,"w":22,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/pumpkaboo": { "frame": {"x":1766,"y":1081,"w":19,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":33,"w":19,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/pupitar": { "frame": {"x":1808,"y":998,"w":18,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":33,"w":18,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/purrloin": { "frame": {"x":1422,"y":752,"w":23,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":30,"w":23,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/purugly": { "frame": {"x":1396,"y":812,"w":25,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":31,"w":25,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/pyroar": { "frame": {"x":565,"y":1139,"w":34,"h":27}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":19,"y":27,"w":34,"h":27}, "sourceSize": {"w":68,"h":56} }, "regular/pyukumuku": { "frame": {"x":1066,"y":1000,"w":28,"h":22}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":34,"w":28,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/quagsire": { "frame": {"x":620,"y":584,"w":36,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":22,"w":36,"h":33}, "sourceSize": {"w":68,"h":56} }, "regular/quilava": { "frame": {"x":1382,"y":1021,"w":25,"h":22}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":22,"y":32,"w":25,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/quilladin": { "frame": {"x":1449,"y":598,"w":23,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":30,"w":23,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/qwilfish": { "frame": {"x":1526,"y":504,"w":31,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":32,"w":31,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/raboot": { "frame": {"x":1865,"y":311,"w":24,"h":31}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":24,"w":24,"h":31}, "sourceSize": {"w":68,"h":56} }, "regular/raichu-alola": { "frame": {"x":1836,"y":218,"w":28,"h":30}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":25,"w":28,"h":30}, "sourceSize": {"w":68,"h":56} }, "regular/raichu": { "frame": {"x":117,"y":1011,"w":41,"h":37}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":18,"w":41,"h":37}, "sourceSize": {"w":68,"h":56} }, "regular/raikou": { "frame": {"x":911,"y":121,"w":43,"h":37}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":16,"w":43,"h":37}, "sourceSize": {"w":68,"h":56} }, "regular/ralts": { "frame": {"x":1975,"y":725,"w":16,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":34,"w":16,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/rampardos": { "frame": {"x":1215,"y":835,"w":27,"h":25}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":29,"w":27,"h":25}, "sourceSize": {"w":68,"h":56} }, "regular/rapidash-galar": { "frame": {"x":1781,"y":122,"w":38,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":22,"w":38,"h":33}, "sourceSize": {"w":68,"h":56} }, "regular/rapidash": { "frame": {"x":1795,"y":48,"w":39,"h":36}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":18,"w":39,"h":36}, "sourceSize": {"w":68,"h":56} }, "regular/raticate-alola": { "frame": {"x":1187,"y":749,"w":27,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":30,"w":27,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/raticate": { "frame": {"x":1211,"y":1204,"w":27,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":31,"w":27,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/rattata-alola": { "frame": {"x":1575,"y":628,"w":23,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":29,"w":23,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/rattata": { "frame": {"x":1496,"y":842,"w":22,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":31,"w":22,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/rayquaza-mega": { "frame": {"x":1000,"y":310,"w":40,"h":27}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":14,"y":27,"w":40,"h":27}, "sourceSize": {"w":68,"h":56} }, "regular/rayquaza": { "frame": {"x":1,"y":823,"w":47,"h":51}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":13,"y":2,"w":47,"h":51}, "sourceSize": {"w":68,"h":56} }, "regular/regice": { "frame": {"x":46,"y":1020,"w":43,"h":34}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":15,"y":20,"w":43,"h":34}, "sourceSize": {"w":68,"h":56} }, "regular/regidrago": { "frame": {"x":781,"y":156,"w":42,"h":39}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":15,"y":17,"w":42,"h":39}, "sourceSize": {"w":68,"h":56} }, "regular/regieleki": { "frame": {"x":58,"y":171,"w":56,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":7,"y":22,"w":56,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/regigigas": { "frame": {"x":133,"y":55,"w":53,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":8,"y":21,"w":53,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/regirock": { "frame": {"x":1544,"y":119,"w":38,"h":34}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":20,"w":38,"h":34}, "sourceSize": {"w":68,"h":56} }, "regular/registeel": { "frame": {"x":1821,"y":123,"w":38,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":13,"y":21,"w":38,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/relicanth": { "frame": {"x":513,"y":938,"w":32,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":27,"w":32,"h":27}, "sourceSize": {"w":68,"h":56} }, "regular/remoraid": { "frame": {"x":1967,"y":896,"w":19,"h":18}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":36,"w":19,"h":18}, "sourceSize": {"w":68,"h":56} }, "regular/reshiram": { "frame": {"x":1,"y":985,"w":54,"h":43}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":10,"y":13,"w":54,"h":43}, "sourceSize": {"w":68,"h":56} }, "regular/reuniclus": { "frame": {"x":1544,"y":50,"w":48,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":13,"y":24,"w":48,"h":29}, "sourceSize": {"w":68,"h":56} }, "regular/rhydon": { "frame": {"x":405,"y":305,"w":46,"h":40}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":13,"y":15,"w":46,"h":40}, "sourceSize": {"w":68,"h":56} }, "regular/rhyhorn": { "frame": {"x":1723,"y":568,"w":26,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":32,"w":26,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/rhyperior": { "frame": {"x":870,"y":47,"w":48,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":14,"y":22,"w":48,"h":33}, "sourceSize": {"w":68,"h":56} }, "regular/ribombee": { "frame": {"x":857,"y":1166,"w":32,"h":30}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":25,"w":32,"h":30}, "sourceSize": {"w":68,"h":56} }, "regular/rillaboom-gmax": { "frame": {"x":71,"y":1,"w":64,"h":52}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":2,"y":4,"w":64,"h":52}, "sourceSize": {"w":68,"h":56} }, "regular/rillaboom": { "frame": {"x":961,"y":160,"w":38,"h":35}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":15,"y":20,"w":38,"h":35}, "sourceSize": {"w":68,"h":56} }, "regular/riolu": { "frame": {"x":1839,"y":764,"w":20,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":34,"w":20,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/rockruff": { "frame": {"x":1826,"y":615,"w":21,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":24,"y":30,"w":21,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/roggenrola": { "frame": {"x":594,"y":1027,"w":13,"h":19}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":28,"y":35,"w":13,"h":19}, "sourceSize": {"w":68,"h":56} }, "regular/rolycoly": { "frame": {"x":1723,"y":965,"w":22,"h":19}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":36,"w":22,"h":19}, "sourceSize": {"w":68,"h":56} }, "regular/rookidee": { "frame": {"x":1617,"y":1017,"w":21,"h":18}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":38,"w":21,"h":18}, "sourceSize": {"w":68,"h":56} }, "regular/roselia": { "frame": {"x":1187,"y":778,"w":27,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":30,"w":27,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/roserade": { "frame": {"x":427,"y":852,"w":27,"h":31}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":25,"w":27,"h":31}, "sourceSize": {"w":68,"h":56} }, "regular/rotom-fan": { "frame": {"x":1215,"y":150,"w":39,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":14,"y":23,"w":39,"h":33}, "sourceSize": {"w":68,"h":56} }, "regular/rotom-frost": { "frame": {"x":227,"y":1189,"w":41,"h":34}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":13,"y":22,"w":41,"h":34}, "sourceSize": {"w":68,"h":56} }, "regular/rotom-heat": { "frame": {"x":727,"y":667,"w":36,"h":31}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":25,"w":36,"h":31}, "sourceSize": {"w":68,"h":56} }, "regular/rotom-mow": { "frame": {"x":815,"y":999,"w":32,"h":33}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":18,"y":23,"w":32,"h":33}, "sourceSize": {"w":68,"h":56} }, "regular/rotom-wash": { "frame": {"x":1861,"y":123,"w":38,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":15,"y":23,"w":38,"h":33}, "sourceSize": {"w":68,"h":56} }, "regular/rotom": { "frame": {"x":1685,"y":324,"w":30,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":27,"w":30,"h":29}, "sourceSize": {"w":68,"h":56} }, "regular/rowlet": { "frame": {"x":1843,"y":851,"w":19,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":32,"w":19,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/rufflet": { "frame": {"x":1640,"y":946,"w":19,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":31,"w":19,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/runerigus": { "frame": {"x":350,"y":925,"w":42,"h":31}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":13,"y":23,"w":42,"h":31}, "sourceSize": {"w":68,"h":56} }, "regular/sableye-mega": { "frame": {"x":1715,"y":356,"w":30,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":25,"w":30,"h":29}, "sourceSize": {"w":68,"h":56} }, "regular/sableye": { "frame": {"x":738,"y":546,"w":33,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":14,"y":23,"w":33,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/salamence-mega": { "frame": {"x":697,"y":608,"w":37,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":15,"y":27,"w":37,"h":27}, "sourceSize": {"w":68,"h":56} }, "regular/salamence": { "frame": {"x":254,"y":925,"w":42,"h":30}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":13,"y":22,"w":42,"h":30}, "sourceSize": {"w":68,"h":56} }, "regular/salandit": { "frame": {"x":1822,"y":701,"w":21,"h":20}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":24,"y":33,"w":21,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/salazzle": { "frame": {"x":718,"y":1034,"w":29,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":23,"w":29,"h":33}, "sourceSize": {"w":68,"h":56} }, "regular/samurott": { "frame": {"x":688,"y":1138,"w":33,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":29,"w":33,"h":25}, "sourceSize": {"w":68,"h":56} }, "regular/sandaconda-gmax": { "frame": {"x":210,"y":164,"w":46,"h":44}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":11,"y":10,"w":46,"h":44}, "sourceSize": {"w":68,"h":56} }, "regular/sandaconda": { "frame": {"x":736,"y":608,"w":37,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":27,"w":37,"h":27}, "sourceSize": {"w":68,"h":56} }, "regular/sandile": { "frame": {"x":1677,"y":637,"w":24,"h":18}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":37,"w":24,"h":18}, "sourceSize": {"w":68,"h":56} }, "regular/sandshrew-alola": { "frame": {"x":1642,"y":727,"w":23,"h":20}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":34,"w":23,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/sandshrew": { "frame": {"x":1781,"y":679,"w":22,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":34,"w":22,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/sandslash-alola": { "frame": {"x":1187,"y":807,"w":27,"h":26}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":28,"w":27,"h":26}, "sourceSize": {"w":68,"h":56} }, "regular/sandslash": { "frame": {"x":787,"y":1101,"w":31,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":22,"w":31,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/sandygast": { "frame": {"x":1396,"y":598,"w":25,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":30,"w":25,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/sawk": { "frame": {"x":545,"y":656,"w":34,"h":34}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":21,"w":34,"h":34}, "sourceSize": {"w":68,"h":56} }, "regular/sawsbuck-autumn": { "frame": {"x":1180,"y":1117,"w":27,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":27,"w":27,"h":27}, "sourceSize": {"w":68,"h":56} }, "regular/sawsbuck-summer": { "frame": {"x":1295,"y":646,"w":25,"h":26}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":28,"w":25,"h":26}, "sourceSize": {"w":68,"h":56} }, "regular/sawsbuck-winter": { "frame": {"x":1264,"y":689,"w":25,"h":26}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":28,"w":25,"h":26}, "sourceSize": {"w":68,"h":56} }, "regular/sawsbuck": { "frame": {"x":1292,"y":717,"w":25,"h":26}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":28,"w":25,"h":26}, "sourceSize": {"w":68,"h":56} }, "regular/scatterbug": { "frame": {"x":1691,"y":1218,"w":16,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":31,"w":16,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/sceptile-mega": { "frame": {"x":1096,"y":303,"w":39,"h":29}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":16,"y":25,"w":39,"h":29}, "sourceSize": {"w":68,"h":56} }, "regular/sceptile": { "frame": {"x":1905,"y":47,"w":39,"h":36}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":15,"y":16,"w":39,"h":36}, "sourceSize": {"w":68,"h":56} }, "regular/scizor-mega": { "frame": {"x":1653,"y":324,"w":30,"h":30}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":25,"w":30,"h":30}, "sourceSize": {"w":68,"h":56} }, "regular/scizor": { "frame": {"x":1266,"y":409,"w":32,"h":37}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":18,"w":32,"h":37}, "sourceSize": {"w":68,"h":56} }, "regular/scolipede": { "frame": {"x":849,"y":423,"w":37,"h":37}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":15,"y":17,"w":37,"h":37}, "sourceSize": {"w":68,"h":56} }, "regular/scorbunny": { "frame": {"x":693,"y":90,"w":20,"h":30}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":24,"y":25,"w":20,"h":30}, "sourceSize": {"w":68,"h":56} }, "regular/scrafty": { "frame": {"x":746,"y":795,"w":30,"h":36}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":19,"w":30,"h":36}, "sourceSize": {"w":68,"h":56} }, "regular/scraggy": { "frame": {"x":1887,"y":1124,"w":17,"h":18}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":36,"w":17,"h":18}, "sourceSize": {"w":68,"h":56} }, "regular/scyther": { "frame": {"x":842,"y":270,"w":39,"h":41}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":13,"y":14,"w":39,"h":41}, "sourceSize": {"w":68,"h":56} }, "regular/seadra": { "frame": {"x":1751,"y":568,"w":26,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":32,"w":26,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/seaking": { "frame": {"x":439,"y":1096,"w":41,"h":31}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":13,"y":22,"w":41,"h":31}, "sourceSize": {"w":68,"h":56} }, "regular/sealeo": { "frame": {"x":900,"y":811,"w":28,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":34,"w":28,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/seedot": { "frame": {"x":1888,"y":873,"w":17,"h":19}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":35,"w":17,"h":19}, "sourceSize": {"w":68,"h":56} }, "regular/seel": { "frame": {"x":1234,"y":1092,"w":27,"h":25}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":29,"w":27,"h":25}, "sourceSize": {"w":68,"h":56} }, "regular/seismitoad": { "frame": {"x":695,"y":312,"w":40,"h":30}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":14,"y":25,"w":40,"h":30}, "sourceSize": {"w":68,"h":56} }, "regular/sentret": { "frame": {"x":1296,"y":85,"w":17,"h":28}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":28,"w":17,"h":28}, "sourceSize": {"w":68,"h":56} }, "regular/serperior": { "frame": {"x":987,"y":701,"w":30,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":19,"y":30,"w":30,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/servine": { "frame": {"x":1574,"y":699,"w":24,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":32,"w":24,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/seviper": { "frame": {"x":1382,"y":1048,"w":25,"h":22}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":32,"w":25,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/sewaddle": { "frame": {"x":1969,"y":938,"w":17,"h":19}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":35,"w":17,"h":19}, "sourceSize": {"w":68,"h":56} }, "regular/sharpedo-mega": { "frame": {"x":1964,"y":346,"w":27,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":26,"w":27,"h":29}, "sourceSize": {"w":68,"h":56} }, "regular/sharpedo": { "frame": {"x":304,"y":884,"w":38,"h":39}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":12,"w":38,"h":39}, "sourceSize": {"w":68,"h":56} }, "regular/shaymin-sky": { "frame": {"x":1448,"y":624,"w":23,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":30,"w":23,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/shaymin": { "frame": {"x":1905,"y":788,"w":20,"h":18}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":36,"w":20,"h":18}, "sourceSize": {"w":68,"h":56} }, "regular/shedinja": { "frame": {"x":1525,"y":358,"w":30,"h":30}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":24,"w":30,"h":30}, "sourceSize": {"w":68,"h":56} }, "regular/shelgon": { "frame": {"x":1496,"y":867,"w":22,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":31,"w":22,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/shellder": { "frame": {"x":1844,"y":701,"w":21,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":34,"w":21,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/shellos-east": { "frame": {"x":1549,"y":1201,"w":21,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":32,"w":21,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/shellos": { "frame": {"x":1711,"y":797,"w":19,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":32,"w":19,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/shelmet": { "frame": {"x":1732,"y":772,"w":20,"h":17}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":37,"w":20,"h":17}, "sourceSize": {"w":68,"h":56} }, "regular/shieldon": { "frame": {"x":1570,"y":1085,"w":22,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":32,"w":22,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/shiftry": { "frame": {"x":820,"y":46,"w":48,"h":34}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":12,"y":22,"w":48,"h":34}, "sourceSize": {"w":68,"h":56} }, "regular/shiinotic": { "frame": {"x":990,"y":1166,"w":31,"h":30}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":26,"w":31,"h":30}, "sourceSize": {"w":68,"h":56} }, "regular/shinx": { "frame": {"x":1301,"y":913,"w":26,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":22,"y":31,"w":26,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/shroomish": { "frame": {"x":1766,"y":1150,"w":20,"h":17}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":37,"w":20,"h":17}, "sourceSize": {"w":68,"h":56} }, "regular/shuckle": { "frame": {"x":926,"y":1224,"w":32,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":27,"w":32,"h":29}, "sourceSize": {"w":68,"h":56} }, "regular/shuppet": { "frame": {"x":1836,"y":1261,"w":17,"h":21}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":26,"y":32,"w":17,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/sigilyph": { "frame": {"x":264,"y":1104,"w":35,"h":39}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":16,"w":35,"h":39}, "sourceSize": {"w":68,"h":56} }, "regular/silcoon": { "frame": {"x":1667,"y":657,"w":23,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":34,"w":23,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/silicobra": { "frame": {"x":1744,"y":961,"w":20,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":33,"w":20,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/silvally-bug": { "frame": {"x":46,"y":975,"w":33,"h":43}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":13,"w":33,"h":43}, "sourceSize": {"w":68,"h":56} }, "regular/silvally-dark": { "frame": {"x":82,"y":1197,"w":33,"h":43}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":13,"w":33,"h":43}, "sourceSize": {"w":68,"h":56} }, "regular/silvally-dragon": { "frame": {"x":117,"y":1197,"w":33,"h":43}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":13,"w":33,"h":43}, "sourceSize": {"w":68,"h":56} }, "regular/silvally-electric": { "frame": {"x":81,"y":927,"w":33,"h":43}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":13,"w":33,"h":43}, "sourceSize": {"w":68,"h":56} }, "regular/silvally-fairy": { "frame": {"x":81,"y":972,"w":33,"h":43}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":13,"w":33,"h":43}, "sourceSize": {"w":68,"h":56} }, "regular/silvally-fighting": { "frame": {"x":82,"y":1017,"w":33,"h":43}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":13,"w":33,"h":43}, "sourceSize": {"w":68,"h":56} }, "regular/silvally-fire": { "frame": {"x":83,"y":1062,"w":33,"h":43}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":13,"w":33,"h":43}, "sourceSize": {"w":68,"h":56} }, "regular/silvally-flying": { "frame": {"x":84,"y":1107,"w":33,"h":43}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":13,"w":33,"h":43}, "sourceSize": {"w":68,"h":56} }, "regular/silvally-ghost": { "frame": {"x":156,"y":969,"w":33,"h":43}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":13,"w":33,"h":43}, "sourceSize": {"w":68,"h":56} }, "regular/silvally-grass": { "frame": {"x":156,"y":1144,"w":33,"h":43}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":13,"w":33,"h":43}, "sourceSize": {"w":68,"h":56} }, "regular/silvally-ground": { "frame": {"x":191,"y":969,"w":33,"h":43}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":13,"w":33,"h":43}, "sourceSize": {"w":68,"h":56} }, "regular/silvally-ice": { "frame": {"x":192,"y":1014,"w":33,"h":43}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":13,"w":33,"h":43}, "sourceSize": {"w":68,"h":56} }, "regular/silvally-poison": { "frame": {"x":193,"y":1099,"w":33,"h":43}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":13,"w":33,"h":43}, "sourceSize": {"w":68,"h":56} }, "regular/silvally-psychic": { "frame": {"x":191,"y":1144,"w":33,"h":43}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":13,"w":33,"h":43}, "sourceSize": {"w":68,"h":56} }, "regular/silvally-rock": { "frame": {"x":226,"y":969,"w":33,"h":43}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":13,"w":33,"h":43}, "sourceSize": {"w":68,"h":56} }, "regular/silvally-steel": { "frame": {"x":227,"y":1014,"w":33,"h":43}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":13,"w":33,"h":43}, "sourceSize": {"w":68,"h":56} }, "regular/silvally-water": { "frame": {"x":228,"y":1059,"w":33,"h":43}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":13,"w":33,"h":43}, "sourceSize": {"w":68,"h":56} }, "regular/silvally": { "frame": {"x":261,"y":969,"w":33,"h":43}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":13,"w":33,"h":43}, "sourceSize": {"w":68,"h":56} }, "regular/simipour": { "frame": {"x":1254,"y":942,"w":26,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":31,"w":26,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/simisage": { "frame": {"x":1164,"y":575,"w":27,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":27,"w":27,"h":27}, "sourceSize": {"w":68,"h":56} }, "regular/simisear": { "frame": {"x":1074,"y":1120,"w":28,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":30,"w":28,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/sinistea": { "frame": {"x":1788,"y":1173,"w":19,"h":16}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":38,"w":19,"h":16}, "sourceSize": {"w":68,"h":56} }, "regular/sirfetchd": { "frame": {"x":1952,"y":1,"w":39,"h":53}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":14,"y":3,"w":39,"h":53}, "sourceSize": {"w":68,"h":56} }, "regular/sizzlipede": { "frame": {"x":1007,"y":955,"w":23,"h":12}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":42,"w":23,"h":12}, "sourceSize": {"w":68,"h":56} }, "regular/skarmory": { "frame": {"x":184,"y":649,"w":39,"h":40}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":14,"w":39,"h":40}, "sourceSize": {"w":68,"h":56} }, "regular/skiddo": { "frame": {"x":1864,"y":851,"w":19,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":34,"w":19,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/skiploom": { "frame": {"x":1861,"y":787,"w":21,"h":19}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":35,"w":21,"h":19}, "sourceSize": {"w":68,"h":56} }, "regular/skitty": { "frame": {"x":1616,"y":1037,"w":22,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":32,"w":22,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/skorupi": { "frame": {"x":1310,"y":1025,"w":26,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":30,"w":26,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/skrelp": { "frame": {"x":1495,"y":1255,"w":20,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":31,"w":20,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/skuntank": { "frame": {"x":1006,"y":489,"w":30,"h":26}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":30,"w":30,"h":26}, "sourceSize": {"w":68,"h":56} }, "regular/skwovet": { "frame": {"x":1447,"y":674,"w":24,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":31,"w":24,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/slaking": { "frame": {"x":1964,"y":250,"w":30,"h":27}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":19,"y":28,"w":30,"h":27}, "sourceSize": {"w":68,"h":56} }, "regular/slakoth": { "frame": {"x":1802,"y":310,"w":27,"h":17}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":37,"w":27,"h":17}, "sourceSize": {"w":68,"h":56} }, "regular/sliggoo": { "frame": {"x":1930,"y":644,"w":17,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":26,"y":30,"w":17,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/slowbro-galar": { "frame": {"x":1373,"y":370,"w":33,"h":35}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":19,"w":33,"h":35}, "sourceSize": {"w":68,"h":56} }, "regular/slowbro-mega": { "frame": {"x":1041,"y":822,"w":27,"h":28}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":26,"w":27,"h":28}, "sourceSize": {"w":68,"h":56} }, "regular/slowbro": { "frame": {"x":311,"y":602,"w":43,"h":35}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":18,"w":43,"h":35}, "sourceSize": {"w":68,"h":56} }, "regular/slowking-galar": { "frame": {"x":704,"y":112,"w":31,"h":42}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":12,"w":31,"h":42}, "sourceSize": {"w":68,"h":56} }, "regular/slowking": { "frame": {"x":190,"y":925,"w":29,"h":42}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":10,"w":29,"h":42}, "sourceSize": {"w":68,"h":56} }, "regular/slowpoke-galar": { "frame": {"x":591,"y":997,"w":28,"h":16}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":40,"w":28,"h":16}, "sourceSize": {"w":68,"h":56} }, "regular/slowpoke": { "frame": {"x":1574,"y":723,"w":23,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":31,"w":23,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/slugma": { "frame": {"x":1640,"y":971,"w":19,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":31,"w":19,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/slurpuff": { "frame": {"x":820,"y":1101,"w":31,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":22,"w":31,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/smeargle": { "frame": {"x":1257,"y":970,"w":26,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":19,"y":31,"w":26,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/smoochum": { "frame": {"x":1975,"y":679,"w":16,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":32,"w":16,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/sneasel": { "frame": {"x":1644,"y":752,"w":19,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":31,"w":19,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/snivy": { "frame": {"x":1723,"y":989,"w":22,"h":19}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":35,"w":22,"h":19}, "sourceSize": {"w":68,"h":56} }, "regular/snom": { "frame": {"x":1869,"y":1220,"w":19,"h":16}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":38,"w":19,"h":16}, "sourceSize": {"w":68,"h":56} }, "regular/snorlax-gmax": { "frame": {"x":1,"y":279,"w":54,"h":51}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":7,"y":5,"w":54,"h":51}, "sourceSize": {"w":68,"h":56} }, "regular/snorlax": { "frame": {"x":624,"y":225,"w":40,"h":42}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":13,"y":14,"w":40,"h":42}, "sourceSize": {"w":68,"h":56} }, "regular/snorunt": { "frame": {"x":1828,"y":951,"w":17,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":33,"w":17,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/snover": { "frame": {"x":1544,"y":938,"w":23,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":32,"w":23,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/snubbull": { "frame": {"x":1497,"y":994,"w":23,"h":22}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":22,"y":32,"w":23,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/sobble": { "frame": {"x":1049,"y":547,"w":24,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":28,"w":24,"h":27}, "sourceSize": {"w":68,"h":56} }, "regular/solgaleo": { "frame": {"x":362,"y":90,"w":50,"h":41}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":9,"y":14,"w":50,"h":41}, "sourceSize": {"w":68,"h":56} }, "regular/solosis": { "frame": {"x":1908,"y":1201,"w":17,"h":16}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":26,"y":38,"w":17,"h":16}, "sourceSize": {"w":68,"h":56} }, "regular/solrock": { "frame": {"x":850,"y":999,"w":32,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":23,"w":32,"h":33}, "sourceSize": {"w":68,"h":56} }, "regular/spearow": { "frame": {"x":1624,"y":707,"w":21,"h":18}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":36,"w":21,"h":18}, "sourceSize": {"w":68,"h":56} }, "regular/spectrier": { "frame": {"x":1069,"y":224,"w":37,"h":36}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":19,"w":37,"h":36}, "sourceSize": {"w":68,"h":56} }, "regular/spewpa": { "frame": {"x":1867,"y":1037,"w":18,"h":19}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":35,"w":18,"h":19}, "sourceSize": {"w":68,"h":56} }, "regular/spheal": { "frame": {"x":1869,"y":745,"w":21,"h":18}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":36,"w":21,"h":18}, "sourceSize": {"w":68,"h":56} }, "regular/spinarak": { "frame": {"x":1936,"y":749,"w":20,"h":16}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":38,"w":20,"h":16}, "sourceSize": {"w":68,"h":56} }, "regular/spinda-blank": { "frame": {"x":1742,"y":660,"w":17,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":26,"y":31,"w":17,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/spinda-filled": { "frame": {"x":1767,"y":660,"w":17,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":26,"y":31,"w":17,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/spinda": { "frame": {"x":1792,"y":660,"w":17,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":26,"y":31,"w":17,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/spiritomb": { "frame": {"x":1589,"y":357,"w":31,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":25,"w":31,"h":29}, "sourceSize": {"w":68,"h":56} }, "regular/spoink": { "frame": {"x":1726,"y":1157,"w":16,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":32,"w":16,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/spritzee": { "frame": {"x":1888,"y":1201,"w":17,"h":18}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":25,"y":36,"w":17,"h":18}, "sourceSize": {"w":68,"h":56} }, "regular/squirtle": { "frame": {"x":1663,"y":1169,"w":23,"h":19}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":35,"w":23,"h":19}, "sourceSize": {"w":68,"h":56} }, "regular/stakataka": { "frame": {"x":631,"y":269,"w":42,"h":40}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":15,"y":14,"w":42,"h":40}, "sourceSize": {"w":68,"h":56} }, "regular/stantler": { "frame": {"x":1068,"y":632,"w":23,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":27,"w":23,"h":27}, "sourceSize": {"w":68,"h":56} }, "regular/staraptor": { "frame": {"x":1179,"y":1030,"w":25,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":28,"w":25,"h":27}, "sourceSize": {"w":68,"h":56} }, "regular/staravia": { "frame": {"x":1319,"y":786,"w":24,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":30,"w":24,"h":25}, "sourceSize": {"w":68,"h":56} }, "regular/starly": { "frame": {"x":1867,"y":701,"w":21,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":34,"w":21,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/starmie": { "frame": {"x":594,"y":1049,"w":32,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":19,"w":32,"h":33}, "sourceSize": {"w":68,"h":56} }, "regular/staryu": { "frame": {"x":1966,"y":769,"w":19,"h":19}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":35,"w":19,"h":19}, "sourceSize": {"w":68,"h":56} }, "regular/steelix-mega": { "frame": {"x":439,"y":1139,"w":41,"h":31}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":14,"y":25,"w":41,"h":31}, "sourceSize": {"w":68,"h":56} }, "regular/steelix": { "frame": {"x":258,"y":172,"w":49,"h":41}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":9,"y":14,"w":49,"h":41}, "sourceSize": {"w":68,"h":56} }, "regular/steenee": { "frame": {"x":1350,"y":913,"w":20,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":28,"w":20,"h":25}, "sourceSize": {"w":68,"h":56} }, "regular/stonjourner": { "frame": {"x":1182,"y":262,"w":36,"h":36}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":18,"w":36,"h":36}, "sourceSize": {"w":68,"h":56} }, "regular/stoutland": { "frame": {"x":558,"y":1004,"w":34,"h":31}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":18,"y":22,"w":34,"h":31}, "sourceSize": {"w":68,"h":56} }, "regular/stufful": { "frame": {"x":1766,"y":1104,"w":19,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":31,"w":19,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/stunfisk-galar": { "frame": {"x":857,"y":1198,"w":33,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":32,"w":33,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/stunfisk": { "frame": {"x":891,"y":1254,"w":32,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":31,"w":32,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/stunky": { "frame": {"x":1100,"y":863,"w":28,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":33,"w":28,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/sudowoodo": { "frame": {"x":972,"y":386,"w":32,"h":35}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":21,"w":32,"h":35}, "sourceSize": {"w":68,"h":56} }, "regular/suicune": { "frame": {"x":453,"y":306,"w":44,"h":40}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":10,"y":13,"w":44,"h":40}, "sourceSize": {"w":68,"h":56} }, "regular/sunflora": { "frame": {"x":1594,"y":918,"w":21,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":31,"w":21,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/sunkern": { "frame": {"x":1878,"y":1238,"w":15,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":34,"w":15,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/surskit": { "frame": {"x":1504,"y":577,"w":25,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":33,"w":25,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/swablu": { "frame": {"x":1892,"y":745,"w":21,"h":18}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":35,"w":21,"h":18}, "sourceSize": {"w":68,"h":56} }, "regular/swadloon": { "frame": {"x":1787,"y":1191,"w":22,"h":18}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":36,"w":22,"h":18}, "sourceSize": {"w":68,"h":56} }, "regular/swalot": { "frame": {"x":1805,"y":679,"w":22,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":34,"w":22,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/swampert-mega": { "frame": {"x":571,"y":1175,"w":34,"h":25}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":17,"y":28,"w":34,"h":25}, "sourceSize": {"w":68,"h":56} }, "regular/swampert": { "frame": {"x":658,"y":392,"w":39,"h":36}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":14,"y":20,"w":39,"h":36}, "sourceSize": {"w":68,"h":56} }, "regular/swanna": { "frame": {"x":1695,"y":514,"w":32,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":30,"w":32,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/swellow": { "frame": {"x":1585,"y":582,"w":25,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":33,"w":25,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/swinub": { "frame": {"x":1913,"y":958,"w":20,"h":15}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":39,"w":20,"h":15}, "sourceSize": {"w":68,"h":56} }, "regular/swirlix": { "frame": {"x":1882,"y":1260,"w":19,"h":18}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":36,"w":19,"h":18}, "sourceSize": {"w":68,"h":56} }, "regular/swoobat": { "frame": {"x":1368,"y":339,"w":38,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":23,"w":38,"h":29}, "sourceSize": {"w":68,"h":56} }, "regular/sylveon": { "frame": {"x":594,"y":1084,"w":32,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":21,"w":32,"h":33}, "sourceSize": {"w":68,"h":56} }, "regular/taillow": { "frame": {"x":1936,"y":730,"w":20,"h":17}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":37,"w":20,"h":17}, "sourceSize": {"w":68,"h":56} }, "regular/talonflame": { "frame": {"x":442,"y":629,"w":37,"h":30}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":19,"y":23,"w":37,"h":30}, "sourceSize": {"w":68,"h":56} }, "regular/tangela": { "frame": {"x":1890,"y":701,"w":21,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":34,"w":21,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/tangrowth": { "frame": {"x":1494,"y":49,"w":48,"h":30}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":10,"y":22,"w":48,"h":30}, "sourceSize": {"w":68,"h":56} }, "regular/tapu-bulu": { "frame": {"x":156,"y":1014,"w":34,"h":39}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":11,"w":34,"h":39}, "sourceSize": {"w":68,"h":56} }, "regular/tapu-fini": { "frame": {"x":1038,"y":192,"w":29,"h":39}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":11,"w":29,"h":39}, "sourceSize": {"w":68,"h":56} }, "regular/tapu-koko": { "frame": {"x":712,"y":269,"w":41,"h":40}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":15,"y":12,"w":41,"h":40}, "sourceSize": {"w":68,"h":56} }, "regular/tapu-lele": { "frame": {"x":1256,"y":150,"w":29,"h":39}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":11,"w":29,"h":39}, "sourceSize": {"w":68,"h":56} }, "regular/tauros": { "frame": {"x":453,"y":348,"w":44,"h":40}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":12,"y":12,"w":44,"h":40}, "sourceSize": {"w":68,"h":56} }, "regular/teddiursa": { "frame": {"x":1703,"y":892,"w":18,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":32,"w":18,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/tentacool": { "frame": {"x":1260,"y":1054,"w":26,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":19,"y":31,"w":26,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/tentacruel": { "frame": {"x":490,"y":474,"w":43,"h":40}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":11,"y":15,"w":43,"h":40}, "sourceSize": {"w":68,"h":56} }, "regular/tepig": { "frame": {"x":1839,"y":786,"w":20,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":34,"w":20,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/terrakion": { "frame": {"x":1269,"y":486,"w":38,"h":31}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":23,"w":38,"h":31}, "sourceSize": {"w":68,"h":56} }, "regular/thievul": { "frame": {"x":581,"y":655,"w":35,"h":34}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":21,"w":35,"h":34}, "sourceSize": {"w":68,"h":56} }, "regular/throh": { "frame": {"x":1070,"y":49,"w":47,"h":34}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":11,"y":21,"w":47,"h":34}, "sourceSize": {"w":68,"h":56} }, "regular/thundurus-therian": { "frame": {"x":450,"y":390,"w":44,"h":40}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":12,"y":14,"w":44,"h":40}, "sourceSize": {"w":68,"h":56} }, "regular/thundurus": { "frame": {"x":825,"y":156,"w":42,"h":39}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":12,"y":15,"w":42,"h":39}, "sourceSize": {"w":68,"h":56} }, "regular/thwackey": { "frame": {"x":1048,"y":1123,"w":24,"h":28}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":27,"w":24,"h":28}, "sourceSize": {"w":68,"h":56} }, "regular/timburr": { "frame": {"x":1309,"y":997,"w":26,"h":21}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":33,"w":26,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/tirtouga": { "frame": {"x":1413,"y":1232,"w":25,"h":17}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":22,"y":37,"w":25,"h":17}, "sourceSize": {"w":68,"h":56} }, "regular/togedemaru": { "frame": {"x":1715,"y":387,"w":30,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":27,"w":30,"h":29}, "sourceSize": {"w":68,"h":56} }, "regular/togekiss": { "frame": {"x":296,"y":969,"w":43,"h":28}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":14,"y":25,"w":43,"h":28}, "sourceSize": {"w":68,"h":56} }, "regular/togepi": { "frame": {"x":1847,"y":1005,"w":18,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":34,"w":18,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/togetic": { "frame": {"x":1644,"y":777,"w":19,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":31,"w":19,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/torchic": { "frame": {"x":1827,"y":905,"w":15,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":33,"w":15,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/torkoal": { "frame": {"x":824,"y":1224,"w":32,"h":28}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":28,"w":32,"h":28}, "sourceSize": {"w":68,"h":56} }, "regular/tornadus-therian": { "frame": {"x":267,"y":479,"w":43,"h":43}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":14,"y":11,"w":43,"h":43}, "sourceSize": {"w":68,"h":56} }, "regular/tornadus": { "frame": {"x":772,"y":464,"w":36,"h":38}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":15,"y":16,"w":36,"h":38}, "sourceSize": {"w":68,"h":56} }, "regular/torracat": { "frame": {"x":1292,"y":745,"w":25,"h":26}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":28,"w":25,"h":26}, "sourceSize": {"w":68,"h":56} }, "regular/torterra": { "frame": {"x":1038,"y":462,"w":30,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":29,"w":30,"h":25}, "sourceSize": {"w":68,"h":56} }, "regular/totodile": { "frame": {"x":1861,"y":765,"w":20,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":34,"w":20,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/toucannon": { "frame": {"x":1372,"y":891,"w":25,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":31,"w":25,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/toxapex": { "frame": {"x":1663,"y":86,"w":40,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":14,"y":23,"w":40,"h":33}, "sourceSize": {"w":68,"h":56} }, "regular/toxel": { "frame": {"x":1517,"y":1255,"w":20,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":31,"w":20,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/toxicroak": { "frame": {"x":587,"y":516,"w":37,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":15,"y":23,"w":37,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/toxtricity-gmax": { "frame": {"x":51,"y":601,"w":44,"h":48}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":11,"y":8,"w":44,"h":48}, "sourceSize": {"w":68,"h":56} }, "regular/toxtricity-low-key": { "frame": {"x":1067,"y":145,"w":24,"h":38}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":16,"w":24,"h":38}, "sourceSize": {"w":68,"h":56} }, "regular/toxtricity": { "frame": {"x":446,"y":1225,"w":27,"h":41}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":13,"w":27,"h":41}, "sourceSize": {"w":68,"h":56} }, "regular/tranquill": { "frame": {"x":1573,"y":1177,"w":21,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":32,"w":21,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/trapinch": { "frame": {"x":1712,"y":679,"w":21,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":33,"w":21,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/treecko": { "frame": {"x":1600,"y":631,"w":23,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":31,"w":23,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/trevenant": { "frame": {"x":1705,"y":86,"w":40,"h":34}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":15,"y":21,"w":40,"h":34}, "sourceSize": {"w":68,"h":56} }, "regular/tropius": { "frame": {"x":954,"y":1039,"w":33,"h":28}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":26,"w":33,"h":28}, "sourceSize": {"w":68,"h":56} }, "regular/trubbish": { "frame": {"x":1664,"y":727,"w":23,"h":20}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":22,"y":34,"w":23,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/trumbeak": { "frame": {"x":1852,"y":615,"w":21,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":30,"w":21,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/tsareena": { "frame": {"x":628,"y":1211,"w":28,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":22,"w":28,"h":33}, "sourceSize": {"w":68,"h":56} }, "regular/turtonator": { "frame": {"x":1076,"y":262,"w":39,"h":33}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":19,"y":23,"w":39,"h":33}, "sourceSize": {"w":68,"h":56} }, "regular/turtwig": { "frame": {"x":1774,"y":615,"w":20,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":24,"y":30,"w":20,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/tympole": { "frame": {"x":1948,"y":1236,"w":16,"h":15}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":26,"y":39,"w":16,"h":15}, "sourceSize": {"w":68,"h":56} }, "regular/tynamo": { "frame": {"x":1977,"y":1123,"w":16,"h":13}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":26,"y":41,"w":16,"h":13}, "sourceSize": {"w":68,"h":56} }, "regular/type-null": { "frame": {"x":1584,"y":158,"w":35,"h":37}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":18,"w":35,"h":37}, "sourceSize": {"w":68,"h":56} }, "regular/typhlosion": { "frame": {"x":1180,"y":1088,"w":25,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":27,"w":25,"h":27}, "sourceSize": {"w":68,"h":56} }, "regular/tyranitar-mega": { "frame": {"x":1650,"y":261,"w":30,"h":31}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":25,"w":30,"h":31}, "sourceSize": {"w":68,"h":56} }, "regular/tyranitar": { "frame": {"x":263,"y":1230,"w":37,"h":40}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":14,"w":37,"h":40}, "sourceSize": {"w":68,"h":56} }, "regular/tyrantrum": { "frame": {"x":97,"y":813,"w":43,"h":36}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":12,"y":18,"w":43,"h":36}, "sourceSize": {"w":68,"h":56} }, "regular/tyrogue": { "frame": {"x":1727,"y":1255,"w":15,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":27,"y":31,"w":15,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/tyrunt": { "frame": {"x":1723,"y":1013,"w":22,"h":19}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":36,"w":22,"h":19}, "sourceSize": {"w":68,"h":56} }, "regular/umbreon": { "frame": {"x":1921,"y":485,"w":28,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":26,"w":28,"h":29}, "sourceSize": {"w":68,"h":56} }, "regular/unfezant": { "frame": {"x":581,"y":726,"w":32,"h":34}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":21,"w":32,"h":34}, "sourceSize": {"w":68,"h":56} }, "regular/unown-b": { "frame": {"x":514,"y":922,"w":14,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":27,"y":31,"w":14,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/unown-c": { "frame": {"x":1725,"y":1133,"w":17,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":32,"w":17,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/unown-d": { "frame": {"x":1828,"y":928,"w":16,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":27,"y":33,"w":16,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/unown-e": { "frame": {"x":1727,"y":1181,"w":16,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":32,"w":16,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/unown-exclamation": { "frame": {"x":1684,"y":1182,"w":12,"h":22}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":27,"y":32,"w":12,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/unown-f": { "frame": {"x":1828,"y":974,"w":17,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":33,"w":17,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/unown-g": { "frame": {"x":846,"y":567,"w":12,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":28,"y":31,"w":12,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/unown-h": { "frame": {"x":1744,"y":984,"w":20,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":33,"w":20,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/unown-i": { "frame": {"x":1703,"y":1266,"w":12,"h":22}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":28,"y":32,"w":12,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/unown-j": { "frame": {"x":1249,"y":646,"w":13,"h":21}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":28,"y":33,"w":13,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/unown-k": { "frame": {"x":1728,"y":1205,"w":15,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":32,"w":15,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/unown-l": { "frame": {"x":1728,"y":1229,"w":15,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":32,"w":15,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/unown-m": { "frame": {"x":1684,"y":1086,"w":20,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":32,"w":20,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/unown-n": { "frame": {"x":1338,"y":1244,"w":24,"h":16}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":37,"w":24,"h":16}, "sourceSize": {"w":68,"h":56} }, "regular/unown-o": { "frame": {"x":1744,"y":1007,"w":20,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":33,"w":20,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/unown-p": { "frame": {"x":1978,"y":516,"w":13,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":28,"y":32,"w":13,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/unown-q": { "frame": {"x":1928,"y":1242,"w":16,"h":18}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":26,"y":36,"w":16,"h":18}, "sourceSize": {"w":68,"h":56} }, "regular/unown-question": { "frame": {"x":1,"y":1265,"w":13,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":27,"y":31,"w":13,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/unown-r": { "frame": {"x":1780,"y":750,"w":12,"h":20}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":29,"y":34,"w":12,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/unown-s": { "frame": {"x":1314,"y":1262,"w":16,"h":25}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":26,"y":29,"w":16,"h":25}, "sourceSize": {"w":68,"h":56} }, "regular/unown-t": { "frame": {"x":1458,"y":1090,"w":14,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":33,"w":14,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/unown-u": { "frame": {"x":1891,"y":938,"w":20,"h":18}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":36,"w":20,"h":18}, "sourceSize": {"w":68,"h":56} }, "regular/unown-v": { "frame": {"x":1975,"y":747,"w":16,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":34,"w":16,"h":20}, "sourceSize": {"w":68,"h":56} }, "regular/unown-w": { "frame": {"x":1966,"y":790,"w":19,"h":19}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":35,"w":19,"h":19}, "sourceSize": {"w":68,"h":56} }, "regular/unown-x": { "frame": {"x":1851,"y":1179,"w":15,"h":16}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":27,"y":38,"w":15,"h":16}, "sourceSize": {"w":68,"h":56} }, "regular/unown-y": { "frame": {"x":1831,"y":1158,"w":15,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":27,"y":33,"w":15,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/unown-z": { "frame": {"x":1808,"y":1159,"w":12,"h":21}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":28,"y":33,"w":12,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/unown": { "frame": {"x":1459,"y":1113,"w":12,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":28,"y":31,"w":12,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/ursaring": { "frame": {"x":1339,"y":1193,"w":23,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":29,"w":23,"h":25}, "sourceSize": {"w":68,"h":56} }, "regular/urshifu-gmax": { "frame": {"x":362,"y":133,"w":41,"h":50}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":13,"y":4,"w":41,"h":50}, "sourceSize": {"w":68,"h":56} }, "regular/urshifu-rapid-strike-gmax": { "frame": {"x":357,"y":474,"w":41,"h":45}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":13,"y":9,"w":41,"h":45}, "sourceSize": {"w":68,"h":56} }, "regular/urshifu": { "frame": {"x":1202,"y":411,"w":35,"h":35}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":17,"w":35,"h":35}, "sourceSize": {"w":68,"h":56} }, "regular/uxie": { "frame": {"x":926,"y":669,"w":35,"h":31}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":17,"y":21,"w":35,"h":31}, "sourceSize": {"w":68,"h":56} }, "regular/vanillish": { "frame": {"x":1817,"y":660,"w":17,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":25,"y":31,"w":17,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/vanillite": { "frame": {"x":1977,"y":1045,"w":14,"h":18}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":27,"y":36,"w":14,"h":18}, "sourceSize": {"w":68,"h":56} }, "regular/vanilluxe": { "frame": {"x":846,"y":634,"w":33,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":22,"w":33,"h":33}, "sourceSize": {"w":68,"h":56} }, "regular/vaporeon": { "frame": {"x":440,"y":1182,"w":41,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":16,"y":23,"w":41,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/venipede": { "frame": {"x":1910,"y":975,"w":20,"h":16}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":38,"w":20,"h":16}, "sourceSize": {"w":68,"h":56} }, "regular/venomoth": { "frame": {"x":810,"y":462,"w":36,"h":38}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":14,"w":36,"h":38}, "sourceSize": {"w":68,"h":56} }, "regular/venonat": { "frame": {"x":594,"y":1154,"w":19,"h":28}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":25,"y":26,"w":19,"h":28}, "sourceSize": {"w":68,"h":56} }, "regular/venusaur-gmax": { "frame": {"x":131,"y":168,"w":48,"h":43}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":11,"y":11,"w":48,"h":43}, "sourceSize": {"w":68,"h":56} }, "regular/venusaur-mega": { "frame": {"x":994,"y":1225,"w":31,"h":28}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":26,"w":31,"h":28}, "sourceSize": {"w":68,"h":56} }, "regular/venusaur": { "frame": {"x":356,"y":389,"w":45,"h":41}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":13,"y":14,"w":45,"h":41}, "sourceSize": {"w":68,"h":56} }, "regular/vespiquen": { "frame": {"x":675,"y":965,"w":34,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":24,"w":34,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/vibrava": { "frame": {"x":1205,"y":947,"w":27,"h":22}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":22,"y":32,"w":27,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/victini": { "frame": {"x":1931,"y":311,"w":24,"h":31}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":24,"w":24,"h":31}, "sourceSize": {"w":68,"h":56} }, "regular/victreebel": { "frame": {"x":300,"y":807,"w":41,"h":34}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":15,"y":19,"w":41,"h":34}, "sourceSize": {"w":68,"h":56} }, "regular/vigoroth": { "frame": {"x":1014,"y":763,"w":29,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":19,"y":30,"w":29,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/vikavolt": { "frame": {"x":1070,"y":386,"w":39,"h":33}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":15,"y":23,"w":39,"h":33}, "sourceSize": {"w":68,"h":56} }, "regular/vileplume": { "frame": {"x":1747,"y":86,"w":40,"h":34}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":15,"y":20,"w":40,"h":34}, "sourceSize": {"w":68,"h":56} }, "regular/virizion": { "frame": {"x":548,"y":840,"w":29,"h":37}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":17,"w":29,"h":37}, "sourceSize": {"w":68,"h":56} }, "regular/vivillon-archipelago": { "frame": {"x":1132,"y":517,"w":28,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":26,"w":28,"h":27}, "sourceSize": {"w":68,"h":56} }, "regular/vivillon-continental": { "frame": {"x":1163,"y":487,"w":28,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":26,"w":28,"h":27}, "sourceSize": {"w":68,"h":56} }, "regular/vivillon-elegant": { "frame": {"x":1013,"y":574,"w":28,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":26,"w":28,"h":27}, "sourceSize": {"w":68,"h":56} }, "regular/vivillon-fancy": { "frame": {"x":1075,"y":546,"w":28,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":26,"w":28,"h":27}, "sourceSize": {"w":68,"h":56} }, "regular/vivillon-garden": { "frame": {"x":1105,"y":546,"w":28,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":26,"w":28,"h":27}, "sourceSize": {"w":68,"h":56} }, "regular/vivillon-high-plains": { "frame": {"x":1028,"y":603,"w":28,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":26,"w":28,"h":27}, "sourceSize": {"w":68,"h":56} }, "regular/vivillon-icy-snow": { "frame": {"x":1038,"y":632,"w":28,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":26,"w":28,"h":27}, "sourceSize": {"w":68,"h":56} }, "regular/vivillon-jungle": { "frame": {"x":1112,"y":633,"w":28,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":26,"w":28,"h":27}, "sourceSize": {"w":68,"h":56} }, "regular/vivillon-marine": { "frame": {"x":1038,"y":687,"w":28,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":26,"w":28,"h":27}, "sourceSize": {"w":68,"h":56} }, "regular/vivillon-modern": { "frame": {"x":1068,"y":687,"w":28,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":26,"w":28,"h":27}, "sourceSize": {"w":68,"h":56} }, "regular/vivillon-monsoon": { "frame": {"x":1098,"y":662,"w":28,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":26,"w":28,"h":27}, "sourceSize": {"w":68,"h":56} }, "regular/vivillon-ocean": { "frame": {"x":1128,"y":662,"w":28,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":26,"w":28,"h":27}, "sourceSize": {"w":68,"h":56} }, "regular/vivillon-poke-ball": { "frame": {"x":1040,"y":716,"w":28,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":26,"w":28,"h":27}, "sourceSize": {"w":68,"h":56} }, "regular/vivillon-polar": { "frame": {"x":1040,"y":745,"w":28,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":26,"w":28,"h":27}, "sourceSize": {"w":68,"h":56} }, "regular/vivillon-river": { "frame": {"x":1098,"y":717,"w":28,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":26,"w":28,"h":27}, "sourceSize": {"w":68,"h":56} }, "regular/vivillon-sandstorm": { "frame": {"x":1128,"y":717,"w":28,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":26,"w":28,"h":27}, "sourceSize": {"w":68,"h":56} }, "regular/vivillon-savanna": { "frame": {"x":1070,"y":746,"w":28,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":26,"w":28,"h":27}, "sourceSize": {"w":68,"h":56} }, "regular/vivillon-sun": { "frame": {"x":1100,"y":746,"w":28,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":26,"w":28,"h":27}, "sourceSize": {"w":68,"h":56} }, "regular/vivillon-tundra": { "frame": {"x":1070,"y":775,"w":28,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":26,"w":28,"h":27}, "sourceSize": {"w":68,"h":56} }, "regular/vivillon": { "frame": {"x":1100,"y":775,"w":28,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":26,"w":28,"h":27}, "sourceSize": {"w":68,"h":56} }, "regular/volbeat": { "frame": {"x":1616,"y":1061,"w":22,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":31,"w":22,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/volcanion": { "frame": {"x":693,"y":45,"w":40,"h":43}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":14,"y":11,"w":40,"h":43}, "sourceSize": {"w":68,"h":56} }, "regular/volcarona": { "frame": {"x":587,"y":550,"w":37,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":18,"w":37,"h":32}, "sourceSize": {"w":68,"h":56} }, "regular/voltorb": { "frame": {"x":1961,"y":1186,"w":16,"h":16}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":38,"w":16,"h":16}, "sourceSize": {"w":68,"h":56} }, "regular/vullaby": { "frame": {"x":1470,"y":921,"w":24,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":33,"w":24,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/vulpix-alola": { "frame": {"x":1473,"y":649,"w":24,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":31,"w":24,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/vulpix": { "frame": {"x":1473,"y":1114,"w":22,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":32,"w":22,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/wailmer": { "frame": {"x":887,"y":583,"w":35,"h":26}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":29,"w":35,"h":26}, "sourceSize": {"w":68,"h":56} }, "regular/wailord": { "frame": {"x":167,"y":53,"w":53,"h":35}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":13,"y":21,"w":53,"h":35}, "sourceSize": {"w":68,"h":56} }, "regular/walrein": { "frame": {"x":443,"y":518,"w":38,"h":29}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":18,"y":24,"w":38,"h":29}, "sourceSize": {"w":68,"h":56} }, "regular/wartortle": { "frame": {"x":1287,"y":1107,"w":26,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":30,"w":26,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/watchog": { "frame": {"x":1600,"y":656,"w":22,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":30,"w":22,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/weavile": { "frame": {"x":548,"y":879,"w":29,"h":37}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":19,"w":29,"h":37}, "sourceSize": {"w":68,"h":56} }, "regular/weedle": { "frame": {"x":1867,"y":1058,"w":18,"h":19}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":35,"w":18,"h":19}, "sourceSize": {"w":68,"h":56} }, "regular/weepinbell": { "frame": {"x":1625,"y":631,"w":24,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":32,"w":24,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/weezing-galar": { "frame": {"x":132,"y":383,"w":44,"h":47}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":12,"y":9,"w":44,"h":47}, "sourceSize": {"w":68,"h":56} }, "regular/weezing": { "frame": {"x":1850,"y":1,"w":49,"h":44}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":11,"y":12,"w":49,"h":44}, "sourceSize": {"w":68,"h":56} }, "regular/whimsicott": { "frame": {"x":1203,"y":448,"w":37,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":15,"y":20,"w":37,"h":33}, "sourceSize": {"w":68,"h":56} }, "regular/whirlipede": { "frame": {"x":1451,"y":1231,"w":24,"h":18}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":22,"y":36,"w":24,"h":18}, "sourceSize": {"w":68,"h":56} }, "regular/whiscash": { "frame": {"x":538,"y":1139,"w":36,"h":25}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":16,"y":31,"w":36,"h":25}, "sourceSize": {"w":68,"h":56} }, "regular/whismur": { "frame": {"x":1903,"y":1260,"w":19,"h":18}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":36,"w":19,"h":18}, "sourceSize": {"w":68,"h":56} }, "regular/wigglytuff": { "frame": {"x":699,"y":354,"w":33,"h":40}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":14,"w":33,"h":40}, "sourceSize": {"w":68,"h":56} }, "regular/wimpod": { "frame": {"x":1232,"y":1262,"w":26,"h":16}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":35,"w":26,"h":16}, "sourceSize": {"w":68,"h":56} }, "regular/wingull": { "frame": {"x":1040,"y":774,"w":28,"h":16}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":38,"w":28,"h":16}, "sourceSize": {"w":68,"h":56} }, "regular/wishiwashi-school": { "frame": {"x":356,"y":604,"w":44,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":15,"y":23,"w":44,"h":33}, "sourceSize": {"w":68,"h":56} }, "regular/wishiwashi": { "frame": {"x":1932,"y":978,"w":20,"h":15}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":35,"w":20,"h":15}, "sourceSize": {"w":68,"h":56} }, "regular/wobbuffet": { "frame": {"x":876,"y":833,"w":28,"h":35}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":20,"w":28,"h":35}, "sourceSize": {"w":68,"h":56} }, "regular/woobat": { "frame": {"x":1939,"y":688,"w":22,"h":17}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":37,"w":22,"h":17}, "sourceSize": {"w":68,"h":56} }, "regular/wooloo": { "frame": {"x":1689,"y":703,"w":22,"h":21}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":22,"y":33,"w":22,"h":21}, "sourceSize": {"w":68,"h":56} }, "regular/wooper": { "frame": {"x":1766,"y":845,"w":22,"h":19}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":35,"w":22,"h":19}, "sourceSize": {"w":68,"h":56} }, "regular/wormadam-sandy": { "frame": {"x":1354,"y":544,"w":26,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":29,"w":26,"h":25}, "sourceSize": {"w":68,"h":56} }, "regular/wormadam-trash": { "frame": {"x":1286,"y":1080,"w":25,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":29,"w":25,"h":25}, "sourceSize": {"w":68,"h":56} }, "regular/wormadam": { "frame": {"x":1319,"y":813,"w":24,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":29,"w":24,"h":25}, "sourceSize": {"w":68,"h":56} }, "regular/wurmple": { "frame": {"x":1862,"y":830,"w":20,"h":19}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":35,"w":20,"h":19}, "sourceSize": {"w":68,"h":56} }, "regular/wynaut": { "frame": {"x":1209,"y":1146,"w":27,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":30,"w":27,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/xatu": { "frame": {"x":611,"y":801,"w":27,"h":37}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":18,"w":27,"h":37}, "sourceSize": {"w":68,"h":56} }, "regular/xerneas-active": { "frame": {"x":360,"y":176,"w":40,"h":49}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":14,"y":5,"w":40,"h":49}, "sourceSize": {"w":68,"h":56} }, "regular/xerneas": { "frame": {"x":97,"y":538,"w":40,"h":48}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":14,"y":6,"w":40,"h":48}, "sourceSize": {"w":68,"h":56} }, "regular/xurkitree": { "frame": {"x":659,"y":430,"w":38,"h":37}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":16,"w":38,"h":37}, "sourceSize": {"w":68,"h":56} }, "regular/yamask-galar": { "frame": {"x":1497,"y":797,"w":24,"h":18}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":36,"w":24,"h":18}, "sourceSize": {"w":68,"h":56} }, "regular/yamask": { "frame": {"x":1497,"y":1094,"w":24,"h":18}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":36,"w":24,"h":18}, "sourceSize": {"w":68,"h":56} }, "regular/yamper": { "frame": {"x":1651,"y":631,"w":24,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":34,"w":24,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/yanma": { "frame": {"x":1177,"y":117,"w":30,"h":18}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":19,"y":36,"w":30,"h":18}, "sourceSize": {"w":68,"h":56} }, "regular/yanmega": { "frame": {"x":959,"y":1255,"w":32,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":30,"w":32,"h":23}, "sourceSize": {"w":68,"h":56} }, "regular/yungoos": { "frame": {"x":527,"y":1119,"w":27,"h":18}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":34,"w":27,"h":18}, "sourceSize": {"w":68,"h":56} }, "regular/yveltal": { "frame": {"x":1087,"y":1,"w":50,"h":46}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":9,"y":9,"w":50,"h":46}, "sourceSize": {"w":68,"h":56} }, "regular/zacian-crowned": { "frame": {"x":1550,"y":1,"w":47,"h":48}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":11,"y":7,"w":47,"h":48}, "sourceSize": {"w":68,"h":56} }, "regular/zacian": { "frame": {"x":95,"y":887,"w":42,"h":37}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":18,"w":42,"h":37}, "sourceSize": {"w":68,"h":56} }, "regular/zamazenta-crowned": { "frame": {"x":132,"y":218,"w":49,"h":42}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":11,"y":14,"w":49,"h":42}, "sourceSize": {"w":68,"h":56} }, "regular/zamazenta": { "frame": {"x":184,"y":691,"w":39,"h":40}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":15,"y":16,"w":39,"h":40}, "sourceSize": {"w":68,"h":56} }, "regular/zangoose": { "frame": {"x":1396,"y":678,"w":25,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":24,"y":30,"w":25,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/zapdos-galar": { "frame": {"x":267,"y":524,"w":44,"h":42}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":11,"y":12,"w":44,"h":42}, "sourceSize": {"w":68,"h":56} }, "regular/zapdos": { "frame": {"x":98,"y":638,"w":48,"h":40}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":12,"y":11,"w":48,"h":40}, "sourceSize": {"w":68,"h":56} }, "regular/zarude-dada": { "frame": {"x":594,"y":42,"w":46,"h":31}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":15,"y":21,"w":46,"h":31}, "sourceSize": {"w":68,"h":56} }, "regular/zarude": { "frame": {"x":769,"y":197,"w":46,"h":31}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":15,"y":21,"w":46,"h":31}, "sourceSize": {"w":68,"h":56} }, "regular/zebstrika": { "frame": {"x":1006,"y":893,"w":29,"h":25}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":29,"w":29,"h":25}, "sourceSize": {"w":68,"h":56} }, "regular/zekrom": { "frame": {"x":400,"y":474,"w":43,"h":42}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":13,"y":13,"w":43,"h":42}, "sourceSize": {"w":68,"h":56} }, "regular/zeraora": { "frame": {"x":1789,"y":86,"w":40,"h":34}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":21,"w":40,"h":34}, "sourceSize": {"w":68,"h":56} }, "regular/zigzagoon-galar": { "frame": {"x":1618,"y":818,"w":24,"h":18}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":36,"w":24,"h":18}, "sourceSize": {"w":68,"h":56} }, "regular/zigzagoon": { "frame": {"x":1546,"y":1109,"w":24,"h":18}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":36,"w":24,"h":18}, "sourceSize": {"w":68,"h":56} }, "regular/zoroark": { "frame": {"x":1831,"y":86,"w":40,"h":35}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":15,"y":17,"w":40,"h":35}, "sourceSize": {"w":68,"h":56} }, "regular/zorua": { "frame": {"x":1867,"y":1079,"w":18,"h":19}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":35,"w":18,"h":19}, "sourceSize": {"w":68,"h":56} }, "regular/zubat": { "frame": {"x":1497,"y":1019,"w":23,"h":22}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":24,"y":31,"w":23,"h":22}, "sourceSize": {"w":68,"h":56} }, "regular/zweilous": { "frame": {"x":1124,"y":1030,"w":28,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":30,"w":28,"h":24}, "sourceSize": {"w":68,"h":56} }, "regular/zygarde-10": { "frame": {"x":1460,"y":294,"w":30,"h":31}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":25,"w":30,"h":31}, "sourceSize": {"w":68,"h":56} }, "regular/zygarde-complete": { "frame": {"x":315,"y":1,"w":52,"h":47}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":8,"y":7,"w":52,"h":47}, "sourceSize": {"w":68,"h":56} }, "regular/zygarde": { "frame": {"x":91,"y":280,"w":39,"h":47}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":14,"y":7,"w":39,"h":47}, "sourceSize": {"w":68,"h":56} }, "shiny/abomasnow-mega": { "frame": {"x":1837,"y":279,"w":29,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":27,"w":29,"h":29}, "sourceSize": {"w":68,"h":56} }, "shiny/abomasnow": { "frame": {"x":1264,"y":336,"w":38,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":23,"w":38,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/abra": { "frame": {"x":1400,"y":967,"w":25,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":22,"y":32,"w":25,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/absol-mega": { "frame": {"x":925,"y":522,"w":28,"h":28}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":26,"w":28,"h":28}, "sourceSize": {"w":68,"h":56} }, "shiny/absol": { "frame": {"x":1356,"y":191,"w":36,"h":37}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":16,"w":36,"h":37}, "sourceSize": {"w":68,"h":56} }, "shiny/accelgor": { "frame": {"x":934,"y":833,"w":35,"h":31}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":24,"w":35,"h":31}, "sourceSize": {"w":68,"h":56} }, "shiny/aegislash-blade": { "frame": {"x":1264,"y":370,"w":33,"h":37}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":17,"w":33,"h":37}, "sourceSize": {"w":68,"h":56} }, "shiny/aegislash": { "frame": {"x":442,"y":668,"w":32,"h":37}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":17,"w":32,"h":37}, "sourceSize": {"w":68,"h":56} }, "shiny/aerodactyl-mega": { "frame": {"x":571,"y":1211,"w":34,"h":26}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":18,"y":29,"w":34,"h":26}, "sourceSize": {"w":68,"h":56} }, "shiny/aerodactyl": { "frame": {"x":642,"y":42,"w":49,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":12,"y":17,"w":49,"h":33}, "sourceSize": {"w":68,"h":56} }, "shiny/aggron-mega": { "frame": {"x":787,"y":1135,"w":33,"h":28}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":27,"w":33,"h":28}, "sourceSize": {"w":68,"h":56} }, "shiny/aggron": { "frame": {"x":915,"y":160,"w":44,"h":35}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":14,"y":18,"w":44,"h":35}, "sourceSize": {"w":68,"h":56} }, "shiny/aipom": { "frame": {"x":1779,"y":569,"w":26,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":33,"w":26,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/alakazam-mega": { "frame": {"x":787,"y":1067,"w":32,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":24,"w":32,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alakazam": { "frame": {"x":660,"y":469,"w":38,"h":37}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":12,"y":17,"w":38,"h":37}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-caramel-swirl-berry": { "frame": {"x":1559,"y":533,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-caramel-swirl-clover": { "frame": {"x":1593,"y":533,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-caramel-swirl-flower": { "frame": {"x":1627,"y":534,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-caramel-swirl-love": { "frame": {"x":1661,"y":534,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-caramel-swirl-plain": { "frame": {"x":1695,"y":540,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-caramel-swirl-ribbon": { "frame": {"x":1695,"y":480,"w":27,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":22,"w":27,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-caramel-swirl-star": { "frame": {"x":1729,"y":541,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-caramel-swirl-strawberry": { "frame": {"x":1404,"y":518,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-gmax": { "frame": {"x":93,"y":329,"w":34,"h":52}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":2,"w":34,"h":52}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-lemon-cream-berry": { "frame": {"x":1559,"y":533,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-lemon-cream-clover": { "frame": {"x":1593,"y":533,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-lemon-cream-flower": { "frame": {"x":1627,"y":534,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-lemon-cream-love": { "frame": {"x":1661,"y":534,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-lemon-cream-plain": { "frame": {"x":1695,"y":540,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-lemon-cream-ribbon": { "frame": {"x":1695,"y":480,"w":27,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":22,"w":27,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-lemon-cream-star": { "frame": {"x":1729,"y":541,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-lemon-cream-strawberry": { "frame": {"x":1404,"y":518,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-matcha-cream-berry": { "frame": {"x":1559,"y":533,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-matcha-cream-clover": { "frame": {"x":1593,"y":533,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-matcha-cream-flower": { "frame": {"x":1627,"y":534,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-matcha-cream-love": { "frame": {"x":1661,"y":534,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-matcha-cream-plain": { "frame": {"x":1695,"y":540,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-matcha-cream-ribbon": { "frame": {"x":1695,"y":480,"w":27,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":22,"w":27,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-matcha-cream-star": { "frame": {"x":1729,"y":541,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-matcha-cream-strawberry": { "frame": {"x":1404,"y":518,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-mint-cream-berry": { "frame": {"x":1559,"y":533,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-mint-cream-clover": { "frame": {"x":1593,"y":533,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-mint-cream-flower": { "frame": {"x":1627,"y":534,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-mint-cream-love": { "frame": {"x":1661,"y":534,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-mint-cream-plain": { "frame": {"x":1695,"y":540,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-mint-cream-ribbon": { "frame": {"x":1695,"y":480,"w":27,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":22,"w":27,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-mint-cream-star": { "frame": {"x":1729,"y":541,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-mint-cream-strawberry": { "frame": {"x":1404,"y":518,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-rainbow-swirl-berry": { "frame": {"x":1559,"y":533,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-rainbow-swirl-clover": { "frame": {"x":1593,"y":533,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-rainbow-swirl-flower": { "frame": {"x":1627,"y":534,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-rainbow-swirl-love": { "frame": {"x":1661,"y":534,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-rainbow-swirl-plain": { "frame": {"x":1695,"y":540,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-rainbow-swirl-ribbon": { "frame": {"x":1695,"y":480,"w":27,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":22,"w":27,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-rainbow-swirl-star": { "frame": {"x":1729,"y":541,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-rainbow-swirl-strawberry": { "frame": {"x":1404,"y":518,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-ruby-cream-berry": { "frame": {"x":1559,"y":533,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-ruby-cream-clover": { "frame": {"x":1593,"y":533,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-ruby-cream-flower": { "frame": {"x":1627,"y":534,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-ruby-cream-love": { "frame": {"x":1661,"y":534,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-ruby-cream-plain": { "frame": {"x":1695,"y":540,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-ruby-cream-ribbon": { "frame": {"x":1695,"y":480,"w":27,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":22,"w":27,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-ruby-cream-star": { "frame": {"x":1729,"y":541,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-ruby-cream-strawberry": { "frame": {"x":1404,"y":518,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-ruby-swirl-berry": { "frame": {"x":1559,"y":533,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-ruby-swirl-clover": { "frame": {"x":1593,"y":533,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-ruby-swirl-flower": { "frame": {"x":1627,"y":534,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-ruby-swirl-love": { "frame": {"x":1661,"y":534,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-ruby-swirl-plain": { "frame": {"x":1695,"y":540,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-ruby-swirl-ribbon": { "frame": {"x":1695,"y":480,"w":27,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":22,"w":27,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-ruby-swirl-star": { "frame": {"x":1729,"y":541,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-ruby-swirl-strawberry": { "frame": {"x":1404,"y":518,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-salted-cream-berry": { "frame": {"x":1559,"y":533,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-salted-cream-clover": { "frame": {"x":1593,"y":533,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-salted-cream-flower": { "frame": {"x":1627,"y":534,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-salted-cream-love": { "frame": {"x":1661,"y":534,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-salted-cream-plain": { "frame": {"x":1695,"y":540,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-salted-cream-ribbon": { "frame": {"x":1695,"y":480,"w":27,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":22,"w":27,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-salted-cream-star": { "frame": {"x":1729,"y":541,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-salted-cream-strawberry": { "frame": {"x":1404,"y":518,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-vanilla-cream-berry": { "frame": {"x":1559,"y":533,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-vanilla-cream-clover": { "frame": {"x":1593,"y":533,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-vanilla-cream-flower": { "frame": {"x":1627,"y":534,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-vanilla-cream-love": { "frame": {"x":1661,"y":534,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-vanilla-cream-plain": { "frame": {"x":1695,"y":540,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-vanilla-cream-ribbon": { "frame": {"x":1695,"y":480,"w":27,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":22,"w":27,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-vanilla-cream-star": { "frame": {"x":1729,"y":541,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie-vanilla-cream-strawberry": { "frame": {"x":1404,"y":518,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alcremie": { "frame": {"x":1404,"y":518,"w":25,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":25,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/alomomola": { "frame": {"x":1048,"y":1153,"w":15,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":26,"y":30,"w":15,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/altaria-mega": { "frame": {"x":1016,"y":1000,"w":29,"h":25}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":29,"w":29,"h":25}, "sourceSize": {"w":68,"h":56} }, "shiny/altaria": { "frame": {"x":1304,"y":336,"w":38,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":15,"y":18,"w":38,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/amaura": { "frame": {"x":1248,"y":562,"w":19,"h":26}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":28,"w":19,"h":26}, "sourceSize": {"w":68,"h":56} }, "shiny/ambipom": { "frame": {"x":1777,"y":420,"w":31,"h":27}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":19,"y":27,"w":31,"h":27}, "sourceSize": {"w":68,"h":56} }, "shiny/amoonguss": { "frame": {"x":1070,"y":716,"w":26,"h":28}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":24,"w":26,"h":28}, "sourceSize": {"w":68,"h":56} }, "shiny/ampharos-mega": { "frame": {"x":1685,"y":355,"w":31,"h":28}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":26,"w":31,"h":28}, "sourceSize": {"w":68,"h":56} }, "shiny/ampharos": { "frame": {"x":1203,"y":918,"w":22,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":27,"w":22,"h":27}, "sourceSize": {"w":68,"h":56} }, "shiny/anorith": { "frame": {"x":1421,"y":823,"w":24,"h":22}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":32,"w":24,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/appletun": { "frame": {"x":618,"y":619,"w":36,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":21,"w":36,"h":33}, "sourceSize": {"w":68,"h":56} }, "shiny/applin": { "frame": {"x":1974,"y":1003,"w":17,"h":19}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":35,"w":17,"h":19}, "sourceSize": {"w":68,"h":56} }, "shiny/araquanid": { "frame": {"x":1003,"y":281,"w":36,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":29,"w":36,"h":27}, "sourceSize": {"w":68,"h":56} }, "shiny/arbok": { "frame": {"x":655,"y":1173,"w":30,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":21,"w":30,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/arcanine": { "frame": {"x":116,"y":928,"w":39,"h":39}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":16,"w":39,"h":39}, "sourceSize": {"w":68,"h":56} }, "shiny/arceus-bug": { "frame": {"x":1747,"y":356,"w":30,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":26,"w":30,"h":29}, "sourceSize": {"w":68,"h":56} }, "shiny/arceus-dark": { "frame": {"x":1747,"y":387,"w":30,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":26,"w":30,"h":29}, "sourceSize": {"w":68,"h":56} }, "shiny/arceus-dragon": { "frame": {"x":1772,"y":217,"w":30,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":26,"w":30,"h":29}, "sourceSize": {"w":68,"h":56} }, "shiny/arceus-electric": { "frame": {"x":1804,"y":217,"w":30,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":26,"w":30,"h":29}, "sourceSize": {"w":68,"h":56} }, "shiny/arceus-fairy": { "frame": {"x":1868,"y":218,"w":30,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":26,"w":30,"h":29}, "sourceSize": {"w":68,"h":56} }, "shiny/arceus-fighting": { "frame": {"x":1900,"y":218,"w":30,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":26,"w":30,"h":29}, "sourceSize": {"w":68,"h":56} }, "shiny/arceus-fire": { "frame": {"x":1932,"y":218,"w":30,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":26,"w":30,"h":29}, "sourceSize": {"w":68,"h":56} }, "shiny/arceus-flying": { "frame": {"x":1773,"y":248,"w":30,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":26,"w":30,"h":29}, "sourceSize": {"w":68,"h":56} }, "shiny/arceus-ghost": { "frame": {"x":1805,"y":248,"w":30,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":26,"w":30,"h":29}, "sourceSize": {"w":68,"h":56} }, "shiny/arceus-grass": { "frame": {"x":1773,"y":279,"w":30,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":26,"w":30,"h":29}, "sourceSize": {"w":68,"h":56} }, "shiny/arceus-ground": { "frame": {"x":1805,"y":279,"w":30,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":26,"w":30,"h":29}, "sourceSize": {"w":68,"h":56} }, "shiny/arceus-ice": { "frame": {"x":1868,"y":249,"w":30,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":26,"w":30,"h":29}, "sourceSize": {"w":68,"h":56} }, "shiny/arceus-poison": { "frame": {"x":1900,"y":249,"w":30,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":26,"w":30,"h":29}, "sourceSize": {"w":68,"h":56} }, "shiny/arceus-psychic": { "frame": {"x":1932,"y":249,"w":30,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":26,"w":30,"h":29}, "sourceSize": {"w":68,"h":56} }, "shiny/arceus-rock": { "frame": {"x":1868,"y":280,"w":30,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":26,"w":30,"h":29}, "sourceSize": {"w":68,"h":56} }, "shiny/arceus-steel": { "frame": {"x":1900,"y":280,"w":30,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":26,"w":30,"h":29}, "sourceSize": {"w":68,"h":56} }, "shiny/arceus-water": { "frame": {"x":1932,"y":280,"w":30,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":26,"w":30,"h":29}, "sourceSize": {"w":68,"h":56} }, "shiny/arceus": { "frame": {"x":1831,"y":334,"w":30,"h":29}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":26,"w":30,"h":29}, "sourceSize": {"w":68,"h":56} }, "shiny/archen": { "frame": {"x":1422,"y":778,"w":23,"h":17}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":37,"w":23,"h":17}, "sourceSize": {"w":68,"h":56} }, "shiny/archeops": { "frame": {"x":116,"y":969,"w":38,"h":40}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":15,"y":14,"w":38,"h":40}, "sourceSize": {"w":68,"h":56} }, "shiny/arctovish": { "frame": {"x":891,"y":1166,"w":32,"h":30}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":25,"w":32,"h":30}, "sourceSize": {"w":68,"h":56} }, "shiny/arctozolt": { "frame": {"x":734,"y":637,"w":28,"h":37}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":17,"w":28,"h":37}, "sourceSize": {"w":68,"h":56} }, "shiny/ariados": { "frame": {"x":1209,"y":1175,"w":27,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":30,"w":27,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/armaldo": { "frame": {"x":711,"y":965,"w":34,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":21,"w":34,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/aromatisse": { "frame": {"x":1779,"y":356,"w":24,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":24,"w":24,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/aron": { "frame": {"x":1977,"y":1085,"w":18,"h":14}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":25,"y":40,"w":18,"h":14}, "sourceSize": {"w":68,"h":56} }, "shiny/arrokuda": { "frame": {"x":1093,"y":632,"w":27,"h":17}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":37,"w":27,"h":17}, "sourceSize": {"w":68,"h":56} }, "shiny/articuno-galar": { "frame": {"x":1250,"y":46,"w":37,"h":45}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":17,"y":9,"w":37,"h":45}, "sourceSize": {"w":68,"h":56} }, "shiny/articuno": { "frame": {"x":1650,"y":1,"w":46,"h":48}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":11,"y":6,"w":46,"h":48}, "sourceSize": {"w":68,"h":56} }, "shiny/audino-mega": { "frame": {"x":1002,"y":604,"w":24,"h":28}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":26,"w":24,"h":28}, "sourceSize": {"w":68,"h":56} }, "shiny/audino": { "frame": {"x":1523,"y":293,"w":30,"h":31}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":22,"w":30,"h":31}, "sourceSize": {"w":68,"h":56} }, "shiny/aurorus": { "frame": {"x":1621,"y":158,"w":34,"h":38}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":16,"w":34,"h":38}, "sourceSize": {"w":68,"h":56} }, "shiny/avalugg": { "frame": {"x":1287,"y":150,"w":39,"h":27}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":15,"y":28,"w":39,"h":27}, "sourceSize": {"w":68,"h":56} }, "shiny/axew": { "frame": {"x":1684,"y":1110,"w":20,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":32,"w":20,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/azelf": { "frame": {"x":812,"y":567,"w":35,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":17,"y":20,"w":35,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/azumarill": { "frame": {"x":1164,"y":300,"w":34,"h":37}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":16,"w":34,"h":37}, "sourceSize": {"w":68,"h":56} }, "shiny/azurill": { "frame": {"x":1828,"y":997,"w":17,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":33,"w":17,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/bagon": { "frame": {"x":1778,"y":764,"w":17,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":32,"w":17,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/baltoy": { "frame": {"x":1661,"y":844,"w":18,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":31,"w":18,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/banette-mega": { "frame": {"x":1591,"y":388,"w":28,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":19,"y":24,"w":28,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/banette": { "frame": {"x":1680,"y":614,"w":24,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":33,"w":24,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/barbaracle": { "frame": {"x":1901,"y":123,"w":38,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":14,"y":22,"w":38,"h":33}, "sourceSize": {"w":68,"h":56} }, "shiny/barboach": { "frame": {"x":1297,"y":573,"w":23,"h":15}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":38,"w":23,"h":15}, "sourceSize": {"w":68,"h":56} }, "shiny/barraskewda": { "frame": {"x":1203,"y":483,"w":38,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":15,"y":32,"w":38,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/basculin-blue-striped": { "frame": {"x":1016,"y":1031,"w":29,"h":25}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":19,"y":31,"w":29,"h":25}, "sourceSize": {"w":68,"h":56} }, "shiny/basculin": { "frame": {"x":1070,"y":489,"w":30,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":31,"w":30,"h":25}, "sourceSize": {"w":68,"h":56} }, "shiny/bastiodon": { "frame": {"x":1073,"y":852,"w":28,"h":25}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":29,"w":28,"h":25}, "sourceSize": {"w":68,"h":56} }, "shiny/bayleef": { "frame": {"x":1346,"y":705,"w":22,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":29,"w":22,"h":25}, "sourceSize": {"w":68,"h":56} }, "shiny/beartic": { "frame": {"x":399,"y":782,"w":42,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":14,"y":23,"w":42,"h":33}, "sourceSize": {"w":68,"h":56} }, "shiny/beautifly": { "frame": {"x":1187,"y":836,"w":27,"h":26}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":29,"w":27,"h":26}, "sourceSize": {"w":68,"h":56} }, "shiny/beedrill-mega": { "frame": {"x":1920,"y":400,"w":29,"h":28}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":27,"w":29,"h":28}, "sourceSize": {"w":68,"h":56} }, "shiny/beedrill": { "frame": {"x":1235,"y":1146,"w":27,"h":25}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":28,"w":27,"h":25}, "sourceSize": {"w":68,"h":56} }, "shiny/beheeyem": { "frame": {"x":543,"y":1215,"w":26,"h":36}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":17,"w":26,"h":36}, "sourceSize": {"w":68,"h":56} }, "shiny/beldum": { "frame": {"x":1787,"y":904,"w":21,"h":19}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":24,"y":34,"w":21,"h":19}, "sourceSize": {"w":68,"h":56} }, "shiny/bellossom": { "frame": {"x":1964,"y":218,"w":27,"h":30}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":25,"w":27,"h":30}, "sourceSize": {"w":68,"h":56} }, "shiny/bellsprout": { "frame": {"x":1756,"y":745,"w":22,"h":17}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":37,"w":22,"h":17}, "sourceSize": {"w":68,"h":56} }, "shiny/bergmite": { "frame": {"x":1885,"y":851,"w":19,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":34,"w":19,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/bewear": { "frame": {"x":919,"y":1008,"w":28,"h":34}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":22,"w":28,"h":34}, "sourceSize": {"w":68,"h":56} }, "shiny/bibarel": { "frame": {"x":1370,"y":839,"w":24,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":30,"w":24,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/bidoof": { "frame": {"x":1780,"y":702,"w":22,"h":18}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":36,"w":22,"h":18}, "sourceSize": {"w":68,"h":56} }, "shiny/binacle": { "frame": {"x":1269,"y":570,"w":18,"h":26}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":25,"y":28,"w":18,"h":26}, "sourceSize": {"w":68,"h":56} }, "shiny/bisharp": { "frame": {"x":598,"y":1175,"w":28,"h":34}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":21,"w":28,"h":34}, "sourceSize": {"w":68,"h":56} }, "shiny/blacephalon": { "frame": {"x":1299,"y":370,"w":35,"h":35}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":17,"w":35,"h":35}, "sourceSize": {"w":68,"h":56} }, "shiny/blastoise-gmax": { "frame": {"x":982,"y":1,"w":51,"h":46}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":8,"y":8,"w":51,"h":46}, "sourceSize": {"w":68,"h":56} }, "shiny/blastoise-mega": { "frame": {"x":925,"y":1166,"w":32,"h":30}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":25,"w":32,"h":30}, "sourceSize": {"w":68,"h":56} }, "shiny/blastoise": { "frame": {"x":1505,"y":81,"w":36,"h":40}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":15,"y":15,"w":36,"h":40}, "sourceSize": {"w":68,"h":56} }, "shiny/blaziken-mega": { "frame": {"x":644,"y":970,"w":34,"h":29}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":17,"y":26,"w":34,"h":29}, "sourceSize": {"w":68,"h":56} }, "shiny/blaziken": { "frame": {"x":1584,"y":120,"w":36,"h":36}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":18,"w":36,"h":36}, "sourceSize": {"w":68,"h":56} }, "shiny/blipbug": { "frame": {"x":869,"y":811,"w":20,"h":29}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":25,"y":27,"w":20,"h":29}, "sourceSize": {"w":68,"h":56} }, "shiny/blissey": { "frame": {"x":1336,"y":370,"w":35,"h":35}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":17,"w":35,"h":35}, "sourceSize": {"w":68,"h":56} }, "shiny/blitzle": { "frame": {"x":1598,"y":1109,"w":19,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":25,"y":30,"w":19,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/boldore": { "frame": {"x":1258,"y":1026,"w":26,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":31,"w":26,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/boltund": { "frame": {"x":474,"y":517,"w":38,"h":31}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":13,"y":25,"w":38,"h":31}, "sourceSize": {"w":68,"h":56} }, "shiny/bonsly": { "frame": {"x":1180,"y":1239,"w":14,"h":22}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":27,"y":32,"w":14,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/bouffalant": { "frame": {"x":383,"y":852,"w":42,"h":31}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":9,"y":22,"w":42,"h":31}, "sourceSize": {"w":68,"h":56} }, "shiny/bounsweet": { "frame": {"x":1808,"y":1021,"w":18,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":32,"w":18,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/braixen": { "frame": {"x":1600,"y":682,"w":22,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":30,"w":22,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/braviary": { "frame": {"x":735,"y":45,"w":43,"h":40}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":14,"y":13,"w":43,"h":40}, "sourceSize": {"w":68,"h":56} }, "shiny/breloom": { "frame": {"x":1162,"y":546,"w":25,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":27,"w":25,"h":27}, "sourceSize": {"w":68,"h":56} }, "shiny/brionne": { "frame": {"x":1292,"y":773,"w":25,"h":26}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":29,"w":25,"h":26}, "sourceSize": {"w":68,"h":56} }, "shiny/bronzong": { "frame": {"x":476,"y":665,"w":38,"h":29}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":16,"y":24,"w":38,"h":29}, "sourceSize": {"w":68,"h":56} }, "shiny/bronzor": { "frame": {"x":1935,"y":958,"w":15,"h":18}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":36,"w":15,"h":18}, "sourceSize": {"w":68,"h":56} }, "shiny/bruxish": { "frame": {"x":1497,"y":1044,"w":23,"h":22}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":31,"w":23,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/budew": { "frame": {"x":1895,"y":1238,"w":14,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":27,"y":34,"w":14,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/buizel": { "frame": {"x":1497,"y":1069,"w":23,"h":22}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":32,"w":23,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/bulbasaur": { "frame": {"x":1686,"y":727,"w":22,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":33,"w":22,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/buneary": { "frame": {"x":1904,"y":616,"w":20,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":25,"y":30,"w":20,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/bunnelby": { "frame": {"x":1973,"y":160,"w":18,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":27,"w":18,"h":27}, "sourceSize": {"w":68,"h":56} }, "shiny/burmy-sandy": { "frame": {"x":1406,"y":1021,"w":17,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":29,"w":17,"h":25}, "sourceSize": {"w":68,"h":56} }, "shiny/burmy-trash": { "frame": {"x":1406,"y":1075,"w":18,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":29,"w":18,"h":25}, "sourceSize": {"w":68,"h":56} }, "shiny/burmy": { "frame": {"x":1483,"y":1162,"w":19,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":30,"w":19,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/butterfree-gmax": { "frame": {"x":51,"y":651,"w":48,"h":45}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":12,"y":11,"w":48,"h":45}, "sourceSize": {"w":68,"h":56} }, "shiny/butterfree": { "frame": {"x":621,"y":112,"w":43,"h":40}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":15,"y":12,"w":43,"h":40}, "sourceSize": {"w":68,"h":56} }, "shiny/buzzwole": { "frame": {"x":440,"y":924,"w":35,"h":41}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":13,"w":35,"h":41}, "sourceSize": {"w":68,"h":56} }, "shiny/cacnea": { "frame": {"x":1499,"y":678,"w":24,"h":19}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":35,"w":24,"h":19}, "sourceSize": {"w":68,"h":56} }, "shiny/cacturne": { "frame": {"x":1012,"y":969,"w":21,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":25,"w":21,"h":29}, "sourceSize": {"w":68,"h":56} }, "shiny/calyrex-ice-rider": { "frame": {"x":258,"y":92,"w":39,"h":51}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":17,"y":5,"w":39,"h":51}, "sourceSize": {"w":68,"h":56} }, "shiny/calyrex-shadow-rider": { "frame": {"x":414,"y":50,"w":38,"h":52}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":3,"w":38,"h":52}, "sourceSize": {"w":68,"h":56} }, "shiny/calyrex": { "frame": {"x":1425,"y":119,"w":35,"h":38}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":18,"y":15,"w":35,"h":38}, "sourceSize": {"w":68,"h":56} }, "shiny/camerupt-mega": { "frame": {"x":884,"y":1036,"w":33,"h":30}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":26,"w":33,"h":30}, "sourceSize": {"w":68,"h":56} }, "shiny/camerupt": { "frame": {"x":1007,"y":924,"w":29,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":19,"y":30,"w":29,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/carbink": { "frame": {"x":1962,"y":1204,"w":16,"h":15}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":26,"y":39,"w":16,"h":15}, "sourceSize": {"w":68,"h":56} }, "shiny/carkol": { "frame": {"x":1266,"y":717,"w":24,"h":26}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":29,"w":24,"h":26}, "sourceSize": {"w":68,"h":56} }, "shiny/carnivine": { "frame": {"x":1033,"y":887,"w":29,"h":25}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":19,"y":29,"w":29,"h":25}, "sourceSize": {"w":68,"h":56} }, "shiny/carracosta": { "frame": {"x":1130,"y":339,"w":38,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":14,"y":20,"w":38,"h":33}, "sourceSize": {"w":68,"h":56} }, "shiny/carvanha": { "frame": {"x":1735,"y":679,"w":21,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":33,"w":21,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/cascoon": { "frame": {"x":1659,"y":819,"w":23,"h":20}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":22,"y":34,"w":23,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/castform-rainy": { "frame": {"x":1705,"y":940,"w":16,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":31,"w":16,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/castform-snowy": { "frame": {"x":1361,"y":1021,"w":19,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":29,"w":19,"h":25}, "sourceSize": {"w":68,"h":56} }, "shiny/castform-sunny": { "frame": {"x":1684,"y":1134,"w":20,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":32,"w":20,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/castform": { "frame": {"x":1754,"y":805,"w":15,"h":22}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":26,"y":32,"w":15,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/caterpie": { "frame": {"x":1942,"y":1156,"w":16,"h":18}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":36,"w":16,"h":18}, "sourceSize": {"w":68,"h":56} }, "shiny/celebi": { "frame": {"x":1908,"y":1012,"w":16,"h":20}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":26,"y":33,"w":16,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/celesteela": { "frame": {"x":466,"y":108,"w":44,"h":41}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":11,"y":9,"w":44,"h":41}, "sourceSize": {"w":68,"h":56} }, "shiny/centiskorch-gmax": { "frame": {"x":257,"y":1,"w":56,"h":47}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":6,"y":7,"w":56,"h":47}, "sourceSize": {"w":68,"h":56} }, "shiny/centiskorch": { "frame": {"x":1287,"y":191,"w":39,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":14,"y":22,"w":39,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/chandelure": { "frame": {"x":727,"y":311,"w":39,"h":36}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":17,"w":39,"h":36}, "sourceSize": {"w":68,"h":56} }, "shiny/chansey": { "frame": {"x":1572,"y":1201,"w":21,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":32,"w":21,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/charizard-gmax": { "frame": {"x":1243,"y":1,"w":43,"h":52}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":14,"y":2,"w":43,"h":52}, "sourceSize": {"w":68,"h":56} }, "shiny/charizard-mega-x": { "frame": {"x":383,"y":925,"w":42,"h":27}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":13,"y":26,"w":42,"h":27}, "sourceSize": {"w":68,"h":56} }, "shiny/charizard-mega-y": { "frame": {"x":1006,"y":386,"w":40,"h":27}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":14,"y":26,"w":40,"h":27}, "sourceSize": {"w":68,"h":56} }, "shiny/charizard": { "frame": {"x":224,"y":479,"w":46,"h":41}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":9,"y":14,"w":46,"h":41}, "sourceSize": {"w":68,"h":56} }, "shiny/charjabug": { "frame": {"x":1744,"y":1030,"w":20,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":32,"w":20,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/charmander": { "frame": {"x":1617,"y":967,"w":23,"h":21}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":33,"w":23,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/charmeleon": { "frame": {"x":1319,"y":840,"w":24,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":29,"w":24,"h":25}, "sourceSize": {"w":68,"h":56} }, "shiny/chatot": { "frame": {"x":1599,"y":727,"w":22,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":30,"w":22,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/cherrim-sunshine": { "frame": {"x":1951,"y":377,"w":28,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":27,"w":28,"h":29}, "sourceSize": {"w":68,"h":56} }, "shiny/cherrim": { "frame": {"x":1112,"y":603,"w":21,"h":28}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":28,"w":21,"h":28}, "sourceSize": {"w":68,"h":56} }, "shiny/cherubi": { "frame": {"x":1883,"y":765,"w":20,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":34,"w":20,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/chesnaught": { "frame": {"x":1120,"y":886,"w":28,"h":26}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":28,"w":28,"h":26}, "sourceSize": {"w":68,"h":56} }, "shiny/chespin": { "frame": {"x":1527,"y":1136,"w":19,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":30,"w":19,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/chewtle": { "frame": {"x":1531,"y":581,"w":18,"h":25}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":25,"y":30,"w":18,"h":25}, "sourceSize": {"w":68,"h":56} }, "shiny/chikorita": { "frame": {"x":1828,"y":1020,"w":17,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":33,"w":17,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/chimchar": { "frame": {"x":1878,"y":615,"w":21,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":24,"y":30,"w":21,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/chimecho": { "frame": {"x":1842,"y":660,"w":17,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":26,"y":32,"w":17,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/chinchou": { "frame": {"x":1706,"y":614,"w":24,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":33,"w":24,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/chingling": { "frame": {"x":1612,"y":586,"w":25,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":33,"w":25,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/cinccino": { "frame": {"x":812,"y":604,"w":35,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":17,"y":23,"w":35,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/cinderace-gmax": { "frame": {"x":1,"y":225,"w":55,"h":52}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":11,"y":4,"w":55,"h":52}, "sourceSize": {"w":68,"h":56} }, "shiny/cinderace": { "frame": {"x":326,"y":969,"w":23,"h":43}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":12,"w":23,"h":43}, "sourceSize": {"w":68,"h":56} }, "shiny/clamperl": { "frame": {"x":1758,"y":679,"w":21,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":33,"w":21,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/clauncher": { "frame": {"x":1460,"y":553,"w":26,"h":19}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":35,"w":26,"h":19}, "sourceSize": {"w":68,"h":56} }, "shiny/clawitzer": { "frame": {"x":297,"y":1014,"w":43,"h":30}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":16,"y":20,"w":43,"h":30}, "sourceSize": {"w":68,"h":56} }, "shiny/claydol": { "frame": {"x":594,"y":1119,"w":32,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":20,"w":32,"h":33}, "sourceSize": {"w":68,"h":56} }, "shiny/clefable": { "frame": {"x":1288,"y":232,"w":39,"h":33}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":16,"y":21,"w":39,"h":33}, "sourceSize": {"w":68,"h":56} }, "shiny/clefairy": { "frame": {"x":1744,"y":1053,"w":20,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":33,"w":20,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/cleffa": { "frame": {"x":1886,"y":1144,"w":18,"h":18}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":36,"w":18,"h":18}, "sourceSize": {"w":68,"h":56} }, "shiny/clobbopus": { "frame": {"x":1828,"y":1112,"w":21,"h":18}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":38,"w":21,"h":18}, "sourceSize": {"w":68,"h":56} }, "shiny/cloyster": { "frame": {"x":931,"y":386,"w":39,"h":35}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":19,"w":39,"h":35}, "sourceSize": {"w":68,"h":56} }, "shiny/coalossal-gmax": { "frame": {"x":928,"y":1,"w":44,"h":52}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":11,"y":3,"w":44,"h":52}, "sourceSize": {"w":68,"h":56} }, "shiny/coalossal": { "frame": {"x":357,"y":639,"w":34,"h":44}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":17,"y":12,"w":34,"h":44}, "sourceSize": {"w":68,"h":56} }, "shiny/cobalion": { "frame": {"x":1323,"y":232,"w":31,"h":39}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":15,"w":31,"h":39}, "sourceSize": {"w":68,"h":56} }, "shiny/cofagrigus": { "frame": {"x":1463,"y":81,"w":40,"h":36}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":15,"y":17,"w":40,"h":36}, "sourceSize": {"w":68,"h":56} }, "shiny/combee": { "frame": {"x":1504,"y":462,"w":27,"h":20}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":22,"y":33,"w":27,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/combusken": { "frame": {"x":1186,"y":691,"w":25,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":27,"w":25,"h":27}, "sourceSize": {"w":68,"h":56} }, "shiny/comfey": { "frame": {"x":630,"y":354,"w":33,"h":36}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":14,"w":33,"h":36}, "sourceSize": {"w":68,"h":56} }, "shiny/conkeldurr": { "frame": {"x":96,"y":383,"w":52,"h":34}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":6,"y":22,"w":52,"h":34}, "sourceSize": {"w":68,"h":56} }, "shiny/copperajah-gmax": { "frame": {"x":51,"y":751,"w":44,"h":48}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":9,"y":8,"w":44,"h":48}, "sourceSize": {"w":68,"h":56} }, "shiny/copperajah": { "frame": {"x":866,"y":743,"w":35,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":23,"w":35,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/corphish": { "frame": {"x":1617,"y":992,"w":23,"h":21}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":33,"w":23,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/corsola-galar": { "frame": {"x":1544,"y":962,"w":23,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":32,"w":23,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/corsola": { "frame": {"x":1544,"y":986,"w":23,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":32,"w":23,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/corviknight-gmax": { "frame": {"x":1139,"y":1,"w":50,"h":46}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":10,"y":8,"w":50,"h":46}, "sourceSize": {"w":68,"h":56} }, "shiny/corviknight": { "frame": {"x":675,"y":761,"w":36,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":15,"y":24,"w":36,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/corvisquire": { "frame": {"x":1602,"y":609,"w":24,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":36,"w":24,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/cosmoem": { "frame": {"x":1459,"y":1138,"w":23,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":31,"w":23,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/cosmog": { "frame": {"x":1389,"y":1232,"w":25,"h":22}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":30,"w":25,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/cottonee": { "frame": {"x":1706,"y":1087,"w":23,"h":16}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":38,"w":23,"h":16}, "sourceSize": {"w":68,"h":56} }, "shiny/crabominable": { "frame": {"x":628,"y":1049,"w":34,"h":25}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":17,"y":28,"w":34,"h":25}, "sourceSize": {"w":68,"h":56} }, "shiny/crabrawler": { "frame": {"x":1496,"y":892,"w":22,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":30,"w":22,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/cradily": { "frame": {"x":1196,"y":632,"w":27,"h":26}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":28,"w":27,"h":26}, "sourceSize": {"w":68,"h":56} }, "shiny/cramorant-gorging": { "frame": {"x":1300,"y":407,"w":33,"h":37}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":14,"y":17,"w":33,"h":37}, "sourceSize": {"w":68,"h":56} }, "shiny/cramorant-gulping": { "frame": {"x":720,"y":1069,"w":31,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":21,"w":31,"h":33}, "sourceSize": {"w":68,"h":56} }, "shiny/cramorant": { "frame": {"x":1746,"y":296,"w":25,"h":31}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":23,"w":25,"h":31}, "sourceSize": {"w":68,"h":56} }, "shiny/cranidos": { "frame": {"x":1504,"y":1136,"w":23,"h":21}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":22,"y":33,"w":23,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/crawdaunt": { "frame": {"x":709,"y":795,"w":35,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":15,"y":23,"w":35,"h":33}, "sourceSize": {"w":68,"h":56} }, "shiny/cresselia": { "frame": {"x":1335,"y":407,"w":34,"h":36}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":15,"w":34,"h":36}, "sourceSize": {"w":68,"h":56} }, "shiny/croagunk": { "frame": {"x":1966,"y":811,"w":19,"h":19}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":35,"w":19,"h":19}, "sourceSize": {"w":68,"h":56} }, "shiny/crobat": { "frame": {"x":970,"y":49,"w":48,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":15,"y":19,"w":48,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/croconaw": { "frame": {"x":1204,"y":1234,"w":23,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":27,"w":23,"h":27}, "sourceSize": {"w":68,"h":56} }, "shiny/crustle": { "frame": {"x":507,"y":550,"w":38,"h":31}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":13,"y":25,"w":38,"h":31}, "sourceSize": {"w":68,"h":56} }, "shiny/cryogonal": { "frame": {"x":819,"y":1033,"w":29,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":21,"w":29,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/cubchoo": { "frame": {"x":1906,"y":1114,"w":16,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":34,"w":16,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/cubone": { "frame": {"x":1686,"y":750,"w":22,"h":21}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":33,"w":22,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/cufant": { "frame": {"x":1234,"y":1063,"w":27,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":19,"y":30,"w":27,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/cursola": { "frame": {"x":639,"y":761,"w":34,"h":34}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":20,"w":34,"h":34}, "sourceSize": {"w":68,"h":56} }, "shiny/cutiefly": { "frame": {"x":1596,"y":1171,"w":21,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":29,"w":21,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/cyndaquil": { "frame": {"x":1829,"y":679,"w":22,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":34,"w":22,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/darkrai": { "frame": {"x":954,"y":1069,"w":33,"h":30}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":25,"w":33,"h":30}, "sourceSize": {"w":68,"h":56} }, "shiny/darmanitan-galar-zen": { "frame": {"x":1148,"y":226,"w":32,"h":35}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":20,"w":32,"h":35}, "sourceSize": {"w":68,"h":56} }, "shiny/darmanitan-galar": { "frame": {"x":527,"y":1081,"w":31,"h":36}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":20,"w":31,"h":36}, "sourceSize": {"w":68,"h":56} }, "shiny/darmanitan-zen": { "frame": {"x":1098,"y":1090,"w":28,"h":26}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":29,"w":28,"h":26}, "sourceSize": {"w":68,"h":56} }, "shiny/darmanitan": { "frame": {"x":1182,"y":185,"w":37,"h":36}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":19,"w":37,"h":36}, "sourceSize": {"w":68,"h":56} }, "shiny/dartrix": { "frame": {"x":1480,"y":1210,"w":19,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":24,"y":29,"w":19,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/darumaka-galar": { "frame": {"x":1906,"y":1093,"w":19,"h":17}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":24,"y":37,"w":19,"h":17}, "sourceSize": {"w":68,"h":56} }, "shiny/darumaka": { "frame": {"x":1958,"y":1069,"w":19,"h":17}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":24,"y":37,"w":19,"h":17}, "sourceSize": {"w":68,"h":56} }, "shiny/decidueye": { "frame": {"x":629,"y":312,"w":27,"h":40}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":15,"w":27,"h":40}, "sourceSize": {"w":68,"h":56} }, "shiny/dedenne": { "frame": {"x":812,"y":502,"w":36,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":25,"w":36,"h":29}, "sourceSize": {"w":68,"h":56} }, "shiny/deerling-autumn": { "frame": {"x":1800,"y":638,"w":20,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":30,"w":20,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/deerling-summer": { "frame": {"x":1826,"y":638,"w":20,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":30,"w":20,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/deerling-winter": { "frame": {"x":1852,"y":638,"w":20,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":30,"w":20,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/deerling": { "frame": {"x":1878,"y":638,"w":20,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":30,"w":20,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/deino": { "frame": {"x":1703,"y":916,"w":18,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":32,"w":18,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/delcatty": { "frame": {"x":1473,"y":674,"w":24,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":31,"w":24,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/delibird": { "frame": {"x":656,"y":1077,"w":28,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":23,"w":28,"h":33}, "sourceSize": {"w":68,"h":56} }, "shiny/delphox": { "frame": {"x":1033,"y":918,"w":29,"h":25}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":29,"w":29,"h":25}, "sourceSize": {"w":68,"h":56} }, "shiny/deoxys-attack": { "frame": {"x":1717,"y":418,"w":31,"h":28}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":18,"y":28,"w":31,"h":28}, "sourceSize": {"w":68,"h":56} }, "shiny/deoxys-defense": { "frame": {"x":1090,"y":886,"w":28,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":30,"w":28,"h":25}, "sourceSize": {"w":68,"h":56} }, "shiny/deoxys-speed": { "frame": {"x":1164,"y":604,"w":27,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":28,"w":27,"h":27}, "sourceSize": {"w":68,"h":56} }, "shiny/deoxys": { "frame": {"x":1100,"y":1120,"w":28,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":30,"w":28,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/dewgong": { "frame": {"x":180,"y":1232,"w":39,"h":39}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":14,"y":16,"w":39,"h":39}, "sourceSize": {"w":68,"h":56} }, "shiny/dewott": { "frame": {"x":1347,"y":654,"w":21,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":29,"w":21,"h":25}, "sourceSize": {"w":68,"h":56} }, "shiny/dewpider": { "frame": {"x":1745,"y":1237,"w":16,"h":22}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":26,"y":32,"w":16,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/dhelmise": { "frame": {"x":1630,"y":81,"w":31,"h":38}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":18,"w":31,"h":38}, "sourceSize": {"w":68,"h":56} }, "shiny/dialga": { "frame": {"x":180,"y":432,"w":43,"h":45}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":15,"y":8,"w":43,"h":45}, "sourceSize": {"w":68,"h":56} }, "shiny/diancie-mega": { "frame": {"x":547,"y":938,"w":32,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":28,"w":32,"h":27}, "sourceSize": {"w":68,"h":56} }, "shiny/diancie": { "frame": {"x":453,"y":967,"w":35,"h":41}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":13,"w":35,"h":41}, "sourceSize": {"w":68,"h":56} }, "shiny/diggersby": { "frame": {"x":713,"y":761,"w":36,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":23,"w":36,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/diglett-alola": { "frame": {"x":1887,"y":1014,"w":17,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":34,"w":17,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/diglett": { "frame": {"x":1926,"y":1201,"w":17,"h":16}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":26,"y":38,"w":17,"h":16}, "sourceSize": {"w":68,"h":56} }, "shiny/ditto": { "frame": {"x":1944,"y":1196,"w":18,"h":15}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":25,"y":39,"w":18,"h":15}, "sourceSize": {"w":68,"h":56} }, "shiny/dodrio": { "frame": {"x":226,"y":1145,"w":42,"h":34}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":10,"y":21,"w":42,"h":34}, "sourceSize": {"w":68,"h":56} }, "shiny/doduo": { "frame": {"x":1661,"y":944,"w":23,"h":20}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":22,"y":34,"w":23,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/donphan": { "frame": {"x":1526,"y":530,"w":31,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":30,"w":31,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/dottler": { "frame": {"x":1236,"y":1204,"w":27,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":31,"w":27,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/doublade": { "frame": {"x":723,"y":1165,"w":33,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":31,"w":33,"h":25}, "sourceSize": {"w":68,"h":56} }, "shiny/dracovish": { "frame": {"x":846,"y":598,"w":33,"h":34}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":20,"w":33,"h":34}, "sourceSize": {"w":68,"h":56} }, "shiny/dracozolt": { "frame": {"x":94,"y":1242,"w":41,"h":36}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":15,"y":18,"w":41,"h":36}, "sourceSize": {"w":68,"h":56} }, "shiny/dragalge": { "frame": {"x":1345,"y":114,"w":39,"h":34}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":18,"w":39,"h":34}, "sourceSize": {"w":68,"h":56} }, "shiny/dragapult": { "frame": {"x":309,"y":174,"w":49,"h":41}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":12,"y":12,"w":49,"h":41}, "sourceSize": {"w":68,"h":56} }, "shiny/dragonair": { "frame": {"x":1371,"y":865,"w":24,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":30,"w":24,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/dragonite": { "frame": {"x":915,"y":269,"w":38,"h":42}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":17,"y":9,"w":38,"h":42}, "sourceSize": {"w":68,"h":56} }, "shiny/drakloak": { "frame": {"x":1100,"y":1150,"w":28,"h":26}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":27,"w":28,"h":26}, "sourceSize": {"w":68,"h":56} }, "shiny/drampa": { "frame": {"x":1051,"y":117,"w":40,"h":26}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":13,"y":30,"w":40,"h":26}, "sourceSize": {"w":68,"h":56} }, "shiny/drapion": { "frame": {"x":532,"y":43,"w":54,"h":30}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":7,"y":25,"w":54,"h":30}, "sourceSize": {"w":68,"h":56} }, "shiny/dratini": { "frame": {"x":1853,"y":679,"w":22,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":34,"w":22,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/drednaw-gmax": { "frame": {"x":1,"y":662,"w":53,"h":48}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":8,"y":7,"w":53,"h":48}, "sourceSize": {"w":68,"h":56} }, "shiny/drednaw": { "frame": {"x":409,"y":1190,"w":42,"h":29}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":13,"y":26,"w":42,"h":29}, "sourceSize": {"w":68,"h":56} }, "shiny/dreepy": { "frame": {"x":1504,"y":556,"w":26,"h":19}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":34,"w":26,"h":19}, "sourceSize": {"w":68,"h":56} }, "shiny/drifblim": { "frame": {"x":821,"y":1067,"w":32,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":24,"w":32,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/drifloon": { "frame": {"x":1623,"y":727,"w":17,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":31,"w":17,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/drilbur": { "frame": {"x":1681,"y":844,"w":23,"h":19}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":22,"y":35,"w":23,"h":19}, "sourceSize": {"w":68,"h":56} }, "shiny/drizzile": { "frame": {"x":1922,"y":516,"w":26,"h":30}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":25,"w":26,"h":30}, "sourceSize": {"w":68,"h":56} }, "shiny/drowzee": { "frame": {"x":1287,"y":1135,"w":26,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":19,"y":30,"w":26,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/druddigon": { "frame": {"x":956,"y":121,"w":43,"h":37}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":12,"y":18,"w":43,"h":37}, "sourceSize": {"w":68,"h":56} }, "shiny/dubwool": { "frame": {"x":688,"y":1104,"w":32,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":22,"w":32,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/ducklett": { "frame": {"x":1808,"y":1044,"w":18,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":33,"w":18,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/dugtrio-alola": { "frame": {"x":1292,"y":801,"w":25,"h":26}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":28,"w":25,"h":26}, "sourceSize": {"w":68,"h":56} }, "shiny/dugtrio": { "frame": {"x":1335,"y":445,"w":34,"h":36}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":20,"w":34,"h":36}, "sourceSize": {"w":68,"h":56} }, "shiny/dunsparce": { "frame": {"x":1061,"y":941,"w":26,"h":28}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":25,"w":26,"h":28}, "sourceSize": {"w":68,"h":56} }, "shiny/duosion": { "frame": {"x":1808,"y":1067,"w":18,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":33,"w":18,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/duraludon-gmax": { "frame": {"x":310,"y":135,"w":37,"h":50}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":15,"y":4,"w":37,"h":50}, "sourceSize": {"w":68,"h":56} }, "shiny/duraludon": { "frame": {"x":1105,"y":426,"w":31,"h":37}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":17,"w":31,"h":37}, "sourceSize": {"w":68,"h":56} }, "shiny/durant": { "frame": {"x":472,"y":1096,"w":41,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":13,"y":31,"w":41,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/dusclops": { "frame": {"x":1126,"y":1090,"w":28,"h":26}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":28,"w":28,"h":26}, "sourceSize": {"w":68,"h":56} }, "shiny/dusknoir": { "frame": {"x":45,"y":1153,"w":42,"h":36}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":12,"y":17,"w":42,"h":36}, "sourceSize": {"w":68,"h":56} }, "shiny/duskull": { "frame": {"x":1539,"y":1255,"w":20,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":31,"w":20,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/dustox": { "frame": {"x":1158,"y":662,"w":28,"h":21}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":33,"w":28,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/dwebble": { "frame": {"x":1787,"y":927,"w":21,"h":19}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":24,"y":35,"w":21,"h":19}, "sourceSize": {"w":68,"h":56} }, "shiny/eelektrik": { "frame": {"x":1504,"y":1161,"w":23,"h":21}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":33,"w":23,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/eelektross": { "frame": {"x":1336,"y":518,"w":32,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":31,"w":32,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/eevee-gmax": { "frame": {"x":1547,"y":81,"w":36,"h":40}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":16,"y":16,"w":36,"h":40}, "sourceSize": {"w":68,"h":56} }, "shiny/eevee-starter": { "frame": {"x":1125,"y":1060,"w":28,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":19,"y":32,"w":28,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/eevee": { "frame": {"x":1866,"y":873,"w":19,"h":20}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":25,"y":34,"w":19,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/eiscue-noice": { "frame": {"x":1843,"y":157,"w":16,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":21,"w":16,"h":33}, "sourceSize": {"w":68,"h":56} }, "shiny/eiscue": { "frame": {"x":804,"y":669,"w":23,"h":37}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":17,"w":23,"h":37}, "sourceSize": {"w":68,"h":56} }, "shiny/ekans": { "frame": {"x":1561,"y":1255,"w":20,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":31,"w":20,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/eldegoss": { "frame": {"x":1625,"y":388,"w":28,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":28,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/electabuzz": { "frame": {"x":1661,"y":121,"w":35,"h":37}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":19,"y":15,"w":35,"h":37}, "sourceSize": {"w":68,"h":56} }, "shiny/electivire": { "frame": {"x":1371,"y":407,"w":37,"h":33}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":16,"y":19,"w":37,"h":33}, "sourceSize": {"w":68,"h":56} }, "shiny/electrike": { "frame": {"x":1813,"y":1261,"w":21,"h":17}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":37,"w":21,"h":17}, "sourceSize": {"w":68,"h":56} }, "shiny/electrode": { "frame": {"x":1926,"y":1051,"w":18,"h":18}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":36,"w":18,"h":18}, "sourceSize": {"w":68,"h":56} }, "shiny/elekid": { "frame": {"x":1544,"y":1010,"w":23,"h":22}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":22,"y":32,"w":23,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/elgyem": { "frame": {"x":1949,"y":767,"w":15,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":33,"w":15,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/emboar": { "frame": {"x":1964,"y":282,"w":30,"h":27}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":19,"y":27,"w":30,"h":27}, "sourceSize": {"w":68,"h":56} }, "shiny/emolga": { "frame": {"x":1093,"y":117,"w":40,"h":28}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":21,"w":40,"h":28}, "sourceSize": {"w":68,"h":56} }, "shiny/empoleon": { "frame": {"x":1186,"y":720,"w":25,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":27,"w":25,"h":27}, "sourceSize": {"w":68,"h":56} }, "shiny/entei": { "frame": {"x":152,"y":1189,"w":41,"h":37}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":18,"y":16,"w":41,"h":37}, "sourceSize": {"w":68,"h":56} }, "shiny/escavalier": { "frame": {"x":1136,"y":374,"w":34,"h":37}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":19,"w":34,"h":37}, "sourceSize": {"w":68,"h":56} }, "shiny/espeon": { "frame": {"x":474,"y":626,"w":37,"h":31}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":16,"y":24,"w":37,"h":31}, "sourceSize": {"w":68,"h":56} }, "shiny/espurr": { "frame": {"x":1847,"y":1027,"w":18,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":34,"w":18,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/eternatus-eternamax": { "frame": {"x":1,"y":59,"w":68,"h":56}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":68,"h":56}, "sourceSize": {"w":68,"h":56} }, "shiny/eternatus": { "frame": {"x":137,"y":1,"w":60,"h":50}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":7,"y":6,"w":60,"h":50}, "sourceSize": {"w":68,"h":56} }, "shiny/excadrill": { "frame": {"x":461,"y":1010,"w":41,"h":31}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":14,"y":24,"w":41,"h":31}, "sourceSize": {"w":68,"h":56} }, "shiny/exeggcute": { "frame": {"x":1891,"y":573,"w":26,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":34,"w":26,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/exeggutor-alola": { "frame": {"x":652,"y":1,"w":39,"h":56}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":13,"y":0,"w":39,"h":56}, "sourceSize": {"w":68,"h":56} }, "shiny/exeggutor": { "frame": {"x":455,"y":265,"w":39,"h":45}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":16,"y":8,"w":39,"h":45}, "sourceSize": {"w":68,"h":56} }, "shiny/exploud": { "frame": {"x":118,"y":1054,"w":43,"h":35}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":16,"y":17,"w":43,"h":35}, "sourceSize": {"w":68,"h":56} }, "shiny/falinks": { "frame": {"x":892,"y":1198,"w":33,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":32,"w":33,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/farfetchd-galar": { "frame": {"x":520,"y":75,"w":50,"h":31}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":10,"y":25,"w":50,"h":31}, "sourceSize": {"w":68,"h":56} }, "shiny/farfetchd": { "frame": {"x":1128,"y":1150,"w":28,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":30,"w":28,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/fearow": { "frame": {"x":1370,"y":518,"w":32,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":30,"w":32,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/feebas": { "frame": {"x":1665,"y":752,"w":19,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":31,"w":19,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/female/frillish": { "frame": {"x":1628,"y":1218,"w":21,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":32,"w":21,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/female/hippopotas": { "frame": {"x":1919,"y":573,"w":26,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":34,"w":26,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/female/hippowdon": { "frame": {"x":508,"y":800,"w":38,"h":26}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":15,"y":29,"w":38,"h":26}, "sourceSize": {"w":68,"h":56} }, "shiny/female/indeedee": { "frame": {"x":925,"y":491,"w":28,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":25,"w":28,"h":29}, "sourceSize": {"w":68,"h":56} }, "shiny/female/jellicent": { "frame": {"x":881,"y":611,"w":33,"h":34}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":21,"w":33,"h":34}, "sourceSize": {"w":68,"h":56} }, "shiny/female/meowstic": { "frame": {"x":688,"y":1191,"w":30,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":24,"w":30,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/female/pikachu-alola-cap": { "frame": {"x":1261,"y":1082,"w":26,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":31,"w":26,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/female/pikachu-hoenn-cap": { "frame": {"x":1262,"y":1110,"w":26,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":31,"w":26,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/female/pikachu-kalos-cap": { "frame": {"x":1262,"y":1138,"w":26,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":31,"w":26,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/female/pikachu-original-cap": { "frame": {"x":1262,"y":1166,"w":26,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":31,"w":26,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/female/pikachu-partner-cap": { "frame": {"x":1262,"y":1194,"w":26,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":31,"w":26,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/female/pikachu-sinnoh-cap": { "frame": {"x":1615,"y":561,"w":26,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":31,"w":26,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/female/pikachu-starter": { "frame": {"x":1102,"y":490,"w":30,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":31,"w":30,"h":25}, "sourceSize": {"w":68,"h":56} }, "shiny/female/pikachu-unova-cap": { "frame": {"x":1643,"y":561,"w":26,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":31,"w":26,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/female/pikachu-world-cap": { "frame": {"x":1695,"y":567,"w":26,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":31,"w":26,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/female/pikachu": { "frame": {"x":1544,"y":1035,"w":23,"h":22}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":32,"w":23,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/female/pyroar": { "frame": {"x":687,"y":1252,"w":32,"h":26}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":28,"w":32,"h":26}, "sourceSize": {"w":68,"h":56} }, "shiny/female/unfezant": { "frame": {"x":956,"y":1133,"w":31,"h":31}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":24,"w":31,"h":31}, "sourceSize": {"w":68,"h":56} }, "shiny/fennekin": { "frame": {"x":1766,"y":1127,"w":19,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":33,"w":19,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/feraligatr": { "frame": {"x":754,"y":1194,"w":33,"h":28}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":26,"w":33,"h":28}, "sourceSize": {"w":68,"h":56} }, "shiny/ferroseed": { "frame": {"x":1924,"y":1260,"w":17,"h":18}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":36,"w":17,"h":18}, "sourceSize": {"w":68,"h":56} }, "shiny/ferrothorn": { "frame": {"x":309,"y":673,"w":44,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":11,"y":29,"w":44,"h":27}, "sourceSize": {"w":68,"h":56} }, "shiny/finneon": { "frame": {"x":1732,"y":726,"w":22,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":33,"w":22,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/flaaffy": { "frame": {"x":1474,"y":598,"w":23,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":30,"w":23,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/flabebe-blue": { "frame": {"x":1887,"y":1036,"w":17,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":34,"w":17,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/flabebe-orange": { "frame": {"x":1887,"y":1058,"w":17,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":34,"w":17,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/flabebe-white": { "frame": {"x":1887,"y":1080,"w":17,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":34,"w":17,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/flabebe-yellow": { "frame": {"x":1887,"y":1102,"w":17,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":34,"w":17,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/flabebe": { "frame": {"x":1974,"y":959,"w":17,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":34,"w":17,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/flapple-gmax": { "frame": {"x":1149,"y":86,"w":29,"h":46}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":8,"w":29,"h":46}, "sourceSize": {"w":68,"h":56} }, "shiny/flapple": { "frame": {"x":1336,"y":483,"w":37,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":21,"w":37,"h":33}, "sourceSize": {"w":68,"h":56} }, "shiny/flareon": { "frame": {"x":1148,"y":263,"w":32,"h":35}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":20,"w":32,"h":35}, "sourceSize": {"w":68,"h":56} }, "shiny/fletchinder": { "frame": {"x":1421,"y":849,"w":24,"h":22}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":22,"y":32,"w":24,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/fletchling": { "frame": {"x":1927,"y":789,"w":20,"h":17}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":37,"w":20,"h":17}, "sourceSize": {"w":68,"h":56} }, "shiny/floatzel": { "frame": {"x":1229,"y":1233,"w":27,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":31,"w":27,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/floette-blue": { "frame": {"x":1904,"y":638,"w":21,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":30,"w":21,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/floette-eternal": { "frame": {"x":1364,"y":1102,"w":25,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":31,"w":25,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/floette-orange": { "frame": {"x":1523,"y":795,"w":21,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":30,"w":21,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/floette-white": { "frame": {"x":1549,"y":795,"w":21,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":30,"w":21,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/floette-yellow": { "frame": {"x":1545,"y":843,"w":21,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":30,"w":21,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/floette": { "frame": {"x":1498,"y":968,"w":21,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":30,"w":21,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/florges-blue": { "frame": {"x":924,"y":552,"w":28,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":27,"w":28,"h":29}, "sourceSize": {"w":68,"h":56} }, "shiny/florges-orange": { "frame": {"x":954,"y":460,"w":28,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":27,"w":28,"h":29}, "sourceSize": {"w":68,"h":56} }, "shiny/florges-white": { "frame": {"x":955,"y":491,"w":28,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":27,"w":28,"h":29}, "sourceSize": {"w":68,"h":56} }, "shiny/florges-yellow": { "frame": {"x":955,"y":522,"w":28,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":27,"w":28,"h":29}, "sourceSize": {"w":68,"h":56} }, "shiny/florges": { "frame": {"x":954,"y":553,"w":28,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":27,"w":28,"h":29}, "sourceSize": {"w":68,"h":56} }, "shiny/flygon": { "frame": {"x":768,"y":311,"w":39,"h":36}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":17,"w":39,"h":36}, "sourceSize": {"w":68,"h":56} }, "shiny/fomantis": { "frame": {"x":1948,"y":808,"w":16,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":27,"y":32,"w":16,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/foongus": { "frame": {"x":1940,"y":1114,"w":16,"h":19}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":35,"w":16,"h":19}, "sourceSize": {"w":68,"h":56} }, "shiny/forretress": { "frame": {"x":1720,"y":592,"w":25,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":34,"w":25,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/fraxure": { "frame": {"x":1227,"y":918,"w":27,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":31,"w":27,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/frillish": { "frame": {"x":1628,"y":1242,"w":21,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":32,"w":21,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/froakie": { "frame": {"x":1744,"y":1076,"w":20,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":34,"w":20,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/frogadier": { "frame": {"x":1370,"y":733,"w":25,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":32,"w":25,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/froslass": { "frame": {"x":778,"y":760,"w":24,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":22,"w":24,"h":33}, "sourceSize": {"w":68,"h":56} }, "shiny/frosmoth": { "frame": {"x":1316,"y":150,"w":39,"h":34}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":15,"y":20,"w":39,"h":34}, "sourceSize": {"w":68,"h":56} }, "shiny/furfrou-dandy": { "frame": {"x":1077,"y":1225,"w":26,"h":28}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":26,"w":26,"h":28}, "sourceSize": {"w":68,"h":56} }, "shiny/furfrou-debutante": { "frame": {"x":1189,"y":545,"w":27,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":27,"w":27,"h":27}, "sourceSize": {"w":68,"h":56} }, "shiny/furfrou-diamond": { "frame": {"x":1950,"y":516,"w":26,"h":30}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":24,"w":26,"h":30}, "sourceSize": {"w":68,"h":56} }, "shiny/furfrou-heart": { "frame": {"x":1070,"y":804,"w":27,"h":28}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":26,"w":27,"h":28}, "sourceSize": {"w":68,"h":56} }, "shiny/furfrou-kabuki": { "frame": {"x":1193,"y":574,"w":27,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":27,"w":27,"h":27}, "sourceSize": {"w":68,"h":56} }, "shiny/furfrou-la-reine": { "frame": {"x":1193,"y":603,"w":27,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":27,"w":27,"h":27}, "sourceSize": {"w":68,"h":56} }, "shiny/furfrou-matron": { "frame": {"x":1130,"y":746,"w":26,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":27,"w":26,"h":27}, "sourceSize": {"w":68,"h":56} }, "shiny/furfrou-pharaoh": { "frame": {"x":1097,"y":1060,"w":26,"h":28}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":26,"w":26,"h":28}, "sourceSize": {"w":68,"h":56} }, "shiny/furfrou-star": { "frame": {"x":944,"y":612,"w":28,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":25,"w":28,"h":29}, "sourceSize": {"w":68,"h":56} }, "shiny/furfrou": { "frame": {"x":974,"y":612,"w":26,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":25,"w":26,"h":29}, "sourceSize": {"w":68,"h":56} }, "shiny/furret": { "frame": {"x":1391,"y":1102,"w":25,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":31,"w":25,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/gabite": { "frame": {"x":1390,"y":1127,"w":25,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":31,"w":25,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/gallade-mega": { "frame": {"x":1099,"y":804,"w":27,"h":28}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":26,"w":27,"h":28}, "sourceSize": {"w":68,"h":56} }, "shiny/gallade": { "frame": {"x":883,"y":907,"w":28,"h":35}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":20,"w":28,"h":35}, "sourceSize": {"w":68,"h":56} }, "shiny/galvantula": { "frame": {"x":1099,"y":344,"w":39,"h":29}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":13,"y":27,"w":39,"h":29}, "sourceSize": {"w":68,"h":56} }, "shiny/garbodor-gmax": { "frame": {"x":765,"y":1,"w":53,"h":42}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":5,"y":13,"w":53,"h":42}, "sourceSize": {"w":68,"h":56} }, "shiny/garbodor": { "frame": {"x":355,"y":675,"w":44,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":13,"y":23,"w":44,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/garchomp-mega": { "frame": {"x":1550,"y":231,"w":32,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":29,"w":32,"h":27}, "sourceSize": {"w":68,"h":56} }, "shiny/garchomp": { "frame": {"x":1375,"y":483,"w":37,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":20,"w":37,"h":33}, "sourceSize": {"w":68,"h":56} }, "shiny/gardevoir-mega": { "frame": {"x":1126,"y":1120,"w":28,"h":26}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":28,"w":28,"h":26}, "sourceSize": {"w":68,"h":56} }, "shiny/gardevoir": { "frame": {"x":773,"y":639,"w":28,"h":37}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":22,"y":18,"w":28,"h":37}, "sourceSize": {"w":68,"h":56} }, "shiny/gastly": { "frame": {"x":1390,"y":1154,"w":25,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":31,"w":25,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/gastrodon-east": { "frame": {"x":477,"y":785,"w":29,"h":30}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":26,"w":29,"h":30}, "sourceSize": {"w":68,"h":56} }, "shiny/gastrodon": { "frame": {"x":1555,"y":293,"w":30,"h":31}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":25,"w":30,"h":31}, "sourceSize": {"w":68,"h":56} }, "shiny/genesect-burn": { "frame": {"x":1734,"y":193,"w":31,"h":36}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":19,"w":31,"h":36}, "sourceSize": {"w":68,"h":56} }, "shiny/genesect-chill": { "frame": {"x":1935,"y":160,"w":31,"h":36}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":17,"y":19,"w":31,"h":36}, "sourceSize": {"w":68,"h":56} }, "shiny/genesect-douse": { "frame": {"x":709,"y":932,"w":31,"h":36}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":17,"y":19,"w":31,"h":36}, "sourceSize": {"w":68,"h":56} }, "shiny/genesect-shock": { "frame": {"x":747,"y":932,"w":31,"h":36}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":17,"y":19,"w":31,"h":36}, "sourceSize": {"w":68,"h":56} }, "shiny/genesect-standard": { "frame": {"x":1306,"y":941,"w":24,"h":26}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":29,"w":24,"h":26}, "sourceSize": {"w":68,"h":56} }, "shiny/genesect": { "frame": {"x":850,"y":907,"w":31,"h":36}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":19,"w":31,"h":36}, "sourceSize": {"w":68,"h":56} }, "shiny/gengar-gmax": { "frame": {"x":135,"y":432,"w":48,"h":43}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":10,"y":13,"w":48,"h":43}, "sourceSize": {"w":68,"h":56} }, "shiny/gengar-mega": { "frame": {"x":689,"y":728,"w":36,"h":31}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":25,"w":36,"h":31}, "sourceSize": {"w":68,"h":56} }, "shiny/gengar": { "frame": {"x":1138,"y":413,"w":34,"h":37}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":17,"w":34,"h":37}, "sourceSize": {"w":68,"h":56} }, "shiny/geodude-alola": { "frame": {"x":1282,"y":1243,"w":26,"h":17}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":37,"w":26,"h":17}, "sourceSize": {"w":68,"h":56} }, "shiny/geodude": { "frame": {"x":1310,"y":1243,"w":26,"h":17}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":37,"w":26,"h":17}, "sourceSize": {"w":68,"h":56} }, "shiny/gible": { "frame": {"x":1709,"y":750,"w":21,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":33,"w":21,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/gigalith": { "frame": {"x":658,"y":312,"w":40,"h":35}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":15,"y":20,"w":40,"h":35}, "sourceSize": {"w":68,"h":56} }, "shiny/girafarig": { "frame": {"x":1319,"y":867,"w":24,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":29,"w":24,"h":25}, "sourceSize": {"w":68,"h":56} }, "shiny/giratina-origin": { "frame": {"x":357,"y":305,"w":46,"h":41}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":10,"y":8,"w":46,"h":41}, "sourceSize": {"w":68,"h":56} }, "shiny/giratina": { "frame": {"x":913,"y":231,"w":44,"h":36}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":12,"y":17,"w":44,"h":36}, "sourceSize": {"w":68,"h":56} }, "shiny/glaceon": { "frame": {"x":507,"y":516,"w":38,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":15,"y":23,"w":38,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/glalie-mega": { "frame": {"x":1292,"y":829,"w":25,"h":26}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":28,"w":25,"h":26}, "sourceSize": {"w":68,"h":56} }, "shiny/glalie": { "frame": {"x":720,"y":1192,"w":32,"h":30}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":23,"w":32,"h":30}, "sourceSize": {"w":68,"h":56} }, "shiny/glameow": { "frame": {"x":1105,"y":1225,"w":28,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":30,"w":28,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/glastrier": { "frame": {"x":307,"y":843,"w":35,"h":39}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":17,"w":35,"h":39}, "sourceSize": {"w":68,"h":56} }, "shiny/gligar": { "frame": {"x":1326,"y":544,"w":26,"h":26}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":29,"w":26,"h":26}, "sourceSize": {"w":68,"h":56} }, "shiny/gliscor": { "frame": {"x":927,"y":1198,"w":33,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":30,"w":33,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/gloom": { "frame": {"x":1499,"y":600,"w":24,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":31,"w":24,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/gogoat": { "frame": {"x":1396,"y":705,"w":25,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":30,"w":25,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/golbat": { "frame": {"x":119,"y":1099,"w":43,"h":35}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":17,"w":43,"h":35}, "sourceSize": {"w":68,"h":56} }, "shiny/goldeen": { "frame": {"x":1807,"y":569,"w":26,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":33,"w":26,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/golduck": { "frame": {"x":699,"y":396,"w":40,"h":34}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":13,"y":19,"w":40,"h":34}, "sourceSize": {"w":68,"h":56} }, "shiny/golem-alola": { "frame": {"x":344,"y":843,"w":37,"h":40}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":15,"w":37,"h":40}, "sourceSize": {"w":68,"h":56} }, "shiny/golem": { "frame": {"x":809,"y":311,"w":40,"h":35}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":10,"y":19,"w":40,"h":35}, "sourceSize": {"w":68,"h":56} }, "shiny/golett": { "frame": {"x":1905,"y":766,"w":20,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":34,"w":20,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/golisopod": { "frame": {"x":735,"y":505,"w":39,"h":35}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":14,"y":21,"w":39,"h":35}, "sourceSize": {"w":68,"h":56} }, "shiny/golurk": { "frame": {"x":1458,"y":228,"w":30,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":23,"w":30,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/goodra": { "frame": {"x":609,"y":950,"w":33,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":23,"w":33,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/goomy": { "frame": {"x":1977,"y":1105,"w":14,"h":16}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":27,"y":38,"w":14,"h":16}, "sourceSize": {"w":68,"h":56} }, "shiny/gorebyss": { "frame": {"x":1056,"y":1255,"w":28,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":31,"w":28,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/gossifleur": { "frame": {"x":1844,"y":894,"w":19,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":34,"w":19,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/gothita": { "frame": {"x":1906,"y":1136,"w":16,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":34,"w":16,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/gothitelle": { "frame": {"x":853,"y":1101,"w":30,"h":33}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":22,"w":30,"h":33}, "sourceSize": {"w":68,"h":56} }, "shiny/gothorita": { "frame": {"x":1421,"y":875,"w":24,"h":22}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":22,"y":32,"w":24,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/gourgeist-large": { "frame": {"x":1205,"y":976,"w":25,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":28,"w":25,"h":27}, "sourceSize": {"w":68,"h":56} }, "shiny/gourgeist-small": { "frame": {"x":1575,"y":796,"w":20,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":25,"y":30,"w":20,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/gourgeist-super": { "frame": {"x":1206,"y":1005,"w":25,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":27,"w":25,"h":27}, "sourceSize": {"w":68,"h":56} }, "shiny/gourgeist": { "frame": {"x":699,"y":438,"w":40,"h":34}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":16,"y":21,"w":40,"h":34}, "sourceSize": {"w":68,"h":56} }, "shiny/granbull": { "frame": {"x":1345,"y":867,"w":24,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":29,"w":24,"h":25}, "sourceSize": {"w":68,"h":56} }, "shiny/grapploct": { "frame": {"x":1557,"y":358,"w":30,"h":30}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":26,"w":30,"h":30}, "sourceSize": {"w":68,"h":56} }, "shiny/graveler-alola": { "frame": {"x":722,"y":1224,"w":31,"h":26}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":28,"w":31,"h":26}, "sourceSize": {"w":68,"h":56} }, "shiny/graveler": { "frame": {"x":1130,"y":1180,"w":28,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":30,"w":28,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/greedent": { "frame": {"x":652,"y":1246,"w":32,"h":33}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":19,"y":21,"w":32,"h":33}, "sourceSize": {"w":68,"h":56} }, "shiny/greninja-ash": { "frame": {"x":816,"y":907,"w":32,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":31,"w":32,"h":25}, "sourceSize": {"w":68,"h":56} }, "shiny/greninja": { "frame": {"x":1438,"y":524,"w":32,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":32,"w":32,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/grimer-alola": { "frame": {"x":1661,"y":969,"w":23,"h":20}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":34,"w":23,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/grimer": { "frame": {"x":1662,"y":1019,"w":23,"h":20}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":34,"w":23,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/grimmsnarl-gmax": { "frame": {"x":360,"y":218,"w":41,"h":49}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":10,"y":7,"w":41,"h":49}, "sourceSize": {"w":68,"h":56} }, "shiny/grimmsnarl": { "frame": {"x":654,"y":664,"w":33,"h":35}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":21,"w":33,"h":35}, "sourceSize": {"w":68,"h":56} }, "shiny/grookey": { "frame": {"x":1399,"y":918,"w":21,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":30,"w":21,"h":25}, "sourceSize": {"w":68,"h":56} }, "shiny/grotle": { "frame": {"x":1499,"y":626,"w":24,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":22,"y":31,"w":24,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/groudon-primal": { "frame": {"x":508,"y":828,"w":38,"h":26}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":28,"w":38,"h":26}, "sourceSize": {"w":68,"h":56} }, "shiny/groudon": { "frame": {"x":96,"y":437,"w":49,"h":37}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":10,"y":17,"w":49,"h":37}, "sourceSize": {"w":68,"h":56} }, "shiny/grovyle": { "frame": {"x":987,"y":733,"w":30,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":30,"w":30,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/growlithe": { "frame": {"x":1447,"y":699,"w":23,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":30,"w":23,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/grubbin": { "frame": {"x":1925,"y":1180,"w":19,"h":15}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":25,"y":36,"w":19,"h":15}, "sourceSize": {"w":68,"h":56} }, "shiny/grumpig": { "frame": {"x":1639,"y":586,"w":25,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":33,"w":25,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/gulpin": { "frame": {"x":1966,"y":832,"w":19,"h":19}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":35,"w":19,"h":19}, "sourceSize": {"w":68,"h":56} }, "shiny/gumshoos": { "frame": {"x":1243,"y":858,"w":22,"h":26}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":28,"w":22,"h":26}, "sourceSize": {"w":68,"h":56} }, "shiny/gurdurr": { "frame": {"x":1016,"y":1093,"w":29,"h":26}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":28,"w":29,"h":26}, "sourceSize": {"w":68,"h":56} }, "shiny/guzzlord": { "frame": {"x":535,"y":1,"w":57,"h":40}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":5,"y":15,"w":57,"h":40}, "sourceSize": {"w":68,"h":56} }, "shiny/gyarados-mega": { "frame": {"x":854,"y":1133,"w":32,"h":31}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":25,"w":32,"h":31}, "sourceSize": {"w":68,"h":56} }, "shiny/gyarados": { "frame": {"x":587,"y":312,"w":40,"h":42}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":15,"y":11,"w":40,"h":42}, "sourceSize": {"w":68,"h":56} }, "shiny/hakamo-o": { "frame": {"x":1023,"y":1139,"w":23,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":27,"w":23,"h":29}, "sourceSize": {"w":68,"h":56} }, "shiny/happiny": { "frame": {"x":1948,"y":831,"w":16,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":33,"w":16,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/hariyama": { "frame": {"x":1404,"y":545,"w":26,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":29,"w":26,"h":25}, "sourceSize": {"w":68,"h":56} }, "shiny/hatenna": { "frame": {"x":1381,"y":994,"w":21,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":31,"w":21,"h":25}, "sourceSize": {"w":68,"h":56} }, "shiny/hatterene-gmax": { "frame": {"x":314,"y":433,"w":41,"h":44}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":14,"y":12,"w":41,"h":44}, "sourceSize": {"w":68,"h":56} }, "shiny/hatterene": { "frame": {"x":526,"y":967,"w":29,"h":36}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":20,"w":29,"h":36}, "sourceSize": {"w":68,"h":56} }, "shiny/hattrem": { "frame": {"x":1364,"y":1127,"w":24,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":31,"w":24,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/haunter": { "frame": {"x":858,"y":1224,"w":32,"h":28}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":26,"w":32,"h":28}, "sourceSize": {"w":68,"h":56} }, "shiny/hawlucha": { "frame": {"x":699,"y":546,"w":37,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":23,"w":37,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/haxorus": { "frame": {"x":1472,"y":191,"w":37,"h":35}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":20,"w":37,"h":35}, "sourceSize": {"w":68,"h":56} }, "shiny/heatmor": { "frame": {"x":1315,"y":84,"w":39,"h":28}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":15,"y":27,"w":39,"h":28}, "sourceSize": {"w":68,"h":56} }, "shiny/heatran": { "frame": {"x":557,"y":108,"w":50,"h":30}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":9,"y":25,"w":50,"h":30}, "sourceSize": {"w":68,"h":56} }, "shiny/heliolisk": { "frame": {"x":1717,"y":262,"w":27,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":23,"w":27,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/helioptile": { "frame": {"x":1884,"y":830,"w":20,"h":19}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":35,"w":20,"h":19}, "sourceSize": {"w":68,"h":56} }, "shiny/heracross-mega": { "frame": {"x":675,"y":795,"w":36,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":16,"y":24,"w":36,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/heracross": { "frame": {"x":180,"y":479,"w":46,"h":42}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":11,"y":11,"w":46,"h":42}, "sourceSize": {"w":68,"h":56} }, "shiny/herdier": { "frame": {"x":1447,"y":725,"w":23,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":30,"w":23,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/hippopotas": { "frame": {"x":1947,"y":577,"w":26,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":34,"w":26,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/hippowdon": { "frame": {"x":508,"y":856,"w":38,"h":26}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":15,"y":29,"w":38,"h":26}, "sourceSize": {"w":68,"h":56} }, "shiny/hitmonchan": { "frame": {"x":1356,"y":230,"w":36,"h":37}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":15,"y":16,"w":36,"h":37}, "sourceSize": {"w":68,"h":56} }, "shiny/hitmonlee": { "frame": {"x":1466,"y":327,"w":30,"h":31}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":24,"w":30,"h":31}, "sourceSize": {"w":68,"h":56} }, "shiny/hitmontop": { "frame": {"x":1352,"y":150,"w":39,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":16,"y":23,"w":39,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/ho-oh": { "frame": {"x":1,"y":770,"w":48,"h":51}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":10,"y":4,"w":48,"h":51}, "sourceSize": {"w":68,"h":56} }, "shiny/honchkrow": { "frame": {"x":1157,"y":865,"w":28,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":30,"w":28,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/honedge": { "frame": {"x":1382,"y":544,"w":20,"h":26}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":27,"y":28,"w":20,"h":26}, "sourceSize": {"w":68,"h":56} }, "shiny/hoopa-unbound": { "frame": {"x":1135,"y":117,"w":40,"h":30}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":14,"y":26,"w":40,"h":30}, "sourceSize": {"w":68,"h":56} }, "shiny/hoopa": { "frame": {"x":1572,"y":1130,"w":23,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":32,"w":23,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/hoothoot": { "frame": {"x":1723,"y":821,"w":19,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":32,"w":19,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/hoppip": { "frame": {"x":1445,"y":800,"w":24,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":32,"w":24,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/horsea": { "frame": {"x":1906,"y":830,"w":20,"h":19}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":35,"w":20,"h":19}, "sourceSize": {"w":68,"h":56} }, "shiny/houndoom-mega": { "frame": {"x":1014,"y":794,"w":25,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":26,"w":25,"h":29}, "sourceSize": {"w":68,"h":56} }, "shiny/houndoom": { "frame": {"x":1357,"y":994,"w":22,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":29,"w":22,"h":25}, "sourceSize": {"w":68,"h":56} }, "shiny/houndour": { "frame": {"x":1644,"y":655,"w":21,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":32,"w":21,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/huntail": { "frame": {"x":1213,"y":690,"w":27,"h":26}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":22,"y":29,"w":27,"h":26}, "sourceSize": {"w":68,"h":56} }, "shiny/hydreigon": { "frame": {"x":355,"y":709,"w":44,"h":31}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":11,"y":22,"w":44,"h":31}, "sourceSize": {"w":68,"h":56} }, "shiny/hypno": { "frame": {"x":180,"y":767,"w":42,"h":37}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":12,"y":16,"w":42,"h":37}, "sourceSize": {"w":68,"h":56} }, "shiny/igglybuff": { "frame": {"x":1974,"y":981,"w":17,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":34,"w":17,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/illumise": { "frame": {"x":1666,"y":679,"w":21,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":31,"w":21,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/impidimp": { "frame": {"x":1723,"y":845,"w":19,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":34,"w":19,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/incineroar": { "frame": {"x":507,"y":656,"w":36,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":22,"w":36,"h":33}, "sourceSize": {"w":68,"h":56} }, "shiny/indeedee": { "frame": {"x":1864,"y":453,"w":24,"h":30}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":24,"w":24,"h":30}, "sourceSize": {"w":68,"h":56} }, "shiny/infernape": { "frame": {"x":1158,"y":692,"w":28,"h":26}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":22,"y":28,"w":28,"h":26}, "sourceSize": {"w":68,"h":56} }, "shiny/inkay": { "frame": {"x":1684,"y":1158,"w":20,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":32,"w":20,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/inteleon-gmax": { "frame": {"x":1,"y":439,"w":52,"h":52}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":6,"y":4,"w":52,"h":52}, "sourceSize": {"w":68,"h":56} }, "shiny/inteleon": { "frame": {"x":1100,"y":85,"w":30,"h":47}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":8,"w":30,"h":47}, "sourceSize": {"w":68,"h":56} }, "shiny/ivysaur": { "frame": {"x":1544,"y":1060,"w":23,"h":22}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":32,"w":23,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/jangmo-o": { "frame": {"x":1370,"y":598,"w":24,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":29,"w":24,"h":25}, "sourceSize": {"w":68,"h":56} }, "shiny/jellicent": { "frame": {"x":684,"y":1034,"w":32,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":21,"w":32,"h":33}, "sourceSize": {"w":68,"h":56} }, "shiny/jigglypuff": { "frame": {"x":1712,"y":702,"w":20,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":32,"w":20,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/jirachi": { "frame": {"x":1445,"y":824,"w":24,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":32,"w":24,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/jolteon": { "frame": {"x":888,"y":1101,"w":30,"h":33}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":22,"w":30,"h":33}, "sourceSize": {"w":68,"h":56} }, "shiny/joltik": { "frame": {"x":1692,"y":659,"w":23,"h":18}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":36,"w":23,"h":18}, "sourceSize": {"w":68,"h":56} }, "shiny/jumpluff": { "frame": {"x":1364,"y":1153,"w":24,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":30,"w":24,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/jynx": { "frame": {"x":1297,"y":47,"w":46,"h":35}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":12,"y":18,"w":46,"h":35}, "sourceSize": {"w":68,"h":56} }, "shiny/kabuto": { "frame": {"x":1945,"y":1216,"w":18,"h":15}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":25,"y":39,"w":18,"h":15}, "sourceSize": {"w":68,"h":56} }, "shiny/kabutops": { "frame": {"x":508,"y":726,"w":35,"h":34}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":15,"y":19,"w":35,"h":34}, "sourceSize": {"w":68,"h":56} }, "shiny/kadabra": { "frame": {"x":1777,"y":453,"w":31,"h":27}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":18,"y":27,"w":31,"h":27}, "sourceSize": {"w":68,"h":56} }, "shiny/kakuna": { "frame": {"x":1907,"y":1158,"w":15,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":34,"w":15,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/kangaskhan-mega": { "frame": {"x":1769,"y":191,"w":32,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":30,"w":32,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/kangaskhan": { "frame": {"x":1511,"y":191,"w":37,"h":35}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":20,"w":37,"h":35}, "sourceSize": {"w":68,"h":56} }, "shiny/karrablast": { "frame": {"x":1942,"y":1071,"w":14,"h":19}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":27,"y":35,"w":14,"h":19}, "sourceSize": {"w":68,"h":56} }, "shiny/kartana": { "frame": {"x":357,"y":348,"w":46,"h":39}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":11,"y":13,"w":46,"h":39}, "sourceSize": {"w":68,"h":56} }, "shiny/kecleon": { "frame": {"x":1459,"y":1161,"w":22,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":32,"w":22,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/keldeo-resolute": { "frame": {"x":97,"y":767,"w":44,"h":36}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":11,"y":18,"w":44,"h":36}, "sourceSize": {"w":68,"h":56} }, "shiny/keldeo": { "frame": {"x":848,"y":462,"w":37,"h":37}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":17,"w":37,"h":37}, "sourceSize": {"w":68,"h":56} }, "shiny/kingdra": { "frame": {"x":775,"y":349,"w":32,"h":36}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":13,"w":32,"h":36}, "sourceSize": {"w":68,"h":56} }, "shiny/kingler-gmax": { "frame": {"x":307,"y":50,"w":51,"h":40}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":9,"y":16,"w":51,"h":40}, "sourceSize": {"w":68,"h":56} }, "shiny/kingler": { "frame": {"x":405,"y":347,"w":46,"h":40}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":11,"y":16,"w":46,"h":40}, "sourceSize": {"w":68,"h":56} }, "shiny/kirlia": { "frame": {"x":1357,"y":967,"w":20,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":29,"w":20,"h":25}, "sourceSize": {"w":68,"h":56} }, "shiny/klang": { "frame": {"x":1043,"y":1000,"w":29,"h":21}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":18,"y":33,"w":29,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/klefki": { "frame": {"x":929,"y":423,"w":40,"h":34}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":14,"y":20,"w":40,"h":34}, "sourceSize": {"w":68,"h":56} }, "shiny/klink": { "frame": {"x":1624,"y":772,"w":24,"h":18}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":22,"y":35,"w":24,"h":18}, "sourceSize": {"w":68,"h":56} }, "shiny/klinklang": { "frame": {"x":1504,"y":155,"w":38,"h":34}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":21,"w":38,"h":34}, "sourceSize": {"w":68,"h":56} }, "shiny/koffing": { "frame": {"x":1128,"y":804,"w":27,"h":28}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":28,"w":27,"h":28}, "sourceSize": {"w":68,"h":56} }, "shiny/komala": { "frame": {"x":1593,"y":818,"w":23,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":30,"w":23,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/kommo-o": { "frame": {"x":1406,"y":408,"w":36,"h":34}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":18,"y":22,"w":36,"h":34}, "sourceSize": {"w":68,"h":56} }, "shiny/krabby": { "frame": {"x":989,"y":797,"w":30,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":31,"w":30,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/kricketot": { "frame": {"x":1638,"y":818,"w":19,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":29,"w":19,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/kricketune": { "frame": {"x":1244,"y":886,"w":22,"h":26}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":28,"w":22,"h":26}, "sourceSize": {"w":68,"h":56} }, "shiny/krokorok": { "frame": {"x":1229,"y":947,"w":27,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":31,"w":27,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/krookodile": { "frame": {"x":747,"y":965,"w":34,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":22,"w":34,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/kubfu": { "frame": {"x":1498,"y":942,"w":20,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":28,"w":20,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/kyogre-primal": { "frame": {"x":660,"y":580,"w":38,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":32,"w":38,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/kyogre": { "frame": {"x":67,"y":138,"w":60,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":3,"y":24,"w":60,"h":29}, "sourceSize": {"w":68,"h":56} }, "shiny/kyurem-black": { "frame": {"x":509,"y":108,"w":46,"h":39}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":14,"y":17,"w":46,"h":39}, "sourceSize": {"w":68,"h":56} }, "shiny/kyurem-white": { "frame": {"x":1,"y":1041,"w":54,"h":43}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":12,"y":13,"w":54,"h":43}, "sourceSize": {"w":68,"h":56} }, "shiny/kyurem": { "frame": {"x":642,"y":77,"w":49,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":8,"y":22,"w":49,"h":33}, "sourceSize": {"w":68,"h":56} }, "shiny/lairon": { "frame": {"x":1394,"y":1259,"w":25,"h":19}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":35,"w":25,"h":19}, "sourceSize": {"w":68,"h":56} }, "shiny/lampent": { "frame": {"x":1913,"y":701,"w":21,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":34,"w":21,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/landorus-therian": { "frame": {"x":666,"y":228,"w":39,"h":43}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":16,"y":11,"w":39,"h":43}, "sourceSize": {"w":68,"h":56} }, "shiny/landorus": { "frame": {"x":1864,"y":47,"w":39,"h":37}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":13,"y":17,"w":39,"h":37}, "sourceSize": {"w":68,"h":56} }, "shiny/lanturn": { "frame": {"x":466,"y":1053,"w":41,"h":26}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":13,"y":29,"w":41,"h":26}, "sourceSize": {"w":68,"h":56} }, "shiny/lapras-gmax": { "frame": {"x":136,"y":482,"w":48,"h":42}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":11,"y":14,"w":48,"h":42}, "sourceSize": {"w":68,"h":56} }, "shiny/lapras": { "frame": {"x":1700,"y":122,"w":34,"h":38}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":19,"y":17,"w":34,"h":38}, "sourceSize": {"w":68,"h":56} }, "shiny/larvesta": { "frame": {"x":1686,"y":774,"w":22,"h":21}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":33,"w":22,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/larvitar": { "frame": {"x":1798,"y":788,"w":17,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":32,"w":17,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/latias-mega": { "frame": {"x":658,"y":605,"w":37,"h":26}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":28,"w":37,"h":26}, "sourceSize": {"w":68,"h":56} }, "shiny/latias": { "frame": {"x":475,"y":1225,"w":41,"h":30}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":16,"y":21,"w":41,"h":30}, "sourceSize": {"w":68,"h":56} }, "shiny/latios-mega": { "frame": {"x":689,"y":700,"w":37,"h":26}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":28,"w":37,"h":26}, "sourceSize": {"w":68,"h":56} }, "shiny/latios": { "frame": {"x":1394,"y":48,"w":47,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":13,"y":19,"w":47,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/leafeon": { "frame": {"x":709,"y":830,"w":35,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":22,"w":35,"h":33}, "sourceSize": {"w":68,"h":56} }, "shiny/leavanny": { "frame": {"x":1705,"y":965,"w":16,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":31,"w":16,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/ledian": { "frame": {"x":1594,"y":943,"w":21,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":31,"w":21,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/ledyba": { "frame": {"x":1847,"y":1049,"w":18,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":34,"w":18,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/lickilicky": { "frame": {"x":560,"y":1040,"w":32,"h":34}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":18,"w":32,"h":34}, "sourceSize": {"w":68,"h":56} }, "shiny/lickitung": { "frame": {"x":1747,"y":592,"w":25,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":35,"w":25,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/liepard": { "frame": {"x":1657,"y":158,"w":35,"h":37}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":19,"y":18,"w":35,"h":37}, "sourceSize": {"w":68,"h":56} }, "shiny/lileep": { "frame": {"x":1734,"y":702,"w":20,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":32,"w":20,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/lilligant": { "frame": {"x":778,"y":834,"w":30,"h":36}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":18,"y":17,"w":30,"h":36}, "sourceSize": {"w":68,"h":56} }, "shiny/lillipup": { "frame": {"x":1927,"y":767,"w":20,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":34,"w":20,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/linoone-galar": { "frame": {"x":1445,"y":848,"w":24,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":32,"w":24,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/linoone": { "frame": {"x":1445,"y":872,"w":24,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":32,"w":24,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/litleo": { "frame": {"x":1569,"y":866,"w":23,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":32,"w":23,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/litten": { "frame": {"x":1232,"y":976,"w":27,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":31,"w":27,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/litwick": { "frame": {"x":1924,"y":1136,"w":15,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":27,"y":34,"w":15,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/lombre": { "frame": {"x":1521,"y":966,"w":21,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":30,"w":21,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/lopunny-mega": { "frame": {"x":941,"y":870,"w":35,"h":26}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":18,"y":29,"w":35,"h":26}, "sourceSize": {"w":68,"h":56} }, "shiny/lopunny": { "frame": {"x":507,"y":583,"w":36,"h":34}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":20,"w":36,"h":34}, "sourceSize": {"w":68,"h":56} }, "shiny/lotad": { "frame": {"x":1958,"y":1090,"w":19,"h":17}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":25,"y":37,"w":19,"h":17}, "sourceSize": {"w":68,"h":56} }, "shiny/loudred": { "frame": {"x":1345,"y":732,"w":23,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":29,"w":23,"h":25}, "sourceSize": {"w":68,"h":56} }, "shiny/lucario-mega": { "frame": {"x":1309,"y":969,"w":21,"h":26}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":28,"w":21,"h":26}, "sourceSize": {"w":68,"h":56} }, "shiny/lucario": { "frame": {"x":611,"y":762,"w":26,"h":37}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":19,"w":26,"h":37}, "sourceSize": {"w":68,"h":56} }, "shiny/ludicolo": { "frame": {"x":221,"y":1232,"w":38,"h":40}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":15,"y":15,"w":38,"h":40}, "sourceSize": {"w":68,"h":56} }, "shiny/lugia-shadow": { "frame": {"x":357,"y":261,"w":47,"h":42}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":12,"y":8,"w":47,"h":42}, "sourceSize": {"w":68,"h":56} }, "shiny/lugia": { "frame": {"x":406,"y":261,"w":47,"h":42}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":12,"y":8,"w":47,"h":42}, "sourceSize": {"w":68,"h":56} }, "shiny/lumineon": { "frame": {"x":1370,"y":625,"w":24,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":29,"w":24,"h":25}, "sourceSize": {"w":68,"h":56} }, "shiny/lunala": { "frame": {"x":579,"y":474,"w":42,"h":40}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":13,"y":13,"w":42,"h":40}, "sourceSize": {"w":68,"h":56} }, "shiny/lunatone": { "frame": {"x":1252,"y":914,"w":20,"h":26}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":29,"w":20,"h":26}, "sourceSize": {"w":68,"h":56} }, "shiny/lurantis": { "frame": {"x":910,"y":870,"w":29,"h":35}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":17,"w":29,"h":35}, "sourceSize": {"w":68,"h":56} }, "shiny/luvdisc": { "frame": {"x":1942,"y":1092,"w":14,"h":19}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":27,"y":35,"w":14,"h":19}, "sourceSize": {"w":68,"h":56} }, "shiny/luxio": { "frame": {"x":993,"y":1255,"w":32,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":31,"w":32,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/luxray": { "frame": {"x":869,"y":777,"w":35,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":20,"w":35,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/lycanroc-dusk": { "frame": {"x":1407,"y":446,"w":34,"h":35}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":17,"w":34,"h":35}, "sourceSize": {"w":68,"h":56} }, "shiny/lycanroc-midnight": { "frame": {"x":913,"y":907,"w":30,"h":35}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":17,"w":30,"h":35}, "sourceSize": {"w":68,"h":56} }, "shiny/lycanroc": { "frame": {"x":644,"y":1006,"w":34,"h":30}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":18,"y":22,"w":34,"h":30}, "sourceSize": {"w":68,"h":56} }, "shiny/machamp-gmax": { "frame": {"x":1700,"y":1,"w":46,"h":48}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":9,"y":7,"w":46,"h":48}, "sourceSize": {"w":68,"h":56} }, "shiny/machamp": { "frame": {"x":798,"y":271,"w":42,"h":38}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":12,"y":16,"w":42,"h":38}, "sourceSize": {"w":68,"h":56} }, "shiny/machoke": { "frame": {"x":1154,"y":1090,"w":28,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":30,"w":28,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/machop": { "frame": {"x":1724,"y":1037,"w":18,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":32,"w":18,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/magby": { "frame": {"x":1724,"y":1061,"w":18,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":32,"w":18,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/magcargo": { "frame": {"x":1472,"y":699,"w":23,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":30,"w":23,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/magearna-original": { "frame": {"x":434,"y":1053,"w":30,"h":41}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":13,"w":30,"h":41}, "sourceSize": {"w":68,"h":56} }, "shiny/magearna": { "frame": {"x":472,"y":1139,"w":30,"h":41}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":13,"w":30,"h":41}, "sourceSize": {"w":68,"h":56} }, "shiny/magikarp": { "frame": {"x":1257,"y":998,"w":24,"h":26}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":29,"w":24,"h":26}, "sourceSize": {"w":68,"h":56} }, "shiny/magmar": { "frame": {"x":1946,"y":56,"w":38,"h":38}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":16,"w":38,"h":38}, "sourceSize": {"w":68,"h":56} }, "shiny/magmortar": { "frame": {"x":1321,"y":191,"w":39,"h":33}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":16,"y":19,"w":39,"h":33}, "sourceSize": {"w":68,"h":56} }, "shiny/magnemite": { "frame": {"x":1414,"y":1205,"w":25,"h":17}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":22,"y":36,"w":25,"h":17}, "sourceSize": {"w":68,"h":56} }, "shiny/magneton": { "frame": {"x":137,"y":1242,"w":41,"h":36}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":15,"y":18,"w":41,"h":36}, "sourceSize": {"w":68,"h":56} }, "shiny/magnezone": { "frame": {"x":477,"y":924,"w":41,"h":34}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":13,"y":20,"w":41,"h":34}, "sourceSize": {"w":68,"h":56} }, "shiny/makuhita": { "frame": {"x":1744,"y":1099,"w":20,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":33,"w":20,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/malamar": { "frame": {"x":884,"y":944,"w":29,"h":35}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":19,"y":21,"w":29,"h":35}, "sourceSize": {"w":68,"h":56} }, "shiny/mamoswine": { "frame": {"x":765,"y":669,"w":37,"h":30}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":25,"w":37,"h":30}, "sourceSize": {"w":68,"h":56} }, "shiny/manaphy": { "frame": {"x":1497,"y":773,"w":24,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":32,"w":24,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/mandibuzz": { "frame": {"x":887,"y":491,"w":27,"h":36}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":22,"y":19,"w":27,"h":36}, "sourceSize": {"w":68,"h":56} }, "shiny/manectric-mega": { "frame": {"x":1158,"y":722,"w":28,"h":26}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":29,"w":28,"h":26}, "sourceSize": {"w":68,"h":56} }, "shiny/manectric": { "frame": {"x":893,"y":669,"w":31,"h":35}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":20,"w":31,"h":35}, "sourceSize": {"w":68,"h":56} }, "shiny/mankey": { "frame": {"x":994,"y":829,"w":30,"h":22}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":32,"w":30,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/mantine": { "frame": {"x":185,"y":625,"w":47,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":12,"y":31,"w":47,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/mantyke": { "frame": {"x":1766,"y":869,"w":22,"h":19}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":34,"w":22,"h":19}, "sourceSize": {"w":68,"h":56} }, "shiny/maractus": { "frame": {"x":618,"y":654,"w":34,"h":35}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":20,"w":34,"h":35}, "sourceSize": {"w":68,"h":56} }, "shiny/mareanie": { "frame": {"x":1523,"y":771,"w":24,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":31,"w":24,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/mareep": { "frame": {"x":1549,"y":771,"w":24,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":32,"w":24,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/marill": { "frame": {"x":1827,"y":594,"w":25,"h":19}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":35,"w":25,"h":19}, "sourceSize": {"w":68,"h":56} }, "shiny/marowak-alola": { "frame": {"x":270,"y":722,"w":37,"h":41}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":13,"y":11,"w":37,"h":41}, "sourceSize": {"w":68,"h":56} }, "shiny/marowak": { "frame": {"x":926,"y":706,"w":35,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":14,"y":20,"w":35,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/marshadow-gen7": { "frame": {"x":527,"y":1005,"w":29,"h":36}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":19,"w":29,"h":36}, "sourceSize": {"w":68,"h":56} }, "shiny/marshadow": { "frame": {"x":829,"y":669,"w":29,"h":36}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":19,"w":29,"h":36}, "sourceSize": {"w":68,"h":56} }, "shiny/marshtomp": { "frame": {"x":1496,"y":917,"w":22,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":31,"w":22,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/masquerain": { "frame": {"x":1150,"y":891,"w":28,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":29,"w":28,"h":25}, "sourceSize": {"w":68,"h":56} }, "shiny/mawile-mega": { "frame": {"x":892,"y":1224,"w":32,"h":28}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":27,"w":32,"h":28}, "sourceSize": {"w":68,"h":56} }, "shiny/mawile": { "frame": {"x":838,"y":795,"w":36,"h":29}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":15,"y":25,"w":36,"h":29}, "sourceSize": {"w":68,"h":56} }, "shiny/medicham-mega": { "frame": {"x":1526,"y":420,"w":31,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":26,"w":31,"h":29}, "sourceSize": {"w":68,"h":56} }, "shiny/medicham": { "frame": {"x":985,"y":488,"w":19,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":27,"w":19,"h":27}, "sourceSize": {"w":68,"h":56} }, "shiny/meditite": { "frame": {"x":1723,"y":869,"w":19,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":32,"w":19,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/meganium": { "frame": {"x":1019,"y":856,"w":25,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":25,"w":25,"h":29}, "sourceSize": {"w":68,"h":56} }, "shiny/melmetal-gmax": { "frame": {"x":1901,"y":1,"w":49,"h":44}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":9,"y":10,"w":49,"h":44}, "sourceSize": {"w":68,"h":56} }, "shiny/melmetal": { "frame": {"x":132,"y":306,"w":52,"h":31}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":7,"y":24,"w":52,"h":31}, "sourceSize": {"w":68,"h":56} }, "shiny/meloetta-pirouette": { "frame": {"x":1406,"y":1048,"w":17,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":29,"w":17,"h":25}, "sourceSize": {"w":68,"h":56} }, "shiny/meloetta": { "frame": {"x":1705,"y":990,"w":16,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":31,"w":16,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/meltan": { "frame": {"x":1966,"y":853,"w":19,"h":19}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":36,"w":19,"h":19}, "sourceSize": {"w":68,"h":56} }, "shiny/meowstic": { "frame": {"x":1490,"y":228,"w":30,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":24,"w":30,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/meowth-alola": { "frame": {"x":1471,"y":800,"w":23,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":31,"w":23,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/meowth-galar": { "frame": {"x":1471,"y":825,"w":23,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":31,"w":23,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/meowth-gmax": { "frame": {"x":1002,"y":85,"w":32,"h":47}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":17,"y":7,"w":32,"h":47}, "sourceSize": {"w":68,"h":56} }, "shiny/meowth": { "frame": {"x":1471,"y":850,"w":23,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":31,"w":23,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/mesprit": { "frame": {"x":476,"y":705,"w":38,"h":29}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":14,"y":23,"w":38,"h":29}, "sourceSize": {"w":68,"h":56} }, "shiny/metagross-mega": { "frame": {"x":628,"y":1085,"w":34,"h":26}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":16,"y":29,"w":34,"h":26}, "sourceSize": {"w":68,"h":56} }, "shiny/metagross": { "frame": {"x":621,"y":196,"w":48,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":11,"y":27,"w":48,"h":27}, "sourceSize": {"w":68,"h":56} }, "shiny/metang": { "frame": {"x":1035,"y":949,"w":29,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":32,"w":29,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/metapod": { "frame": {"x":1911,"y":1220,"w":14,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":27,"y":34,"w":14,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/mew": { "frame": {"x":1206,"y":1034,"w":25,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":26,"w":25,"h":27}, "sourceSize": {"w":68,"h":56} }, "shiny/mewtwo-mega-x": { "frame": {"x":1116,"y":1255,"w":23,"h":28}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":22,"y":26,"w":23,"h":28}, "sourceSize": {"w":68,"h":56} }, "shiny/mewtwo-mega-y": { "frame": {"x":1831,"y":310,"w":22,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":24,"w":22,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/mewtwo": { "frame": {"x":309,"y":702,"w":34,"h":44}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":11,"w":34,"h":44}, "sourceSize": {"w":68,"h":56} }, "shiny/mienfoo": { "frame": {"x":1744,"y":1122,"w":20,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":33,"w":20,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/mienshao": { "frame": {"x":772,"y":504,"w":39,"h":35}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":16,"y":18,"w":39,"h":35}, "sourceSize": {"w":68,"h":56} }, "shiny/mightyena": { "frame": {"x":1233,"y":1034,"w":27,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":31,"w":27,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/milcery": { "frame": {"x":1867,"y":1100,"w":18,"h":19}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":35,"w":18,"h":19}, "sourceSize": {"w":68,"h":56} }, "shiny/milotic": { "frame": {"x":155,"y":1055,"w":42,"h":35}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":16,"y":21,"w":42,"h":35}, "sourceSize": {"w":68,"h":56} }, "shiny/miltank": { "frame": {"x":1622,"y":121,"w":37,"h":35}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":18,"w":37,"h":35}, "sourceSize": {"w":68,"h":56} }, "shiny/mime-jr": { "frame": {"x":1705,"y":1015,"w":16,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":31,"w":16,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/mimikyu": { "frame": {"x":1898,"y":311,"w":25,"h":31}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":25,"w":25,"h":31}, "sourceSize": {"w":68,"h":56} }, "shiny/minccino": { "frame": {"x":1732,"y":614,"w":24,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":33,"w":24,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/minior-blue-gen7": { "frame": {"x":1865,"y":894,"w":19,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":32,"w":19,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/minior-blue": { "frame": {"x":1886,"y":894,"w":19,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":32,"w":19,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/minior-green-gen7": { "frame": {"x":1865,"y":894,"w":19,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":32,"w":19,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/minior-green": { "frame": {"x":1907,"y":872,"w":19,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":32,"w":19,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/minior-indigo-gen7": { "frame": {"x":1865,"y":894,"w":19,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":32,"w":19,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/minior-indigo": { "frame": {"x":1907,"y":894,"w":19,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":32,"w":19,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/minior-orange-gen7": { "frame": {"x":1865,"y":894,"w":19,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":32,"w":19,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/minior-orange": { "frame": {"x":1846,"y":916,"w":19,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":32,"w":19,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/minior-red-gen7": { "frame": {"x":1865,"y":894,"w":19,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":32,"w":19,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/minior-red": { "frame": {"x":1867,"y":916,"w":19,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":32,"w":19,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/minior-violet-gen7": { "frame": {"x":1865,"y":894,"w":19,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":32,"w":19,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/minior-violet": { "frame": {"x":1888,"y":916,"w":19,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":32,"w":19,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/minior-yellow-gen7": { "frame": {"x":1865,"y":894,"w":19,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":32,"w":19,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/minior-yellow": { "frame": {"x":1909,"y":916,"w":19,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":32,"w":19,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/minior": { "frame": {"x":1787,"y":1128,"w":19,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":32,"w":19,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/minun": { "frame": {"x":1808,"y":1090,"w":18,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":33,"w":18,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/misdreavus": { "frame": {"x":1808,"y":1113,"w":18,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":33,"w":18,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/mismagius": { "frame": {"x":996,"y":861,"w":21,"h":30}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":26,"w":21,"h":30}, "sourceSize": {"w":68,"h":56} }, "shiny/moltres-galar": { "frame": {"x":269,"y":433,"w":43,"h":44}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":12,"y":10,"w":43,"h":44}, "sourceSize": {"w":68,"h":56} }, "shiny/moltres": { "frame": {"x":1399,"y":1,"w":49,"h":45}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":14,"y":8,"w":49,"h":45}, "sourceSize": {"w":68,"h":56} }, "shiny/monferno": { "frame": {"x":1370,"y":652,"w":24,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":30,"w":24,"h":25}, "sourceSize": {"w":68,"h":56} }, "shiny/morelull": { "frame": {"x":1204,"y":1263,"w":15,"h":26}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":27,"y":28,"w":15,"h":26}, "sourceSize": {"w":68,"h":56} }, "shiny/morgrem": { "frame": {"x":1396,"y":624,"w":24,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":31,"w":24,"h":25}, "sourceSize": {"w":68,"h":56} }, "shiny/morpeko-hangry": { "frame": {"x":1665,"y":777,"w":19,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":31,"w":19,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/morpeko": { "frame": {"x":1661,"y":869,"w":19,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":31,"w":19,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/mothim": { "frame": {"x":1233,"y":1005,"w":27,"h":22}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":31,"w":27,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/mr-mime-galar": { "frame": {"x":779,"y":866,"w":35,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":23,"w":35,"h":33}, "sourceSize": {"w":68,"h":56} }, "shiny/mr-mime": { "frame": {"x":734,"y":349,"w":39,"h":36}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":14,"y":19,"w":39,"h":36}, "sourceSize": {"w":68,"h":56} }, "shiny/mr-rime": { "frame": {"x":507,"y":619,"w":35,"h":35}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":21,"w":35,"h":35}, "sourceSize": {"w":68,"h":56} }, "shiny/mudbray": { "frame": {"x":1345,"y":759,"w":23,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":29,"w":23,"h":25}, "sourceSize": {"w":68,"h":56} }, "shiny/mudkip": { "frame": {"x":1800,"y":724,"w":21,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":34,"w":21,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/mudsdale": { "frame": {"x":945,"y":907,"w":35,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":17,"y":23,"w":35,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/muk-alola": { "frame": {"x":1100,"y":834,"w":28,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":27,"w":28,"h":27}, "sourceSize": {"w":68,"h":56} }, "shiny/muk": { "frame": {"x":1060,"y":882,"w":28,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":27,"w":28,"h":27}, "sourceSize": {"w":68,"h":56} }, "shiny/munchlax": { "frame": {"x":1948,"y":854,"w":16,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":33,"w":16,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/munna": { "frame": {"x":1958,"y":1111,"w":17,"h":16}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":38,"w":17,"h":16}, "sourceSize": {"w":68,"h":56} }, "shiny/murkrow": { "frame": {"x":1594,"y":968,"w":21,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":31,"w":21,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/musharna": { "frame": {"x":1587,"y":293,"w":32,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":26,"w":32,"h":29}, "sourceSize": {"w":68,"h":56} }, "shiny/naganadel": { "frame": {"x":445,"y":474,"w":41,"h":43}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":17,"y":8,"w":41,"h":43}, "sourceSize": {"w":68,"h":56} }, "shiny/natu": { "frame": {"x":1930,"y":916,"w":19,"h":20}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":24,"y":34,"w":19,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/necrozma-dawn": { "frame": {"x":51,"y":701,"w":48,"h":45}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":10,"y":11,"w":48,"h":45}, "sourceSize": {"w":68,"h":56} }, "shiny/necrozma-dusk": { "frame": {"x":1,"y":550,"w":55,"h":48}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":9,"y":8,"w":55,"h":48}, "sourceSize": {"w":68,"h":56} }, "shiny/necrozma-ultra": { "frame": {"x":579,"y":800,"w":37,"h":30}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":16,"y":25,"w":37,"h":30}, "sourceSize": {"w":68,"h":56} }, "shiny/necrozma": { "frame": {"x":866,"y":82,"w":43,"h":38}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":12,"y":17,"w":43,"h":38}, "sourceSize": {"w":68,"h":56} }, "shiny/nickit": { "frame": {"x":1835,"y":569,"w":26,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":31,"w":26,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/nidoking": { "frame": {"x":176,"y":806,"w":44,"h":35}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":13,"y":19,"w":44,"h":35}, "sourceSize": {"w":68,"h":56} }, "shiny/nidoqueen": { "frame": {"x":961,"y":347,"w":37,"h":37}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":16,"w":37,"h":37}, "sourceSize": {"w":68,"h":56} }, "shiny/nidoran-f": { "frame": {"x":1744,"y":1145,"w":20,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":33,"w":20,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/nidoran-m": { "frame": {"x":1732,"y":748,"w":20,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":32,"w":20,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/nidorina": { "frame": {"x":1521,"y":992,"w":21,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":30,"w":21,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/nidorino": { "frame": {"x":1521,"y":1018,"w":21,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":30,"w":21,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/nihilego": { "frame": {"x":884,"y":1068,"w":31,"h":33}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":17,"w":31,"h":33}, "sourceSize": {"w":68,"h":56} }, "shiny/nincada": { "frame": {"x":1287,"y":1262,"w":25,"h":16}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":38,"w":25,"h":16}, "sourceSize": {"w":68,"h":56} }, "shiny/ninetales-alola": { "frame": {"x":1584,"y":232,"w":32,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":28,"w":32,"h":27}, "sourceSize": {"w":68,"h":56} }, "shiny/ninetales": { "frame": {"x":851,"y":311,"w":40,"h":35}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":20,"w":40,"h":35}, "sourceSize": {"w":68,"h":56} }, "shiny/ninjask": { "frame": {"x":675,"y":833,"w":36,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":17,"y":22,"w":36,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/noctowl": { "frame": {"x":886,"y":230,"w":25,"h":40}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":16,"w":25,"h":40}, "sourceSize": {"w":68,"h":56} }, "shiny/noibat": { "frame": {"x":1569,"y":890,"w":23,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":30,"w":23,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/noivern": { "frame": {"x":309,"y":738,"w":44,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":14,"y":23,"w":44,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/nosepass": { "frame": {"x":1829,"y":1197,"w":19,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":34,"w":19,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/numel": { "frame": {"x":1844,"y":723,"w":21,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":34,"w":21,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/nuzleaf": { "frame": {"x":1881,"y":595,"w":18,"h":25}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":25,"y":29,"w":18,"h":25}, "sourceSize": {"w":68,"h":56} }, "shiny/obstagoon": { "frame": {"x":919,"y":1068,"w":31,"h":33}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":17,"y":21,"w":31,"h":33}, "sourceSize": {"w":68,"h":56} }, "shiny/octillery": { "frame": {"x":985,"y":517,"w":29,"h":28}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":28,"w":29,"h":28}, "sourceSize": {"w":68,"h":56} }, "shiny/oddish": { "frame": {"x":1745,"y":1168,"w":19,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":33,"w":19,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/omanyte": { "frame": {"x":1807,"y":1194,"w":20,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":34,"w":20,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/omastar": { "frame": {"x":263,"y":1187,"w":41,"h":36}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":16,"y":17,"w":41,"h":36}, "sourceSize": {"w":68,"h":56} }, "shiny/onix": { "frame": {"x":45,"y":1197,"w":35,"h":43}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":10,"w":35,"h":43}, "sourceSize": {"w":68,"h":56} }, "shiny/oranguru": { "frame": {"x":1443,"y":49,"w":49,"h":30}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":9,"y":26,"w":49,"h":30}, "sourceSize": {"w":68,"h":56} }, "shiny/orbeetle-gmax": { "frame": {"x":1,"y":1209,"w":54,"h":42}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":11,"y":11,"w":54,"h":42}, "sourceSize": {"w":68,"h":56} }, "shiny/orbeetle": { "frame": {"x":877,"y":870,"w":31,"h":35}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":18,"w":31,"h":35}, "sourceSize": {"w":68,"h":56} }, "shiny/oricorio-pau": { "frame": {"x":1497,"y":1114,"w":20,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":27,"y":30,"w":20,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/oricorio-pom-pom": { "frame": {"x":1456,"y":1207,"w":22,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":31,"w":22,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/oricorio-sensu": { "frame": {"x":1378,"y":940,"w":19,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":29,"w":19,"h":25}, "sourceSize": {"w":68,"h":56} }, "shiny/oricorio": { "frame": {"x":1787,"y":812,"w":19,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":32,"w":19,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/oshawott": { "frame": {"x":1847,"y":1071,"w":18,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":27,"y":34,"w":18,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/pachirisu": { "frame": {"x":1370,"y":679,"w":24,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":29,"w":24,"h":25}, "sourceSize": {"w":68,"h":56} }, "shiny/palkia": { "frame": {"x":185,"y":576,"w":47,"h":40}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":10,"y":14,"w":47,"h":40}, "sourceSize": {"w":68,"h":56} }, "shiny/palossand": { "frame": {"x":754,"y":1102,"w":31,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":23,"w":31,"h":33}, "sourceSize": {"w":68,"h":56} }, "shiny/palpitoad": { "frame": {"x":1807,"y":1216,"w":20,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":34,"w":20,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/pancham": { "frame": {"x":1828,"y":1043,"w":17,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":33,"w":17,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/pangoro": { "frame": {"x":544,"y":726,"w":35,"h":34}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":22,"w":35,"h":34}, "sourceSize": {"w":68,"h":56} }, "shiny/panpour": { "frame": {"x":1445,"y":919,"w":23,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":31,"w":23,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/pansage": { "frame": {"x":1545,"y":818,"w":22,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":31,"w":22,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/pansear": { "frame": {"x":1548,"y":1129,"w":22,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":32,"w":22,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/paras": { "frame": {"x":1425,"y":969,"w":24,"h":22}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":22,"y":32,"w":24,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/parasect": { "frame": {"x":1364,"y":1179,"w":24,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":30,"w":24,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/passimian": { "frame": {"x":355,"y":742,"w":44,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":14,"y":24,"w":44,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/patrat": { "frame": {"x":1732,"y":791,"w":22,"h":20}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":34,"w":22,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/pawniard": { "frame": {"x":1789,"y":1237,"w":16,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":32,"w":16,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/pelipper": { "frame": {"x":845,"y":833,"w":36,"h":29}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":17,"y":27,"w":36,"h":29}, "sourceSize": {"w":68,"h":56} }, "shiny/perrserker": { "frame": {"x":658,"y":1112,"w":28,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":21,"w":28,"h":33}, "sourceSize": {"w":68,"h":56} }, "shiny/persian-alola": { "frame": {"x":1313,"y":1107,"w":26,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":30,"w":26,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/persian": { "frame": {"x":339,"y":1239,"w":39,"h":39}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":12,"y":16,"w":39,"h":39}, "sourceSize": {"w":68,"h":56} }, "shiny/petilil": { "frame": {"x":1924,"y":1114,"w":14,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":27,"y":34,"w":14,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/phanpy": { "frame": {"x":1780,"y":726,"w":22,"h":18}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":36,"w":22,"h":18}, "sourceSize": {"w":68,"h":56} }, "shiny/phantump": { "frame": {"x":1218,"y":545,"w":27,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":19,"y":31,"w":27,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/pheromosa": { "frame": {"x":309,"y":389,"w":45,"h":42}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":13,"y":10,"w":45,"h":42}, "sourceSize": {"w":68,"h":56} }, "shiny/phione": { "frame": {"x":1854,"y":594,"w":25,"h":19}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":35,"w":25,"h":19}, "sourceSize": {"w":68,"h":56} }, "shiny/pichu-spiky-eared": { "frame": {"x":1828,"y":1066,"w":17,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":33,"w":17,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/pichu": { "frame": {"x":1828,"y":1089,"w":17,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":33,"w":17,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/pidgeot-mega": { "frame": {"x":765,"y":729,"w":37,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":26,"w":37,"h":29}, "sourceSize": {"w":68,"h":56} }, "shiny/pidgeot": { "frame": {"x":1386,"y":118,"w":37,"h":36}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":19,"w":37,"h":36}, "sourceSize": {"w":68,"h":56} }, "shiny/pidgeotto": { "frame": {"x":1569,"y":914,"w":23,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":32,"w":23,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/pidgey": { "frame": {"x":1906,"y":851,"w":20,"h":19}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":35,"w":20,"h":19}, "sourceSize": {"w":68,"h":56} }, "shiny/pidove": { "frame": {"x":1946,"y":1049,"w":18,"h":18}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":36,"w":18,"h":18}, "sourceSize": {"w":68,"h":56} }, "shiny/pignite": { "frame": {"x":1364,"y":1205,"w":25,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":31,"w":25,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/pikachu-alola-cap": { "frame": {"x":1863,"y":569,"w":26,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":31,"w":26,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/pikachu-belle": { "frame": {"x":1180,"y":1059,"w":24,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":27,"w":24,"h":27}, "sourceSize": {"w":68,"h":56} }, "shiny/pikachu-cosplay": { "frame": {"x":1569,"y":938,"w":23,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":32,"w":23,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/pikachu-gmax": { "frame": {"x":93,"y":224,"w":37,"h":53}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":3,"w":37,"h":53}, "sourceSize": {"w":68,"h":56} }, "shiny/pikachu-hoenn-cap": { "frame": {"x":1322,"y":573,"w":26,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":31,"w":26,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/pikachu-kalos-cap": { "frame": {"x":1322,"y":601,"w":26,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":31,"w":26,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/pikachu-libre": { "frame": {"x":1569,"y":962,"w":23,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":32,"w":23,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/pikachu-original-cap": { "frame": {"x":1322,"y":629,"w":26,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":31,"w":26,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/pikachu-partner-cap": { "frame": {"x":1322,"y":657,"w":26,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":31,"w":26,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/pikachu-phd": { "frame": {"x":1569,"y":986,"w":23,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":32,"w":23,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/pikachu-pop-star": { "frame": {"x":1326,"y":913,"w":26,"h":22}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":32,"w":26,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/pikachu-rock-star": { "frame": {"x":1568,"y":1010,"w":23,"h":22}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":32,"w":23,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/pikachu-sinnoh-cap": { "frame": {"x":1332,"y":941,"w":26,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":31,"w":26,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/pikachu-starter": { "frame": {"x":987,"y":765,"w":30,"h":25}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":17,"y":31,"w":30,"h":25}, "sourceSize": {"w":68,"h":56} }, "shiny/pikachu-unova-cap": { "frame": {"x":1332,"y":969,"w":26,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":31,"w":26,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/pikachu-world-cap": { "frame": {"x":1332,"y":997,"w":26,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":31,"w":26,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/pikachu": { "frame": {"x":1568,"y":1035,"w":23,"h":22}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":32,"w":23,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/pikipek": { "frame": {"x":1640,"y":844,"w":19,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":30,"w":19,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/piloswine": { "frame": {"x":1499,"y":652,"w":24,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":31,"w":24,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/pincurchin": { "frame": {"x":1787,"y":950,"w":21,"h":19}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":35,"w":21,"h":19}, "sourceSize": {"w":68,"h":56} }, "shiny/pineco": { "frame": {"x":1787,"y":835,"w":19,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":33,"w":19,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/pinsir-mega": { "frame": {"x":758,"y":1165,"w":33,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":28,"w":33,"h":27}, "sourceSize": {"w":68,"h":56} }, "shiny/pinsir": { "frame": {"x":227,"y":575,"w":48,"h":37}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":7,"y":16,"w":48,"h":37}, "sourceSize": {"w":68,"h":56} }, "shiny/piplup": { "frame": {"x":1844,"y":1238,"w":15,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":27,"y":33,"w":15,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/plusle": { "frame": {"x":1808,"y":1136,"w":18,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":33,"w":18,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/poipole": { "frame": {"x":1207,"y":1088,"w":25,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":27,"w":25,"h":27}, "sourceSize": {"w":68,"h":56} }, "shiny/politoed": { "frame": {"x":906,"y":833,"w":26,"h":35}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":19,"w":26,"h":35}, "sourceSize": {"w":68,"h":56} }, "shiny/poliwag": { "frame": {"x":1754,"y":764,"w":22,"h":17}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":37,"w":22,"h":17}, "sourceSize": {"w":68,"h":56} }, "shiny/poliwhirl": { "frame": {"x":1729,"y":637,"w":24,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":33,"w":24,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/poliwrath": { "frame": {"x":354,"y":776,"w":43,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":12,"y":21,"w":43,"h":33}, "sourceSize": {"w":68,"h":56} }, "shiny/polteageist": { "frame": {"x":1525,"y":326,"w":30,"h":31}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":19,"y":23,"w":30,"h":31}, "sourceSize": {"w":68,"h":56} }, "shiny/ponyta-galar": { "frame": {"x":1336,"y":1025,"w":26,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":31,"w":26,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/ponyta": { "frame": {"x":1282,"y":969,"w":26,"h":25}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":29,"w":26,"h":25}, "sourceSize": {"w":68,"h":56} }, "shiny/poochyena": { "frame": {"x":1662,"y":1044,"w":23,"h":20}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":34,"w":23,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/popplio": { "frame": {"x":1723,"y":893,"w":19,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":32,"w":19,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/porygon-z": { "frame": {"x":1408,"y":339,"w":29,"h":38}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":12,"w":29,"h":38}, "sourceSize": {"w":68,"h":56} }, "shiny/porygon": { "frame": {"x":1867,"y":723,"w":21,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":34,"w":21,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/porygon2": { "frame": {"x":1890,"y":369,"w":29,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":21,"w":29,"h":29}, "sourceSize": {"w":68,"h":56} }, "shiny/primarina": { "frame": {"x":176,"y":843,"w":41,"h":38}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":12,"y":17,"w":41,"h":38}, "sourceSize": {"w":68,"h":56} }, "shiny/primeape": { "frame": {"x":985,"y":547,"w":30,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":29,"w":30,"h":25}, "sourceSize": {"w":68,"h":56} }, "shiny/prinplup": { "frame": {"x":1640,"y":870,"w":19,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":30,"w":19,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/probopass": { "frame": {"x":1283,"y":1025,"w":26,"h":25}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":29,"w":26,"h":25}, "sourceSize": {"w":68,"h":56} }, "shiny/psyduck": { "frame": {"x":1583,"y":1247,"w":20,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":31,"w":20,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/pumpkaboo-large": { "frame": {"x":1723,"y":917,"w":19,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":32,"w":19,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/pumpkaboo-small": { "frame": {"x":1888,"y":1180,"w":17,"h":19}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":33,"w":17,"h":19}, "sourceSize": {"w":68,"h":56} }, "shiny/pumpkaboo-super": { "frame": {"x":1520,"y":866,"w":22,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":31,"w":22,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/pumpkaboo": { "frame": {"x":1787,"y":858,"w":19,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":33,"w":19,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/pupitar": { "frame": {"x":1807,"y":1238,"w":18,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":33,"w":18,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/purrloin": { "frame": {"x":1447,"y":751,"w":23,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":30,"w":23,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/purugly": { "frame": {"x":1364,"y":1232,"w":25,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":31,"w":25,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/pyroar": { "frame": {"x":599,"y":1211,"w":34,"h":27}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":19,"y":27,"w":34,"h":27}, "sourceSize": {"w":68,"h":56} }, "shiny/pyukumuku": { "frame": {"x":1179,"y":918,"w":28,"h":22}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":34,"w":28,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/quagsire": { "frame": {"x":507,"y":691,"w":36,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":22,"w":36,"h":33}, "sourceSize": {"w":68,"h":56} }, "shiny/quilava": { "frame": {"x":1450,"y":574,"w":25,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":32,"w":25,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/quilladin": { "frame": {"x":1472,"y":725,"w":23,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":30,"w":23,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/qwilfish": { "frame": {"x":1871,"y":192,"w":31,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":32,"w":31,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/raboot": { "frame": {"x":1805,"y":356,"w":24,"h":31}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":24,"w":24,"h":31}, "sourceSize": {"w":68,"h":56} }, "shiny/raichu-alola": { "frame": {"x":1862,"y":337,"w":28,"h":30}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":25,"w":28,"h":30}, "sourceSize": {"w":68,"h":56} }, "shiny/raichu": { "frame": {"x":224,"y":804,"w":41,"h":37}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":18,"w":41,"h":37}, "sourceSize": {"w":68,"h":56} }, "shiny/raikou": { "frame": {"x":135,"y":767,"w":43,"h":37}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":16,"w":43,"h":37}, "sourceSize": {"w":68,"h":56} }, "shiny/ralts": { "frame": {"x":1924,"y":1158,"w":16,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":34,"w":16,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/rampardos": { "frame": {"x":1235,"y":1175,"w":27,"h":25}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":29,"w":27,"h":25}, "sourceSize": {"w":68,"h":56} }, "shiny/rapidash-galar": { "frame": {"x":1228,"y":299,"w":38,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":22,"w":38,"h":33}, "sourceSize": {"w":68,"h":56} }, "shiny/rapidash": { "frame": {"x":809,"y":348,"w":39,"h":36}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":18,"w":39,"h":36}, "sourceSize": {"w":68,"h":56} }, "shiny/raticate-alola": { "frame": {"x":1222,"y":574,"w":27,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":30,"w":27,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/raticate": { "frame": {"x":1224,"y":632,"w":27,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":31,"w":27,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/rattata-alola": { "frame": {"x":1425,"y":944,"w":23,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":29,"w":23,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/rattata": { "frame": {"x":1569,"y":818,"w":22,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":31,"w":22,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/rayquaza-mega": { "frame": {"x":1239,"y":121,"w":40,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":14,"y":27,"w":40,"h":27}, "sourceSize": {"w":68,"h":56} }, "shiny/rayquaza": { "frame": {"x":423,"y":1,"w":47,"h":51}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":13,"y":2,"w":47,"h":51}, "sourceSize": {"w":68,"h":56} }, "shiny/regice": { "frame": {"x":120,"y":1144,"w":43,"h":34}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":15,"y":20,"w":43,"h":34}, "sourceSize": {"w":68,"h":56} }, "shiny/regidrago": { "frame": {"x":711,"y":228,"w":42,"h":39}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":15,"y":17,"w":42,"h":39}, "sourceSize": {"w":68,"h":56} }, "shiny/regieleki": { "frame": {"x":57,"y":280,"w":56,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":7,"y":22,"w":56,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/regigigas": { "frame": {"x":176,"y":168,"w":53,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":8,"y":21,"w":53,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/regirock": { "frame": {"x":1544,"y":155,"w":38,"h":34}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":20,"w":38,"h":34}, "sourceSize": {"w":68,"h":56} }, "shiny/registeel": { "frame": {"x":547,"y":516,"w":38,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":13,"y":21,"w":38,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/relicanth": { "frame": {"x":1618,"y":232,"w":32,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":27,"w":32,"h":27}, "sourceSize": {"w":68,"h":56} }, "shiny/remoraid": { "frame": {"x":1906,"y":1030,"w":19,"h":18}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":24,"y":36,"w":19,"h":18}, "sourceSize": {"w":68,"h":56} }, "shiny/reshiram": { "frame": {"x":1,"y":1097,"w":54,"h":43}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":10,"y":13,"w":54,"h":43}, "sourceSize": {"w":68,"h":56} }, "shiny/reuniclus": { "frame": {"x":1594,"y":50,"w":48,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":13,"y":24,"w":48,"h":29}, "sourceSize": {"w":68,"h":56} }, "shiny/rhydon": { "frame": {"x":357,"y":432,"w":46,"h":40}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":13,"y":15,"w":46,"h":40}, "sourceSize": {"w":68,"h":56} }, "shiny/rhyhorn": { "frame": {"x":1339,"y":1053,"w":26,"h":22}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":32,"w":26,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/rhyperior": { "frame": {"x":920,"y":47,"w":48,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":14,"y":22,"w":48,"h":33}, "sourceSize": {"w":68,"h":56} }, "shiny/ribombee": { "frame": {"x":1458,"y":262,"w":32,"h":30}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":25,"w":32,"h":30}, "sourceSize": {"w":68,"h":56} }, "shiny/rillaboom-gmax": { "frame": {"x":1,"y":117,"w":64,"h":52}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":2,"y":4,"w":64,"h":52}, "sourceSize": {"w":68,"h":56} }, "shiny/rillaboom": { "frame": {"x":1108,"y":223,"w":38,"h":35}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":15,"y":20,"w":38,"h":35}, "sourceSize": {"w":68,"h":56} }, "shiny/riolu": { "frame": {"x":1840,"y":808,"w":20,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":34,"w":20,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/rockruff": { "frame": {"x":1521,"y":1044,"w":21,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":30,"w":21,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/roggenrola": { "frame": {"x":1960,"y":599,"w":13,"h":19}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":28,"y":35,"w":13,"h":19}, "sourceSize": {"w":68,"h":56} }, "shiny/rolycoly": { "frame": {"x":1766,"y":893,"w":22,"h":19}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":36,"w":22,"h":19}, "sourceSize": {"w":68,"h":56} }, "shiny/rookidee": { "frame": {"x":1828,"y":1135,"w":21,"h":18}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":24,"y":38,"w":21,"h":18}, "sourceSize": {"w":68,"h":56} }, "shiny/roselia": { "frame": {"x":1222,"y":603,"w":27,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":30,"w":27,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/roserade": { "frame": {"x":1555,"y":260,"w":27,"h":31}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":25,"w":27,"h":31}, "sourceSize": {"w":68,"h":56} }, "shiny/rotom-fan": { "frame": {"x":1425,"y":156,"w":39,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":14,"y":23,"w":39,"h":33}, "sourceSize": {"w":68,"h":56} }, "shiny/rotom-frost": { "frame": {"x":490,"y":967,"w":41,"h":34}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":13,"y":22,"w":41,"h":34}, "sourceSize": {"w":68,"h":56} }, "shiny/rotom-heat": { "frame": {"x":727,"y":728,"w":36,"h":31}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":25,"w":36,"h":31}, "sourceSize": {"w":68,"h":56} }, "shiny/rotom-mow": { "frame": {"x":749,"y":1033,"w":32,"h":33}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":18,"y":23,"w":32,"h":33}, "sourceSize": {"w":68,"h":56} }, "shiny/rotom-wash": { "frame": {"x":1229,"y":334,"w":38,"h":33}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":15,"y":23,"w":38,"h":33}, "sourceSize": {"w":68,"h":56} }, "shiny/rotom": { "frame": {"x":1894,"y":338,"w":30,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":27,"w":30,"h":29}, "sourceSize": {"w":68,"h":56} }, "shiny/rowlet": { "frame": {"x":1847,"y":938,"w":19,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":32,"w":19,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/rufflet": { "frame": {"x":1661,"y":894,"w":19,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":31,"w":19,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/runerigus": { "frame": {"x":406,"y":1103,"w":42,"h":31}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":13,"y":23,"w":42,"h":31}, "sourceSize": {"w":68,"h":56} }, "shiny/sableye-mega": { "frame": {"x":1832,"y":389,"w":30,"h":29}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":25,"w":30,"h":29}, "sourceSize": {"w":68,"h":56} }, "shiny/sableye": { "frame": {"x":745,"y":999,"w":33,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":14,"y":23,"w":33,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/salamence-mega": { "frame": {"x":695,"y":637,"w":37,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":15,"y":27,"w":37,"h":27}, "sourceSize": {"w":68,"h":56} }, "shiny/salamence": { "frame": {"x":343,"y":811,"w":42,"h":30}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":13,"y":22,"w":42,"h":30}, "sourceSize": {"w":68,"h":56} }, "shiny/salandit": { "frame": {"x":1890,"y":723,"w":21,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":33,"w":21,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/salazzle": { "frame": {"x":822,"y":1166,"w":29,"h":33}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":23,"w":29,"h":33}, "sourceSize": {"w":68,"h":56} }, "shiny/samurott": { "frame": {"x":789,"y":1197,"w":33,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":29,"w":33,"h":25}, "sourceSize": {"w":68,"h":56} }, "shiny/sandaconda-gmax": { "frame": {"x":309,"y":260,"w":46,"h":44}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":11,"y":10,"w":46,"h":44}, "sourceSize": {"w":68,"h":56} }, "shiny/sandaconda": { "frame": {"x":816,"y":834,"w":37,"h":27}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":16,"y":27,"w":37,"h":27}, "sourceSize": {"w":68,"h":56} }, "shiny/sandile": { "frame": {"x":1642,"y":1096,"w":24,"h":18}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":37,"w":24,"h":18}, "sourceSize": {"w":68,"h":56} }, "shiny/sandshrew-alola": { "frame": {"x":1662,"y":1069,"w":23,"h":20}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":34,"w":23,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/sandshrew": { "frame": {"x":1754,"y":783,"w":22,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":34,"w":22,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/sandslash-alola": { "frame": {"x":1213,"y":719,"w":27,"h":26}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":28,"w":27,"h":26}, "sourceSize": {"w":68,"h":56} }, "shiny/sandslash": { "frame": {"x":888,"y":1133,"w":31,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":19,"y":22,"w":31,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/sandygast": { "frame": {"x":1370,"y":760,"w":25,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":30,"w":25,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/sawk": { "frame": {"x":709,"y":865,"w":34,"h":34}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":21,"w":34,"h":34}, "sourceSize": {"w":68,"h":56} }, "shiny/sawsbuck-autumn": { "frame": {"x":1213,"y":748,"w":27,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":27,"w":27,"h":27}, "sourceSize": {"w":68,"h":56} }, "shiny/sawsbuck-summer": { "frame": {"x":1292,"y":857,"w":25,"h":26}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":28,"w":25,"h":26}, "sourceSize": {"w":68,"h":56} }, "shiny/sawsbuck-winter": { "frame": {"x":1292,"y":885,"w":25,"h":26}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":28,"w":25,"h":26}, "sourceSize": {"w":68,"h":56} }, "shiny/sawsbuck": { "frame": {"x":1274,"y":913,"w":25,"h":26}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":28,"w":25,"h":26}, "sourceSize": {"w":68,"h":56} }, "shiny/scatterbug": { "frame": {"x":1706,"y":1062,"w":16,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":31,"w":16,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/sceptile-mega": { "frame": {"x":1105,"y":385,"w":39,"h":29}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":16,"y":25,"w":39,"h":29}, "sourceSize": {"w":68,"h":56} }, "shiny/sceptile": { "frame": {"x":850,"y":348,"w":39,"h":36}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":15,"y":16,"w":39,"h":36}, "sourceSize": {"w":68,"h":56} }, "shiny/scizor-mega": { "frame": {"x":1591,"y":418,"w":30,"h":30}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":25,"w":30,"h":30}, "sourceSize": {"w":68,"h":56} }, "shiny/scizor": { "frame": {"x":442,"y":707,"w":32,"h":37}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":18,"w":32,"h":37}, "sourceSize": {"w":68,"h":56} }, "shiny/scolipede": { "frame": {"x":1069,"y":185,"w":37,"h":37}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":15,"y":17,"w":37,"h":37}, "sourceSize": {"w":68,"h":56} }, "shiny/scorbunny": { "frame": {"x":881,"y":647,"w":20,"h":30}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":24,"y":25,"w":20,"h":30}, "sourceSize": {"w":68,"h":56} }, "shiny/scrafty": { "frame": {"x":887,"y":520,"w":30,"h":36}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":22,"y":19,"w":30,"h":36}, "sourceSize": {"w":68,"h":56} }, "shiny/scraggy": { "frame": {"x":1943,"y":1260,"w":17,"h":18}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":36,"w":17,"h":18}, "sourceSize": {"w":68,"h":56} }, "shiny/scyther": { "frame": {"x":135,"y":806,"w":39,"h":41}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":13,"y":14,"w":39,"h":41}, "sourceSize": {"w":68,"h":56} }, "shiny/seadra": { "frame": {"x":1339,"y":1081,"w":26,"h":22}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":22,"y":32,"w":26,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/seaking": { "frame": {"x":494,"y":1010,"w":41,"h":31}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":13,"y":22,"w":41,"h":31}, "sourceSize": {"w":68,"h":56} }, "shiny/sealeo": { "frame": {"x":913,"y":647,"w":28,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":34,"w":28,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/seedot": { "frame": {"x":1974,"y":1024,"w":17,"h":19}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":35,"w":17,"h":19}, "sourceSize": {"w":68,"h":56} }, "shiny/seel": { "frame": {"x":1269,"y":519,"w":27,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":29,"w":27,"h":25}, "sourceSize": {"w":68,"h":56} }, "shiny/seismitoad": { "frame": {"x":1197,"y":118,"w":40,"h":30}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":14,"y":25,"w":40,"h":30}, "sourceSize": {"w":68,"h":56} }, "shiny/sentret": { "frame": {"x":590,"y":967,"w":17,"h":28}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":28,"w":17,"h":28}, "sourceSize": {"w":68,"h":56} }, "shiny/serperior": { "frame": {"x":1009,"y":669,"w":30,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":19,"y":30,"w":30,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/servine": { "frame": {"x":1425,"y":995,"w":24,"h":22}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":22,"y":32,"w":24,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/seviper": { "frame": {"x":1477,"y":574,"w":25,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":32,"w":25,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/sewaddle": { "frame": {"x":1906,"y":1072,"w":17,"h":19}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":35,"w":17,"h":19}, "sourceSize": {"w":68,"h":56} }, "shiny/sharpedo-mega": { "frame": {"x":1134,"y":486,"w":27,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":26,"w":27,"h":29}, "sourceSize": {"w":68,"h":56} }, "shiny/sharpedo": { "frame": {"x":380,"y":1239,"w":38,"h":39}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":12,"w":38,"h":39}, "sourceSize": {"w":68,"h":56} }, "shiny/shaymin-sky": { "frame": {"x":1472,"y":751,"w":23,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":30,"w":23,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/shaymin": { "frame": {"x":1867,"y":993,"w":20,"h":18}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":25,"y":36,"w":20,"h":18}, "sourceSize": {"w":68,"h":56} }, "shiny/shedinja": { "frame": {"x":1623,"y":418,"w":30,"h":30}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":24,"w":30,"h":30}, "sourceSize": {"w":68,"h":56} }, "shiny/shelgon": { "frame": {"x":1520,"y":891,"w":22,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":31,"w":22,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/shellder": { "frame": {"x":1913,"y":723,"w":21,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":34,"w":21,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/shellos-east": { "frame": {"x":1666,"y":703,"w":21,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":32,"w":21,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/shellos": { "frame": {"x":1723,"y":941,"w":19,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":32,"w":19,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/shelmet": { "frame": {"x":1888,"y":974,"w":20,"h":17}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":37,"w":20,"h":17}, "sourceSize": {"w":68,"h":56} }, "shiny/shieldon": { "frame": {"x":1471,"y":1231,"w":22,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":32,"w":22,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/shiftry": { "frame": {"x":1020,"y":49,"w":48,"h":34}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":12,"y":22,"w":48,"h":34}, "sourceSize": {"w":68,"h":56} }, "shiny/shiinotic": { "frame": {"x":1584,"y":261,"w":31,"h":30}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":26,"w":31,"h":30}, "sourceSize": {"w":68,"h":56} }, "shiny/shinx": { "frame": {"x":1339,"y":1109,"w":26,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":22,"y":31,"w":26,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/shroomish": { "frame": {"x":1908,"y":993,"w":20,"h":17}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":37,"w":20,"h":17}, "sourceSize": {"w":68,"h":56} }, "shiny/shuckle": { "frame": {"x":1621,"y":293,"w":32,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":27,"w":32,"h":29}, "sourceSize": {"w":68,"h":56} }, "shiny/shuppet": { "frame": {"x":1948,"y":877,"w":17,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":32,"w":17,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/sigilyph": { "frame": {"x":735,"y":464,"w":35,"h":39}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":16,"w":35,"h":39}, "sourceSize": {"w":68,"h":56} }, "shiny/silcoon": { "frame": {"x":1662,"y":1094,"w":23,"h":20}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":22,"y":34,"w":23,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/silicobra": { "frame": {"x":1745,"y":1191,"w":20,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":33,"w":20,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/silvally-bug": { "frame": {"x":262,"y":1014,"w":33,"h":43}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":13,"w":33,"h":43}, "sourceSize": {"w":68,"h":56} }, "shiny/silvally-dark": { "frame": {"x":263,"y":1059,"w":33,"h":43}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":13,"w":33,"h":43}, "sourceSize": {"w":68,"h":56} }, "shiny/silvally-dragon": { "frame": {"x":298,"y":1059,"w":33,"h":43}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":13,"w":33,"h":43}, "sourceSize": {"w":68,"h":56} }, "shiny/silvally-electric": { "frame": {"x":301,"y":1104,"w":33,"h":43}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":13,"w":33,"h":43}, "sourceSize": {"w":68,"h":56} }, "shiny/silvally-fairy": { "frame": {"x":301,"y":1149,"w":33,"h":43}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":13,"w":33,"h":43}, "sourceSize": {"w":68,"h":56} }, "shiny/silvally-fighting": { "frame": {"x":329,"y":1014,"w":33,"h":43}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":13,"w":33,"h":43}, "sourceSize": {"w":68,"h":56} }, "shiny/silvally-fire": { "frame": {"x":333,"y":1059,"w":33,"h":43}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":13,"w":33,"h":43}, "sourceSize": {"w":68,"h":56} }, "shiny/silvally-flying": { "frame": {"x":336,"y":1104,"w":33,"h":43}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":13,"w":33,"h":43}, "sourceSize": {"w":68,"h":56} }, "shiny/silvally-ghost": { "frame": {"x":336,"y":1149,"w":33,"h":43}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":13,"w":33,"h":43}, "sourceSize": {"w":68,"h":56} }, "shiny/silvally-grass": { "frame": {"x":339,"y":1194,"w":33,"h":43}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":13,"w":33,"h":43}, "sourceSize": {"w":68,"h":56} }, "shiny/silvally-ground": { "frame": {"x":351,"y":969,"w":33,"h":43}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":13,"w":33,"h":43}, "sourceSize": {"w":68,"h":56} }, "shiny/silvally-ice": { "frame": {"x":364,"y":1014,"w":33,"h":43}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":13,"w":33,"h":43}, "sourceSize": {"w":68,"h":56} }, "shiny/silvally-poison": { "frame": {"x":368,"y":1059,"w":33,"h":43}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":13,"w":33,"h":43}, "sourceSize": {"w":68,"h":56} }, "shiny/silvally-psychic": { "frame": {"x":371,"y":1104,"w":33,"h":43}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":13,"w":33,"h":43}, "sourceSize": {"w":68,"h":56} }, "shiny/silvally-rock": { "frame": {"x":371,"y":1149,"w":33,"h":43}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":13,"w":33,"h":43}, "sourceSize": {"w":68,"h":56} }, "shiny/silvally-steel": { "frame": {"x":374,"y":1194,"w":33,"h":43}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":13,"w":33,"h":43}, "sourceSize": {"w":68,"h":56} }, "shiny/silvally-water": { "frame": {"x":387,"y":817,"w":33,"h":43}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":17,"y":13,"w":33,"h":43}, "sourceSize": {"w":68,"h":56} }, "shiny/silvally": { "frame": {"x":386,"y":969,"w":33,"h":43}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":13,"w":33,"h":43}, "sourceSize": {"w":68,"h":56} }, "shiny/simipour": { "frame": {"x":1339,"y":1137,"w":26,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":31,"w":26,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/simisage": { "frame": {"x":1213,"y":777,"w":27,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":27,"w":27,"h":27}, "sourceSize": {"w":68,"h":56} }, "shiny/simisear": { "frame": {"x":1154,"y":1120,"w":28,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":30,"w":28,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/sinistea": { "frame": {"x":1890,"y":1220,"w":19,"h":16}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":38,"w":19,"h":16}, "sourceSize": {"w":68,"h":56} }, "shiny/sirfetchd": { "frame": {"x":55,"y":392,"w":39,"h":53}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":14,"y":3,"w":39,"h":53}, "sourceSize": {"w":68,"h":56} }, "shiny/sizzlipede": { "frame": {"x":1628,"y":1266,"w":23,"h":12}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":42,"w":23,"h":12}, "sourceSize": {"w":68,"h":56} }, "shiny/skarmory": { "frame": {"x":176,"y":883,"w":39,"h":40}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":14,"w":39,"h":40}, "sourceSize": {"w":68,"h":56} }, "shiny/skiddo": { "frame": {"x":1930,"y":937,"w":19,"h":20}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":24,"y":34,"w":19,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/skiploom": { "frame": {"x":1787,"y":973,"w":21,"h":19}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":35,"w":21,"h":19}, "sourceSize": {"w":68,"h":56} }, "shiny/skitty": { "frame": {"x":1495,"y":1231,"w":22,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":32,"w":22,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/skorupi": { "frame": {"x":1287,"y":1163,"w":26,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":30,"w":26,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/skrelp": { "frame": {"x":1640,"y":996,"w":20,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":31,"w":20,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/skuntank": { "frame": {"x":1038,"y":489,"w":30,"h":26}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":30,"w":30,"h":26}, "sourceSize": {"w":68,"h":56} }, "shiny/skwovet": { "frame": {"x":1497,"y":699,"w":24,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":31,"w":24,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/slaking": { "frame": {"x":1964,"y":314,"w":30,"h":27}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":19,"y":28,"w":30,"h":27}, "sourceSize": {"w":68,"h":56} }, "shiny/slakoth": { "frame": {"x":1233,"y":661,"w":27,"h":17}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":37,"w":27,"h":17}, "sourceSize": {"w":68,"h":56} }, "shiny/sliggoo": { "frame": {"x":1597,"y":1152,"w":17,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":26,"y":30,"w":17,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/slowbro-galar": { "frame": {"x":640,"y":797,"w":33,"h":35}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":19,"w":33,"h":35}, "sourceSize": {"w":68,"h":56} }, "shiny/slowbro-mega": { "frame": {"x":1060,"y":911,"w":27,"h":28}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":26,"w":27,"h":28}, "sourceSize": {"w":68,"h":56} }, "shiny/slowbro": { "frame": {"x":156,"y":1099,"w":43,"h":35}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":18,"w":43,"h":35}, "sourceSize": {"w":68,"h":56} }, "shiny/slowking-galar": { "frame": {"x":221,"y":925,"w":31,"h":42}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":12,"w":31,"h":42}, "sourceSize": {"w":68,"h":56} }, "shiny/slowking": { "frame": {"x":319,"y":925,"w":29,"h":42}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":10,"w":29,"h":42}, "sourceSize": {"w":68,"h":56} }, "shiny/slowpoke-galar": { "frame": {"x":1070,"y":834,"w":28,"h":16}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":40,"w":28,"h":16}, "sourceSize": {"w":68,"h":56} }, "shiny/slowpoke": { "frame": {"x":1450,"y":944,"w":23,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":31,"w":23,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/slugma": { "frame": {"x":1661,"y":919,"w":19,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":31,"w":19,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/slurpuff": { "frame": {"x":922,"y":1133,"w":31,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":19,"y":22,"w":31,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/smeargle": { "frame": {"x":1339,"y":1165,"w":26,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":19,"y":31,"w":26,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/smoochum": { "frame": {"x":1802,"y":746,"w":16,"h":22}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":26,"y":32,"w":16,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/sneasel": { "frame": {"x":1662,"y":994,"w":19,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":31,"w":19,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/snivy": { "frame": {"x":1766,"y":917,"w":22,"h":19}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":35,"w":22,"h":19}, "sourceSize": {"w":68,"h":56} }, "shiny/snom": { "frame": {"x":1941,"y":1135,"w":19,"h":16}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":24,"y":38,"w":19,"h":16}, "sourceSize": {"w":68,"h":56} }, "shiny/snorlax-gmax": { "frame": {"x":1,"y":332,"w":54,"h":51}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":7,"y":5,"w":54,"h":51}, "sourceSize": {"w":68,"h":56} }, "shiny/snorlax": { "frame": {"x":583,"y":392,"w":40,"h":42}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":13,"y":14,"w":40,"h":42}, "sourceSize": {"w":68,"h":56} }, "shiny/snorunt": { "frame": {"x":1859,"y":1261,"w":17,"h":21}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":26,"y":33,"w":17,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/snover": { "frame": {"x":1568,"y":1060,"w":23,"h":22}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":22,"y":32,"w":23,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/snubbull": { "frame": {"x":1594,"y":842,"w":23,"h":22}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":22,"y":32,"w":23,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/sobble": { "frame": {"x":1183,"y":1146,"w":24,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":28,"w":24,"h":27}, "sourceSize": {"w":68,"h":56} }, "shiny/solgaleo": { "frame": {"x":414,"y":90,"w":50,"h":41}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":9,"y":14,"w":50,"h":41}, "sourceSize": {"w":68,"h":56} }, "shiny/solosis": { "frame": {"x":1960,"y":1149,"w":17,"h":16}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":26,"y":38,"w":17,"h":16}, "sourceSize": {"w":68,"h":56} }, "shiny/solrock": { "frame": {"x":784,"y":1033,"w":32,"h":33}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":18,"y":23,"w":32,"h":33}, "sourceSize": {"w":68,"h":56} }, "shiny/spearow": { "frame": {"x":1928,"y":873,"w":21,"h":18}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":24,"y":36,"w":21,"h":18}, "sourceSize": {"w":68,"h":56} }, "shiny/spectrier": { "frame": {"x":1394,"y":191,"w":37,"h":36}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":19,"w":37,"h":36}, "sourceSize": {"w":68,"h":56} }, "shiny/spewpa": { "frame": {"x":1867,"y":1121,"w":18,"h":19}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":35,"w":18,"h":19}, "sourceSize": {"w":68,"h":56} }, "shiny/spheal": { "frame": {"x":1847,"y":960,"w":21,"h":18}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":24,"y":36,"w":21,"h":18}, "sourceSize": {"w":68,"h":56} }, "shiny/spinarak": { "frame": {"x":1930,"y":995,"w":20,"h":16}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":38,"w":20,"h":16}, "sourceSize": {"w":68,"h":56} }, "shiny/spinda-blank": { "frame": {"x":1867,"y":660,"w":17,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":26,"y":31,"w":17,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/spinda-filled": { "frame": {"x":1706,"y":1112,"w":17,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":31,"w":17,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/spinda": { "frame": {"x":1706,"y":1137,"w":17,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":31,"w":17,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/spiritomb": { "frame": {"x":1471,"y":462,"w":31,"h":29}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":25,"w":31,"h":29}, "sourceSize": {"w":68,"h":56} }, "shiny/spoink": { "frame": {"x":1808,"y":812,"w":16,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":32,"w":16,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/spritzee": { "frame": {"x":1942,"y":1176,"w":17,"h":18}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":36,"w":17,"h":18}, "sourceSize": {"w":68,"h":56} }, "shiny/squirtle": { "frame": {"x":1682,"y":869,"w":23,"h":19}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":35,"w":23,"h":19}, "sourceSize": {"w":68,"h":56} }, "shiny/stakataka": { "frame": {"x":737,"y":87,"w":42,"h":40}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":15,"y":14,"w":42,"h":40}, "sourceSize": {"w":68,"h":56} }, "shiny/stantler": { "frame": {"x":1181,"y":662,"w":23,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":27,"w":23,"h":27}, "sourceSize": {"w":68,"h":56} }, "shiny/staraptor": { "frame": {"x":1188,"y":516,"w":25,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":28,"w":25,"h":27}, "sourceSize": {"w":68,"h":56} }, "shiny/staravia": { "frame": {"x":1396,"y":651,"w":24,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":30,"w":24,"h":25}, "sourceSize": {"w":68,"h":56} }, "shiny/starly": { "frame": {"x":1936,"y":707,"w":21,"h":20}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":24,"y":34,"w":21,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/starmie": { "frame": {"x":686,"y":1069,"w":32,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":19,"w":32,"h":33}, "sourceSize": {"w":68,"h":56} }, "shiny/staryu": { "frame": {"x":1867,"y":972,"w":19,"h":19}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":35,"w":19,"h":19}, "sourceSize": {"w":68,"h":56} }, "shiny/steelix-mega": { "frame": {"x":494,"y":1053,"w":41,"h":31}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":14,"y":25,"w":41,"h":31}, "sourceSize": {"w":68,"h":56} }, "shiny/steelix": { "frame": {"x":411,"y":176,"w":49,"h":41}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":9,"y":14,"w":49,"h":41}, "sourceSize": {"w":68,"h":56} }, "shiny/steenee": { "frame": {"x":1399,"y":891,"w":20,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":28,"w":20,"h":25}, "sourceSize": {"w":68,"h":56} }, "shiny/stonjourner": { "frame": {"x":1696,"y":193,"w":36,"h":36}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":18,"w":36,"h":36}, "sourceSize": {"w":68,"h":56} }, "shiny/stoutland": { "frame": {"x":581,"y":1247,"w":34,"h":31}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":22,"w":34,"h":31}, "sourceSize": {"w":68,"h":56} }, "shiny/stufful": { "frame": {"x":1787,"y":881,"w":19,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":31,"w":19,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/stunfisk-galar": { "frame": {"x":754,"y":1254,"w":33,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":32,"w":33,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/stunfisk": { "frame": {"x":1803,"y":191,"w":32,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":31,"w":32,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/stunky": { "frame": {"x":1188,"y":1204,"w":28,"h":21}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":33,"w":28,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/sudowoodo": { "frame": {"x":675,"y":871,"w":32,"h":35}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":21,"w":32,"h":35}, "sourceSize": {"w":68,"h":56} }, "shiny/suicune": { "frame": {"x":450,"y":432,"w":44,"h":40}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":10,"y":13,"w":44,"h":40}, "sourceSize": {"w":68,"h":56} }, "shiny/sunflora": { "frame": {"x":1617,"y":867,"w":21,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":31,"w":21,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/sunkern": { "frame": {"x":1925,"y":1072,"w":15,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":34,"w":15,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/surskit": { "frame": {"x":1666,"y":586,"w":25,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":33,"w":25,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/swablu": { "frame": {"x":1868,"y":938,"w":21,"h":18}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":35,"w":21,"h":18}, "sourceSize": {"w":68,"h":56} }, "shiny/swadloon": { "frame": {"x":1797,"y":764,"w":22,"h":18}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":36,"w":22,"h":18}, "sourceSize": {"w":68,"h":56} }, "shiny/swalot": { "frame": {"x":1744,"y":845,"w":22,"h":20}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":34,"w":22,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/swampert-mega": { "frame": {"x":628,"y":1175,"w":34,"h":25}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":17,"y":28,"w":34,"h":25}, "sourceSize": {"w":68,"h":56} }, "shiny/swampert": { "frame": {"x":735,"y":387,"w":39,"h":36}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":14,"y":20,"w":39,"h":36}, "sourceSize": {"w":68,"h":56} }, "shiny/swanna": { "frame": {"x":1837,"y":192,"w":32,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":30,"w":32,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/swellow": { "frame": {"x":1774,"y":592,"w":25,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":33,"w":25,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/swinub": { "frame": {"x":1930,"y":1013,"w":20,"h":15}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":39,"w":20,"h":15}, "sourceSize": {"w":68,"h":56} }, "shiny/swirlix": { "frame": {"x":1906,"y":1051,"w":19,"h":18}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":24,"y":36,"w":19,"h":18}, "sourceSize": {"w":68,"h":56} }, "shiny/swoobat": { "frame": {"x":477,"y":745,"w":38,"h":29}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":18,"y":23,"w":38,"h":29}, "sourceSize": {"w":68,"h":56} }, "shiny/sylveon": { "frame": {"x":753,"y":1067,"w":32,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":18,"y":21,"w":32,"h":33}, "sourceSize": {"w":68,"h":56} }, "shiny/taillow": { "frame": {"x":1952,"y":959,"w":20,"h":17}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":37,"w":20,"h":17}, "sourceSize": {"w":68,"h":56} }, "shiny/talonflame": { "frame": {"x":579,"y":839,"w":37,"h":30}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":19,"y":23,"w":37,"h":30}, "sourceSize": {"w":68,"h":56} }, "shiny/tangela": { "frame": {"x":1817,"y":764,"w":21,"h":20}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":24,"y":34,"w":21,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/tangrowth": { "frame": {"x":671,"y":196,"w":48,"h":30}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":10,"y":22,"w":48,"h":30}, "sourceSize": {"w":68,"h":56} }, "shiny/tapu-bulu": { "frame": {"x":228,"y":1104,"w":34,"h":39}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":11,"w":34,"h":39}, "sourceSize": {"w":68,"h":56} }, "shiny/tapu-fini": { "frame": {"x":1256,"y":191,"w":29,"h":39}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":11,"w":29,"h":39}, "sourceSize": {"w":68,"h":56} }, "shiny/tapu-koko": { "frame": {"x":755,"y":230,"w":41,"h":40}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":15,"y":12,"w":41,"h":40}, "sourceSize": {"w":68,"h":56} }, "shiny/tapu-lele": { "frame": {"x":1065,"y":310,"w":29,"h":39}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":11,"w":29,"h":39}, "sourceSize": {"w":68,"h":56} }, "shiny/tauros": { "frame": {"x":499,"y":307,"w":44,"h":40}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":12,"y":12,"w":44,"h":40}, "sourceSize": {"w":68,"h":56} }, "shiny/teddiursa": { "frame": {"x":1724,"y":1085,"w":18,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":32,"w":18,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/tentacool": { "frame": {"x":1313,"y":1135,"w":26,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":19,"y":31,"w":26,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/tentacruel": { "frame": {"x":621,"y":154,"w":43,"h":40}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":11,"y":15,"w":43,"h":40}, "sourceSize": {"w":68,"h":56} }, "shiny/tepig": { "frame": {"x":1862,"y":808,"w":20,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":34,"w":20,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/terrakion": { "frame": {"x":547,"y":550,"w":38,"h":31}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":23,"w":38,"h":31}, "sourceSize": {"w":68,"h":56} }, "shiny/thievul": { "frame": {"x":508,"y":763,"w":35,"h":34}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":16,"y":21,"w":35,"h":34}, "sourceSize": {"w":68,"h":56} }, "shiny/throh": { "frame": {"x":1119,"y":49,"w":47,"h":34}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":11,"y":21,"w":47,"h":34}, "sourceSize": {"w":68,"h":56} }, "shiny/thundurus-therian": { "frame": {"x":499,"y":349,"w":44,"h":40}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":12,"y":14,"w":44,"h":40}, "sourceSize": {"w":68,"h":56} }, "shiny/thundurus": { "frame": {"x":798,"y":230,"w":42,"h":39}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":12,"y":15,"w":42,"h":39}, "sourceSize": {"w":68,"h":56} }, "shiny/thwackey": { "frame": {"x":1069,"y":1030,"w":24,"h":28}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":27,"w":24,"h":28}, "sourceSize": {"w":68,"h":56} }, "shiny/timburr": { "frame": {"x":1347,"y":572,"w":26,"h":21}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":33,"w":26,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/tirtouga": { "frame": {"x":1432,"y":1232,"w":25,"h":17}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":22,"y":37,"w":25,"h":17}, "sourceSize": {"w":68,"h":56} }, "shiny/togedemaru": { "frame": {"x":1833,"y":421,"w":30,"h":29}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":27,"w":30,"h":29}, "sourceSize": {"w":68,"h":56} }, "shiny/togekiss": { "frame": {"x":399,"y":1014,"w":43,"h":28}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":14,"y":25,"w":43,"h":28}, "sourceSize": {"w":68,"h":56} }, "shiny/togepi": { "frame": {"x":1967,"y":874,"w":18,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":34,"w":18,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/togetic": { "frame": {"x":1663,"y":1144,"w":19,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":31,"w":19,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/torchic": { "frame": {"x":1861,"y":1238,"w":15,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":33,"w":15,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/torkoal": { "frame": {"x":960,"y":1225,"w":32,"h":28}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":28,"w":32,"h":28}, "sourceSize": {"w":68,"h":56} }, "shiny/tornadus-therian": { "frame": {"x":312,"y":479,"w":43,"h":43}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":14,"y":11,"w":43,"h":43}, "sourceSize": {"w":68,"h":56} }, "shiny/tornadus": { "frame": {"x":1093,"y":147,"w":36,"h":38}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":15,"y":16,"w":36,"h":38}, "sourceSize": {"w":68,"h":56} }, "shiny/torracat": { "frame": {"x":1279,"y":941,"w":25,"h":26}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":28,"w":25,"h":26}, "sourceSize": {"w":68,"h":56} }, "shiny/torterra": { "frame": {"x":1017,"y":547,"w":30,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":29,"w":30,"h":25}, "sourceSize": {"w":68,"h":56} }, "shiny/totodile": { "frame": {"x":1884,"y":808,"w":20,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":34,"w":20,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/toucannon": { "frame": {"x":1389,"y":1205,"w":25,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":31,"w":25,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/toxapex": { "frame": {"x":1035,"y":386,"w":40,"h":33}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":14,"y":23,"w":40,"h":33}, "sourceSize": {"w":68,"h":56} }, "shiny/toxel": { "frame": {"x":1640,"y":1021,"w":20,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":31,"w":20,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/toxicroak": { "frame": {"x":583,"y":691,"w":37,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":15,"y":23,"w":37,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/toxtricity-gmax": { "frame": {"x":49,"y":877,"w":44,"h":48}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":11,"y":8,"w":44,"h":48}, "sourceSize": {"w":68,"h":56} }, "shiny/toxtricity-low-key": { "frame": {"x":488,"y":884,"w":24,"h":38}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":16,"w":24,"h":38}, "sourceSize": {"w":68,"h":56} }, "shiny/toxtricity": { "frame": {"x":498,"y":1096,"w":27,"h":41}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":13,"w":27,"h":41}, "sourceSize": {"w":68,"h":56} }, "shiny/tranquill": { "frame": {"x":1689,"y":679,"w":21,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":32,"w":21,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/trapinch": { "frame": {"x":1744,"y":822,"w":21,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":33,"w":21,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/treecko": { "frame": {"x":1449,"y":969,"w":23,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":31,"w":23,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/trevenant": { "frame": {"x":1003,"y":239,"w":40,"h":34}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":15,"y":21,"w":40,"h":34}, "sourceSize": {"w":68,"h":56} }, "shiny/tropius": { "frame": {"x":755,"y":1224,"w":33,"h":28}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":26,"w":33,"h":28}, "sourceSize": {"w":68,"h":56} }, "shiny/trubbish": { "frame": {"x":1662,"y":1119,"w":23,"h":20}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":22,"y":34,"w":23,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/trumbeak": { "frame": {"x":1594,"y":867,"w":21,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":30,"w":21,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/tsareena": { "frame": {"x":658,"y":1207,"w":28,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":22,"w":28,"h":33}, "sourceSize": {"w":68,"h":56} }, "shiny/turtonator": { "frame": {"x":1696,"y":158,"w":39,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":23,"w":39,"h":33}, "sourceSize": {"w":68,"h":56} }, "shiny/turtwig": { "frame": {"x":1597,"y":1130,"w":20,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":24,"y":30,"w":20,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/tympole": { "frame": {"x":1965,"y":1222,"w":16,"h":15}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":26,"y":39,"w":16,"h":15}, "sourceSize": {"w":68,"h":56} }, "shiny/tynamo": { "frame": {"x":1978,"y":1141,"w":16,"h":13}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":26,"y":41,"w":16,"h":13}, "sourceSize": {"w":68,"h":56} }, "shiny/type-null": { "frame": {"x":1127,"y":300,"w":35,"h":37}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":18,"w":35,"h":37}, "sourceSize": {"w":68,"h":56} }, "shiny/typhlosion": { "frame": {"x":1206,"y":661,"w":25,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":27,"w":25,"h":27}, "sourceSize": {"w":68,"h":56} }, "shiny/tyranitar-mega": { "frame": {"x":1589,"y":324,"w":30,"h":31}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":25,"w":30,"h":31}, "sourceSize": {"w":68,"h":56} }, "shiny/tyranitar": { "frame": {"x":384,"y":885,"w":37,"h":40}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":19,"y":14,"w":37,"h":40}, "sourceSize": {"w":68,"h":56} }, "shiny/tyrantrum": { "frame": {"x":225,"y":653,"w":43,"h":36}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":12,"y":18,"w":43,"h":36}, "sourceSize": {"w":68,"h":56} }, "shiny/tyrogue": { "frame": {"x":1939,"y":663,"w":15,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":27,"y":31,"w":15,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/tyrunt": { "frame": {"x":1766,"y":941,"w":22,"h":19}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":36,"w":22,"h":19}, "sourceSize": {"w":68,"h":56} }, "shiny/umbreon": { "frame": {"x":1016,"y":517,"w":28,"h":29}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":26,"w":28,"h":29}, "sourceSize": {"w":68,"h":56} }, "shiny/unfezant": { "frame": {"x":560,"y":1076,"w":32,"h":34}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":21,"w":32,"h":34}, "sourceSize": {"w":68,"h":56} }, "shiny/unown-b": { "frame": {"x":1131,"y":1239,"w":14,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":27,"y":31,"w":14,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/unown-c": { "frame": {"x":1845,"y":745,"w":17,"h":22}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":26,"y":32,"w":17,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/unown-d": { "frame": {"x":1850,"y":1197,"w":16,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":27,"y":33,"w":16,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/unown-e": { "frame": {"x":1808,"y":836,"w":16,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":32,"w":16,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/unown-exclamation": { "frame": {"x":1826,"y":809,"w":12,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":27,"y":32,"w":12,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/unown-f": { "frame": {"x":1848,"y":1112,"w":17,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":33,"w":17,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/unown-g": { "frame": {"x":1653,"y":1266,"w":12,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":28,"y":31,"w":12,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/unown-h": { "frame": {"x":1745,"y":1214,"w":20,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":33,"w":20,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/unown-i": { "frame": {"x":1826,"y":833,"w":12,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":28,"y":32,"w":12,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/unown-j": { "frame": {"x":1272,"y":646,"w":13,"h":21}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":28,"y":33,"w":13,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/unown-k": { "frame": {"x":1826,"y":857,"w":15,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":32,"w":15,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/unown-l": { "frame": {"x":1827,"y":881,"w":15,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":32,"w":15,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/unown-m": { "frame": {"x":1709,"y":773,"w":20,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":32,"w":20,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/unown-n": { "frame": {"x":1341,"y":1262,"w":24,"h":16}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":37,"w":24,"h":16}, "sourceSize": {"w":68,"h":56} }, "shiny/unown-o": { "frame": {"x":1800,"y":701,"w":20,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":33,"w":20,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/unown-p": { "frame": {"x":1016,"y":1124,"w":13,"h":22}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":28,"y":32,"w":13,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/unown-q": { "frame": {"x":1959,"y":1129,"w":16,"h":18}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":36,"w":16,"h":18}, "sourceSize": {"w":68,"h":56} }, "shiny/unown-question": { "frame": {"x":26,"y":1265,"w":13,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":27,"y":31,"w":13,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/unown-r": { "frame": {"x":1867,"y":1164,"w":12,"h":20}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":29,"y":34,"w":12,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/unown-s": { "frame": {"x":1975,"y":577,"w":16,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":29,"w":16,"h":25}, "sourceSize": {"w":68,"h":56} }, "shiny/unown-t": { "frame": {"x":1758,"y":614,"w":14,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":33,"w":14,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/unown-u": { "frame": {"x":1867,"y":1015,"w":20,"h":18}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":24,"y":36,"w":20,"h":18}, "sourceSize": {"w":68,"h":56} }, "shiny/unown-v": { "frame": {"x":1927,"y":1220,"w":16,"h":20}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":34,"w":16,"h":20}, "sourceSize": {"w":68,"h":56} }, "shiny/unown-w": { "frame": {"x":1887,"y":993,"w":19,"h":19}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":35,"w":19,"h":19}, "sourceSize": {"w":68,"h":56} }, "shiny/unown-x": { "frame": {"x":1911,"y":1242,"w":15,"h":16}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":27,"y":38,"w":15,"h":16}, "sourceSize": {"w":68,"h":56} }, "shiny/unown-y": { "frame": {"x":1958,"y":707,"w":15,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":27,"y":33,"w":15,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/unown-z": { "frame": {"x":1868,"y":958,"w":12,"h":21}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":28,"y":33,"w":12,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/unown": { "frame": {"x":1678,"y":1266,"w":12,"h":23}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":28,"y":31,"w":12,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/ursaring": { "frame": {"x":1345,"y":786,"w":23,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":29,"w":23,"h":25}, "sourceSize": {"w":68,"h":56} }, "shiny/urshifu-gmax": { "frame": {"x":414,"y":133,"w":41,"h":50}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":13,"y":4,"w":41,"h":50}, "sourceSize": {"w":68,"h":56} }, "shiny/urshifu-rapid-strike-gmax": { "frame": {"x":357,"y":521,"w":41,"h":45}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":13,"y":9,"w":41,"h":45}, "sourceSize": {"w":68,"h":56} }, "shiny/urshifu": { "frame": {"x":544,"y":619,"w":35,"h":35}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":17,"w":35,"h":35}, "sourceSize": {"w":68,"h":56} }, "shiny/uxie": { "frame": {"x":557,"y":967,"w":35,"h":31}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":17,"y":21,"w":35,"h":31}, "sourceSize": {"w":68,"h":56} }, "shiny/vanillish": { "frame": {"x":1708,"y":1182,"w":17,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":31,"w":17,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/vanillite": { "frame": {"x":1977,"y":1065,"w":14,"h":18}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":27,"y":36,"w":14,"h":18}, "sourceSize": {"w":68,"h":56} }, "shiny/vanilluxe": { "frame": {"x":676,"y":999,"w":33,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":22,"w":33,"h":33}, "sourceSize": {"w":68,"h":56} }, "shiny/vaporeon": { "frame": {"x":504,"y":1139,"w":41,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":16,"y":23,"w":41,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/venipede": { "frame": {"x":1952,"y":995,"w":20,"h":16}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":38,"w":20,"h":16}, "sourceSize": {"w":68,"h":56} }, "shiny/venomoth": { "frame": {"x":1108,"y":185,"w":36,"h":38}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":19,"y":14,"w":36,"h":38}, "sourceSize": {"w":68,"h":56} }, "shiny/venonat": { "frame": {"x":624,"y":1154,"w":19,"h":28}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":25,"y":26,"w":19,"h":28}, "sourceSize": {"w":68,"h":56} }, "shiny/venusaur-gmax": { "frame": {"x":139,"y":532,"w":48,"h":43}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":11,"y":11,"w":48,"h":43}, "sourceSize": {"w":68,"h":56} }, "shiny/venusaur-mega": { "frame": {"x":1747,"y":418,"w":31,"h":28}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":19,"y":26,"w":31,"h":28}, "sourceSize": {"w":68,"h":56} }, "shiny/venusaur": { "frame": {"x":403,"y":389,"w":45,"h":41}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":13,"y":14,"w":45,"h":41}, "sourceSize": {"w":68,"h":56} }, "shiny/vespiquen": { "frame": {"x":783,"y":965,"w":34,"h":32}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":24,"w":34,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/vibrava": { "frame": {"x":1269,"y":546,"w":27,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":32,"w":27,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/victini": { "frame": {"x":1806,"y":389,"w":24,"h":31}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":24,"w":24,"h":31}, "sourceSize": {"w":68,"h":56} }, "shiny/victreebel": { "frame": {"x":506,"y":1182,"w":41,"h":34}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":15,"y":19,"w":41,"h":34}, "sourceSize": {"w":68,"h":56} }, "shiny/vigoroth": { "frame": {"x":1043,"y":1031,"w":29,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":19,"y":30,"w":29,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/vikavolt": { "frame": {"x":1740,"y":122,"w":39,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":15,"y":23,"w":39,"h":33}, "sourceSize": {"w":68,"h":56} }, "shiny/vileplume": { "frame": {"x":1029,"y":310,"w":40,"h":34}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":15,"y":20,"w":40,"h":34}, "sourceSize": {"w":68,"h":56} }, "shiny/virizion": { "frame": {"x":644,"y":872,"w":29,"h":37}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":17,"w":29,"h":37}, "sourceSize": {"w":68,"h":56} }, "shiny/vivillon-archipelago": { "frame": {"x":1089,"y":913,"w":28,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":26,"w":28,"h":27}, "sourceSize": {"w":68,"h":56} }, "shiny/vivillon-continental": { "frame": {"x":1089,"y":942,"w":28,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":26,"w":28,"h":27}, "sourceSize": {"w":68,"h":56} }, "shiny/vivillon-elegant": { "frame": {"x":1089,"y":971,"w":28,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":26,"w":28,"h":27}, "sourceSize": {"w":68,"h":56} }, "shiny/vivillon-fancy": { "frame": {"x":1090,"y":1000,"w":28,"h":27}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":26,"w":28,"h":27}, "sourceSize": {"w":68,"h":56} }, "shiny/vivillon-garden": { "frame": {"x":1119,"y":914,"w":28,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":26,"w":28,"h":27}, "sourceSize": {"w":68,"h":56} }, "shiny/vivillon-high-plains": { "frame": {"x":1119,"y":943,"w":28,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":26,"w":28,"h":27}, "sourceSize": {"w":68,"h":56} }, "shiny/vivillon-icy-snow": { "frame": {"x":1119,"y":972,"w":28,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":26,"w":28,"h":27}, "sourceSize": {"w":68,"h":56} }, "shiny/vivillon-jungle": { "frame": {"x":1119,"y":1001,"w":28,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":26,"w":28,"h":27}, "sourceSize": {"w":68,"h":56} }, "shiny/vivillon-marine": { "frame": {"x":1095,"y":1030,"w":28,"h":27}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":26,"w":28,"h":27}, "sourceSize": {"w":68,"h":56} }, "shiny/vivillon-modern": { "frame": {"x":1158,"y":752,"w":28,"h":27}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":26,"w":28,"h":27}, "sourceSize": {"w":68,"h":56} }, "shiny/vivillon-monsoon": { "frame": {"x":1157,"y":807,"w":28,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":26,"w":28,"h":27}, "sourceSize": {"w":68,"h":56} }, "shiny/vivillon-ocean": { "frame": {"x":1157,"y":836,"w":28,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":26,"w":28,"h":27}, "sourceSize": {"w":68,"h":56} }, "shiny/vivillon-poke-ball": { "frame": {"x":1149,"y":918,"w":28,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":26,"w":28,"h":27}, "sourceSize": {"w":68,"h":56} }, "shiny/vivillon-polar": { "frame": {"x":1149,"y":947,"w":28,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":26,"w":28,"h":27}, "sourceSize": {"w":68,"h":56} }, "shiny/vivillon-river": { "frame": {"x":1149,"y":976,"w":28,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":26,"w":28,"h":27}, "sourceSize": {"w":68,"h":56} }, "shiny/vivillon-sandstorm": { "frame": {"x":1150,"y":1030,"w":28,"h":27}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":26,"w":28,"h":27}, "sourceSize": {"w":68,"h":56} }, "shiny/vivillon-savanna": { "frame": {"x":1151,"y":1060,"w":28,"h":27}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":26,"w":28,"h":27}, "sourceSize": {"w":68,"h":56} }, "shiny/vivillon-sun": { "frame": {"x":1154,"y":1150,"w":28,"h":27}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":26,"w":28,"h":27}, "sourceSize": {"w":68,"h":56} }, "shiny/vivillon-tundra": { "frame": {"x":1156,"y":1180,"w":28,"h":27}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":26,"w":28,"h":27}, "sourceSize": {"w":68,"h":56} }, "shiny/vivillon": { "frame": {"x":1131,"y":1210,"w":28,"h":27}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":21,"y":26,"w":28,"h":27}, "sourceSize": {"w":68,"h":56} }, "shiny/volbeat": { "frame": {"x":1549,"y":1153,"w":22,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":31,"w":22,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/volcanion": { "frame": {"x":545,"y":311,"w":40,"h":43}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":14,"y":11,"w":40,"h":43}, "sourceSize": {"w":68,"h":56} }, "shiny/volcarona": { "frame": {"x":443,"y":746,"w":37,"h":32}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":17,"y":18,"w":37,"h":32}, "sourceSize": {"w":68,"h":56} }, "shiny/voltorb": { "frame": {"x":1965,"y":1240,"w":16,"h":16}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":26,"y":38,"w":16,"h":16}, "sourceSize": {"w":68,"h":56} }, "shiny/vullaby": { "frame": {"x":1755,"y":637,"w":24,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":33,"w":24,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/vulpix-alola": { "frame": {"x":1497,"y":724,"w":24,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":31,"w":24,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/vulpix": { "frame": {"x":1549,"y":1177,"w":22,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":32,"w":22,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/wailmer": { "frame": {"x":884,"y":975,"w":35,"h":26}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":29,"w":35,"h":26}, "sourceSize": {"w":68,"h":56} }, "shiny/wailord": { "frame": {"x":132,"y":269,"w":53,"h":35}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":13,"y":21,"w":53,"h":35}, "sourceSize": {"w":68,"h":56} }, "shiny/walrein": { "frame": {"x":548,"y":800,"w":38,"h":29}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":18,"y":24,"w":38,"h":29}, "sourceSize": {"w":68,"h":56} }, "shiny/wartortle": { "frame": {"x":1287,"y":1191,"w":26,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":30,"w":26,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/watchog": { "frame": {"x":1421,"y":797,"w":22,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":30,"w":22,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/weavile": { "frame": {"x":807,"y":795,"w":29,"h":37}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":19,"w":29,"h":37}, "sourceSize": {"w":68,"h":56} }, "shiny/weedle": { "frame": {"x":1868,"y":1178,"w":18,"h":19}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":35,"w":18,"h":19}, "sourceSize": {"w":68,"h":56} }, "shiny/weepinbell": { "frame": {"x":1425,"y":1021,"w":24,"h":22}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":32,"w":24,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/weezing-galar": { "frame": {"x":139,"y":582,"w":44,"h":47}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":12,"y":9,"w":44,"h":47}, "sourceSize": {"w":68,"h":56} }, "shiny/weezing": { "frame": {"x":51,"y":500,"w":49,"h":44}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":11,"y":12,"w":49,"h":44}, "sourceSize": {"w":68,"h":56} }, "shiny/whimsicott": { "frame": {"x":660,"y":545,"w":37,"h":33}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":15,"y":20,"w":37,"h":33}, "sourceSize": {"w":68,"h":56} }, "shiny/whirlipede": { "frame": {"x":1642,"y":1122,"w":24,"h":18}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":22,"y":36,"w":24,"h":18}, "sourceSize": {"w":68,"h":56} }, "shiny/whiscash": { "frame": {"x":543,"y":1253,"w":36,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":31,"w":36,"h":25}, "sourceSize": {"w":68,"h":56} }, "shiny/whismur": { "frame": {"x":1926,"y":1030,"w":19,"h":18}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":24,"y":36,"w":19,"h":18}, "sourceSize": {"w":68,"h":56} }, "shiny/wigglytuff": { "frame": {"x":1003,"y":197,"w":33,"h":40}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":14,"w":33,"h":40}, "sourceSize": {"w":68,"h":56} }, "shiny/wimpod": { "frame": {"x":1291,"y":699,"w":26,"h":16}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":35,"w":26,"h":16}, "sourceSize": {"w":68,"h":56} }, "shiny/wingull": { "frame": {"x":1100,"y":1180,"w":28,"h":16}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":20,"y":38,"w":28,"h":16}, "sourceSize": {"w":68,"h":56} }, "shiny/wishiwashi-school": { "frame": {"x":46,"y":929,"w":44,"h":33}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":15,"y":23,"w":44,"h":33}, "sourceSize": {"w":68,"h":56} }, "shiny/wishiwashi": { "frame": {"x":1952,"y":1013,"w":20,"h":15}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":35,"w":20,"h":15}, "sourceSize": {"w":68,"h":56} }, "shiny/wobbuffet": { "frame": {"x":921,"y":978,"w":28,"h":35}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":20,"w":28,"h":35}, "sourceSize": {"w":68,"h":56} }, "shiny/woobat": { "frame": {"x":1789,"y":1261,"w":22,"h":17}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":37,"w":22,"h":17}, "sourceSize": {"w":68,"h":56} }, "shiny/wooloo": { "frame": {"x":1681,"y":821,"w":22,"h":21}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":33,"w":22,"h":21}, "sourceSize": {"w":68,"h":56} }, "shiny/wooper": { "frame": {"x":1766,"y":965,"w":22,"h":19}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":35,"w":22,"h":19}, "sourceSize": {"w":68,"h":56} }, "shiny/wormadam-sandy": { "frame": {"x":1286,"y":1053,"w":26,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":29,"w":26,"h":25}, "sourceSize": {"w":68,"h":56} }, "shiny/wormadam-trash": { "frame": {"x":1319,"y":705,"w":25,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":29,"w":25,"h":25}, "sourceSize": {"w":68,"h":56} }, "shiny/wormadam": { "frame": {"x":1370,"y":706,"w":24,"h":25}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":29,"w":24,"h":25}, "sourceSize": {"w":68,"h":56} }, "shiny/wurmple": { "frame": {"x":1844,"y":873,"w":20,"h":19}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":35,"w":20,"h":19}, "sourceSize": {"w":68,"h":56} }, "shiny/wynaut": { "frame": {"x":1243,"y":533,"w":27,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":30,"w":27,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/xatu": { "frame": {"x":778,"y":795,"w":27,"h":37}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":23,"y":18,"w":27,"h":37}, "sourceSize": {"w":68,"h":56} }, "shiny/xerneas-active": { "frame": {"x":411,"y":219,"w":40,"h":49}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":14,"y":5,"w":40,"h":49}, "sourceSize": {"w":68,"h":56} }, "shiny/xerneas": { "frame": {"x":97,"y":588,"w":40,"h":48}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":14,"y":6,"w":40,"h":48}, "sourceSize": {"w":68,"h":56} }, "shiny/xurkitree": { "frame": {"x":735,"y":425,"w":38,"h":37}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":17,"y":16,"w":38,"h":37}, "sourceSize": {"w":68,"h":56} }, "shiny/yamask-galar": { "frame": {"x":1643,"y":1148,"w":24,"h":18}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":22,"y":36,"w":24,"h":18}, "sourceSize": {"w":68,"h":56} }, "shiny/yamask": { "frame": {"x":1651,"y":1218,"w":24,"h":18}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":22,"y":36,"w":24,"h":18}, "sourceSize": {"w":68,"h":56} }, "shiny/yamper": { "frame": {"x":1425,"y":1047,"w":24,"h":22}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":21,"y":34,"w":24,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/yanma": { "frame": {"x":1268,"y":299,"w":30,"h":18}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":19,"y":36,"w":30,"h":18}, "sourceSize": {"w":68,"h":56} }, "shiny/yanmega": { "frame": {"x":1935,"y":193,"w":32,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":30,"w":32,"h":23}, "sourceSize": {"w":68,"h":56} }, "shiny/yungoos": { "frame": {"x":1973,"y":189,"w":27,"h":18}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":22,"y":34,"w":27,"h":18}, "sourceSize": {"w":68,"h":56} }, "shiny/yveltal": { "frame": {"x":1191,"y":1,"w":50,"h":46}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":9,"y":9,"w":50,"h":46}, "sourceSize": {"w":68,"h":56} }, "shiny/zacian-crowned": { "frame": {"x":1600,"y":1,"w":47,"h":48}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":11,"y":7,"w":47,"h":48}, "sourceSize": {"w":68,"h":56} }, "shiny/zacian": { "frame": {"x":225,"y":691,"w":42,"h":37}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":16,"y":18,"w":42,"h":37}, "sourceSize": {"w":68,"h":56} }, "shiny/zamazenta-crowned": { "frame": {"x":258,"y":215,"w":49,"h":42}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":11,"y":14,"w":49,"h":42}, "sourceSize": {"w":68,"h":56} }, "shiny/zamazenta": { "frame": {"x":270,"y":602,"w":39,"h":40}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":15,"y":16,"w":39,"h":40}, "sourceSize": {"w":68,"h":56} }, "shiny/zangoose": { "frame": {"x":1396,"y":732,"w":25,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":24,"y":30,"w":25,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/zapdos-galar": { "frame": {"x":311,"y":524,"w":44,"h":42}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":11,"y":12,"w":44,"h":42}, "sourceSize": {"w":68,"h":56} }, "shiny/zapdos": { "frame": {"x":98,"y":688,"w":48,"h":40}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":12,"y":11,"w":48,"h":40}, "sourceSize": {"w":68,"h":56} }, "shiny/zarude-dada": { "frame": {"x":817,"y":197,"w":46,"h":31}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":15,"y":21,"w":46,"h":31}, "sourceSize": {"w":68,"h":56} }, "shiny/zarude": { "frame": {"x":865,"y":197,"w":46,"h":31}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":15,"y":21,"w":46,"h":31}, "sourceSize": {"w":68,"h":56} }, "shiny/zebstrika": { "frame": {"x":1044,"y":1062,"w":29,"h":25}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":29,"w":29,"h":25}, "sourceSize": {"w":68,"h":56} }, "shiny/zekrom": { "frame": {"x":462,"y":189,"w":43,"h":42}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":13,"y":13,"w":43,"h":42}, "sourceSize": {"w":68,"h":56} }, "shiny/zeraora": { "frame": {"x":1031,"y":150,"w":40,"h":34}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":16,"y":21,"w":40,"h":34}, "sourceSize": {"w":68,"h":56} }, "shiny/zigzagoon-galar": { "frame": {"x":1671,"y":1218,"w":24,"h":18}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":36,"w":24,"h":18}, "sourceSize": {"w":68,"h":56} }, "shiny/zigzagoon": { "frame": {"x":1624,"y":656,"w":24,"h":18}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":23,"y":36,"w":24,"h":18}, "sourceSize": {"w":68,"h":56} }, "shiny/zoroark": { "frame": {"x":809,"y":386,"w":40,"h":35}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":15,"y":17,"w":40,"h":35}, "sourceSize": {"w":68,"h":56} }, "shiny/zorua": { "frame": {"x":1868,"y":1199,"w":18,"h":19}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":25,"y":35,"w":18,"h":19}, "sourceSize": {"w":68,"h":56} }, "shiny/zubat": { "frame": {"x":1592,"y":1013,"w":23,"h":22}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":24,"y":31,"w":23,"h":22}, "sourceSize": {"w":68,"h":56} }, "shiny/zweilous": { "frame": {"x":1179,"y":948,"w":28,"h":24}, "rotated": true, "trimmed": true, "spriteSourceSize": {"x":20,"y":30,"w":28,"h":24}, "sourceSize": {"w":68,"h":56} }, "shiny/zygarde-10": { "frame": {"x":1621,"y":324,"w":30,"h":31}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":25,"w":30,"h":31}, "sourceSize": {"w":68,"h":56} }, "shiny/zygarde-complete": { "frame": {"x":369,"y":1,"w":52,"h":47}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":8,"y":7,"w":52,"h":47}, "sourceSize": {"w":68,"h":56} }, "shiny/zygarde": { "frame": {"x":268,"y":259,"w":39,"h":47}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":14,"y":7,"w":39,"h":47}, "sourceSize": {"w":68,"h":56} }, "unknown-gen5": { "frame": {"x":1931,"y":337,"w":31,"h":23}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":19,"y":32,"w":31,"h":23}, "sourceSize": {"w":68,"h":56} }, "unknown": { "frame": {"x":1423,"y":598,"w":24,"h":24}, "rotated": false, "trimmed": true, "spriteSourceSize": {"x":22,"y":29,"w":24,"h":24}, "sourceSize": {"w":68,"h":56} }}, "animations": { }, "meta": { "app": "https://www.codeandweb.com/texturepacker", "version": "1.0", "image": "creatures.webp", "format": "RGBA8888", "size": {"w":1992,"h":1279}, "scale": "1", "smartupdate": "$TexturePacker:SmartUpdate:77854fd3064a9280c478da8596942d1b:b6a56b5c664e1ad043a9ff214515bf33:020c7e16cdaeee568bde99d2ac59efe8$" } } ================================================ FILE: copyrighted/textures/rse/creatures.tps ================================================ fileFormatVersion 4 texturePackerVersion 5.5.0 autoSDSettings scale 1 extension spriteFilter acceptFractionalValues maxTextureSize width -1 height -1 allowRotation shapeDebug dpi 72 dataFormat pixijs4 textureFileName tileset.webp flipPVR pvrCompressionQuality PVR_QUALITY_NORMAL atfCompressData mipMapMinSize 32768 etc1CompressionQuality ETC1_QUALITY_LOW_PERCEPTUAL etc2CompressionQuality ETC2_QUALITY_LOW_PERCEPTUAL dxtCompressionMode DXT_PERCEPTUAL jxrColorFormat JXR_YUV444 jxrTrimFlexBits 0 jxrCompressionLevel 0 ditherType PngQuantLow backgroundColor 0 libGdx filtering x Linear y Linear shapePadding 0 jpgQuality 80 pngOptimizationLevel 1 webpQualityLevel 101 textureSubPath atfFormats textureFormat webp borderPadding 0 maxTextureSize width 2048 height 2048 fixedTextureSize width -1 height -1 algorithmSettings algorithm MaxRects freeSizeMode Best sizeConstraints AnySize forceSquared maxRects heuristic Best basic sortBy Best order Ascending polygon alignToGrid 1 dataFileNames data name creatures.json multiPack forceIdenticalLayout outputFormat RGBA8888 alphaHandling ClearTransparentPixels contentProtection key autoAliasEnabled trimSpriteNames prependSmartFolderName autodetectAnimations globalSpriteSettings scale 1 scaleMode Smooth extrude 1 trimThreshold 1 trimMargin 1 trimMode Trim tracerTolerance 200 heuristicMask defaultPivotPoint 0,0 writePivotPoints individualSpriteSettings ../../../app/build/creatures/pokemon-gen8/egg-manaphy.png ../../../app/build/creatures/pokemon-gen8/egg.png ../../../app/build/creatures/pokemon-gen8/mega.png ../../../app/build/creatures/pokemon-gen8/regular/abomasnow-mega.png ../../../app/build/creatures/pokemon-gen8/regular/abomasnow.png ../../../app/build/creatures/pokemon-gen8/regular/abra.png ../../../app/build/creatures/pokemon-gen8/regular/absol-mega.png ../../../app/build/creatures/pokemon-gen8/regular/absol.png ../../../app/build/creatures/pokemon-gen8/regular/accelgor.png ../../../app/build/creatures/pokemon-gen8/regular/aegislash-blade.png ../../../app/build/creatures/pokemon-gen8/regular/aegislash.png ../../../app/build/creatures/pokemon-gen8/regular/aerodactyl-mega.png ../../../app/build/creatures/pokemon-gen8/regular/aerodactyl.png ../../../app/build/creatures/pokemon-gen8/regular/aggron-mega.png ../../../app/build/creatures/pokemon-gen8/regular/aggron.png ../../../app/build/creatures/pokemon-gen8/regular/aipom.png ../../../app/build/creatures/pokemon-gen8/regular/alakazam-mega.png ../../../app/build/creatures/pokemon-gen8/regular/alakazam.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-caramel-swirl-berry.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-caramel-swirl-clover.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-caramel-swirl-flower.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-caramel-swirl-love.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-caramel-swirl-plain.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-caramel-swirl-ribbon.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-caramel-swirl-star.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-caramel-swirl-strawberry.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-gmax.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-lemon-cream-berry.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-lemon-cream-clover.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-lemon-cream-flower.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-lemon-cream-love.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-lemon-cream-plain.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-lemon-cream-ribbon.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-lemon-cream-star.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-lemon-cream-strawberry.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-matcha-cream-berry.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-matcha-cream-clover.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-matcha-cream-flower.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-matcha-cream-love.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-matcha-cream-plain.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-matcha-cream-ribbon.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-matcha-cream-star.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-matcha-cream-strawberry.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-mint-cream-berry.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-mint-cream-clover.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-mint-cream-flower.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-mint-cream-love.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-mint-cream-plain.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-mint-cream-ribbon.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-mint-cream-star.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-mint-cream-strawberry.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-rainbow-swirl-berry.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-rainbow-swirl-clover.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-rainbow-swirl-flower.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-rainbow-swirl-love.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-rainbow-swirl-plain.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-rainbow-swirl-ribbon.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-rainbow-swirl-star.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-rainbow-swirl-strawberry.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-ruby-cream-berry.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-ruby-cream-clover.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-ruby-cream-flower.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-ruby-cream-love.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-ruby-cream-plain.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-ruby-cream-ribbon.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-ruby-cream-star.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-ruby-cream-strawberry.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-ruby-swirl-berry.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-ruby-swirl-clover.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-ruby-swirl-flower.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-ruby-swirl-love.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-ruby-swirl-plain.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-ruby-swirl-ribbon.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-ruby-swirl-star.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-ruby-swirl-strawberry.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-salted-cream-berry.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-salted-cream-clover.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-salted-cream-flower.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-salted-cream-love.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-salted-cream-plain.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-salted-cream-ribbon.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-salted-cream-star.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-salted-cream-strawberry.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-vanilla-cream-berry.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-vanilla-cream-clover.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-vanilla-cream-flower.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-vanilla-cream-love.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-vanilla-cream-plain.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-vanilla-cream-ribbon.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-vanilla-cream-star.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie-vanilla-cream-strawberry.png ../../../app/build/creatures/pokemon-gen8/regular/alcremie.png ../../../app/build/creatures/pokemon-gen8/regular/alomomola.png ../../../app/build/creatures/pokemon-gen8/regular/altaria-mega.png ../../../app/build/creatures/pokemon-gen8/regular/altaria.png ../../../app/build/creatures/pokemon-gen8/regular/amaura.png ../../../app/build/creatures/pokemon-gen8/regular/ambipom.png ../../../app/build/creatures/pokemon-gen8/regular/amoonguss.png ../../../app/build/creatures/pokemon-gen8/regular/ampharos-mega.png ../../../app/build/creatures/pokemon-gen8/regular/ampharos.png ../../../app/build/creatures/pokemon-gen8/regular/anorith.png ../../../app/build/creatures/pokemon-gen8/regular/appletun.png ../../../app/build/creatures/pokemon-gen8/regular/applin.png ../../../app/build/creatures/pokemon-gen8/regular/araquanid.png ../../../app/build/creatures/pokemon-gen8/regular/arbok.png ../../../app/build/creatures/pokemon-gen8/regular/arcanine.png ../../../app/build/creatures/pokemon-gen8/regular/arceus-bug.png ../../../app/build/creatures/pokemon-gen8/regular/arceus-dark.png ../../../app/build/creatures/pokemon-gen8/regular/arceus-dragon.png ../../../app/build/creatures/pokemon-gen8/regular/arceus-electric.png ../../../app/build/creatures/pokemon-gen8/regular/arceus-fairy.png ../../../app/build/creatures/pokemon-gen8/regular/arceus-fighting.png ../../../app/build/creatures/pokemon-gen8/regular/arceus-fire.png ../../../app/build/creatures/pokemon-gen8/regular/arceus-flying.png ../../../app/build/creatures/pokemon-gen8/regular/arceus-ghost.png ../../../app/build/creatures/pokemon-gen8/regular/arceus-grass.png ../../../app/build/creatures/pokemon-gen8/regular/arceus-ground.png ../../../app/build/creatures/pokemon-gen8/regular/arceus-ice.png ../../../app/build/creatures/pokemon-gen8/regular/arceus-poison.png ../../../app/build/creatures/pokemon-gen8/regular/arceus-psychic.png ../../../app/build/creatures/pokemon-gen8/regular/arceus-rock.png ../../../app/build/creatures/pokemon-gen8/regular/arceus-steel.png ../../../app/build/creatures/pokemon-gen8/regular/arceus-water.png ../../../app/build/creatures/pokemon-gen8/regular/arceus.png ../../../app/build/creatures/pokemon-gen8/regular/archen.png ../../../app/build/creatures/pokemon-gen8/regular/archeops.png ../../../app/build/creatures/pokemon-gen8/regular/arctovish.png ../../../app/build/creatures/pokemon-gen8/regular/arctozolt.png ../../../app/build/creatures/pokemon-gen8/regular/ariados.png ../../../app/build/creatures/pokemon-gen8/regular/armaldo.png ../../../app/build/creatures/pokemon-gen8/regular/aromatisse.png ../../../app/build/creatures/pokemon-gen8/regular/aron.png ../../../app/build/creatures/pokemon-gen8/regular/arrokuda.png ../../../app/build/creatures/pokemon-gen8/regular/articuno-galar.png ../../../app/build/creatures/pokemon-gen8/regular/articuno.png ../../../app/build/creatures/pokemon-gen8/regular/audino-mega.png ../../../app/build/creatures/pokemon-gen8/regular/audino.png ../../../app/build/creatures/pokemon-gen8/regular/aurorus.png ../../../app/build/creatures/pokemon-gen8/regular/avalugg.png ../../../app/build/creatures/pokemon-gen8/regular/axew.png ../../../app/build/creatures/pokemon-gen8/regular/azelf.png ../../../app/build/creatures/pokemon-gen8/regular/azumarill.png ../../../app/build/creatures/pokemon-gen8/regular/azurill.png ../../../app/build/creatures/pokemon-gen8/regular/bagon.png ../../../app/build/creatures/pokemon-gen8/regular/baltoy.png ../../../app/build/creatures/pokemon-gen8/regular/banette-mega.png ../../../app/build/creatures/pokemon-gen8/regular/banette.png ../../../app/build/creatures/pokemon-gen8/regular/barbaracle.png ../../../app/build/creatures/pokemon-gen8/regular/barboach.png ../../../app/build/creatures/pokemon-gen8/regular/barraskewda.png ../../../app/build/creatures/pokemon-gen8/regular/basculin-blue-striped.png ../../../app/build/creatures/pokemon-gen8/regular/basculin.png ../../../app/build/creatures/pokemon-gen8/regular/bastiodon.png ../../../app/build/creatures/pokemon-gen8/regular/bayleef.png ../../../app/build/creatures/pokemon-gen8/regular/beartic.png ../../../app/build/creatures/pokemon-gen8/regular/beautifly.png ../../../app/build/creatures/pokemon-gen8/regular/beedrill-mega.png ../../../app/build/creatures/pokemon-gen8/regular/beedrill.png ../../../app/build/creatures/pokemon-gen8/regular/beheeyem.png ../../../app/build/creatures/pokemon-gen8/regular/beldum.png ../../../app/build/creatures/pokemon-gen8/regular/bellossom.png ../../../app/build/creatures/pokemon-gen8/regular/bellsprout.png ../../../app/build/creatures/pokemon-gen8/regular/bergmite.png ../../../app/build/creatures/pokemon-gen8/regular/bewear.png ../../../app/build/creatures/pokemon-gen8/regular/bibarel.png ../../../app/build/creatures/pokemon-gen8/regular/bidoof.png ../../../app/build/creatures/pokemon-gen8/regular/binacle.png ../../../app/build/creatures/pokemon-gen8/regular/bisharp.png ../../../app/build/creatures/pokemon-gen8/regular/blacephalon.png ../../../app/build/creatures/pokemon-gen8/regular/blastoise-gmax.png ../../../app/build/creatures/pokemon-gen8/regular/blastoise-mega.png ../../../app/build/creatures/pokemon-gen8/regular/blastoise.png ../../../app/build/creatures/pokemon-gen8/regular/blaziken-mega.png ../../../app/build/creatures/pokemon-gen8/regular/blaziken.png ../../../app/build/creatures/pokemon-gen8/regular/blipbug.png ../../../app/build/creatures/pokemon-gen8/regular/blissey.png ../../../app/build/creatures/pokemon-gen8/regular/blitzle.png ../../../app/build/creatures/pokemon-gen8/regular/boldore.png ../../../app/build/creatures/pokemon-gen8/regular/boltund.png ../../../app/build/creatures/pokemon-gen8/regular/bonsly.png ../../../app/build/creatures/pokemon-gen8/regular/bouffalant.png ../../../app/build/creatures/pokemon-gen8/regular/bounsweet.png ../../../app/build/creatures/pokemon-gen8/regular/braixen.png ../../../app/build/creatures/pokemon-gen8/regular/braviary.png ../../../app/build/creatures/pokemon-gen8/regular/breloom.png ../../../app/build/creatures/pokemon-gen8/regular/brionne.png ../../../app/build/creatures/pokemon-gen8/regular/bronzong.png ../../../app/build/creatures/pokemon-gen8/regular/bronzor.png ../../../app/build/creatures/pokemon-gen8/regular/bruxish.png ../../../app/build/creatures/pokemon-gen8/regular/budew.png ../../../app/build/creatures/pokemon-gen8/regular/buizel.png ../../../app/build/creatures/pokemon-gen8/regular/bulbasaur.png ../../../app/build/creatures/pokemon-gen8/regular/buneary.png ../../../app/build/creatures/pokemon-gen8/regular/bunnelby.png ../../../app/build/creatures/pokemon-gen8/regular/burmy-sandy.png ../../../app/build/creatures/pokemon-gen8/regular/burmy-trash.png ../../../app/build/creatures/pokemon-gen8/regular/burmy.png ../../../app/build/creatures/pokemon-gen8/regular/butterfree-gmax.png ../../../app/build/creatures/pokemon-gen8/regular/butterfree.png ../../../app/build/creatures/pokemon-gen8/regular/buzzwole.png ../../../app/build/creatures/pokemon-gen8/regular/cacnea.png ../../../app/build/creatures/pokemon-gen8/regular/cacturne.png ../../../app/build/creatures/pokemon-gen8/regular/calyrex-ice-rider.png ../../../app/build/creatures/pokemon-gen8/regular/calyrex-shadow-rider.png ../../../app/build/creatures/pokemon-gen8/regular/calyrex.png ../../../app/build/creatures/pokemon-gen8/regular/camerupt-mega.png ../../../app/build/creatures/pokemon-gen8/regular/camerupt.png ../../../app/build/creatures/pokemon-gen8/regular/carbink.png ../../../app/build/creatures/pokemon-gen8/regular/carkol.png ../../../app/build/creatures/pokemon-gen8/regular/carnivine.png ../../../app/build/creatures/pokemon-gen8/regular/carracosta.png ../../../app/build/creatures/pokemon-gen8/regular/carvanha.png ../../../app/build/creatures/pokemon-gen8/regular/cascoon.png ../../../app/build/creatures/pokemon-gen8/regular/castform-rainy.png ../../../app/build/creatures/pokemon-gen8/regular/castform-snowy.png ../../../app/build/creatures/pokemon-gen8/regular/castform-sunny.png ../../../app/build/creatures/pokemon-gen8/regular/castform.png ../../../app/build/creatures/pokemon-gen8/regular/caterpie.png ../../../app/build/creatures/pokemon-gen8/regular/celebi.png ../../../app/build/creatures/pokemon-gen8/regular/celesteela.png ../../../app/build/creatures/pokemon-gen8/regular/centiskorch-gmax.png ../../../app/build/creatures/pokemon-gen8/regular/centiskorch.png ../../../app/build/creatures/pokemon-gen8/regular/chandelure.png ../../../app/build/creatures/pokemon-gen8/regular/chansey.png ../../../app/build/creatures/pokemon-gen8/regular/charizard-gmax.png ../../../app/build/creatures/pokemon-gen8/regular/charizard-mega-x.png ../../../app/build/creatures/pokemon-gen8/regular/charizard-mega-y.png ../../../app/build/creatures/pokemon-gen8/regular/charizard.png ../../../app/build/creatures/pokemon-gen8/regular/charjabug.png ../../../app/build/creatures/pokemon-gen8/regular/charmander.png ../../../app/build/creatures/pokemon-gen8/regular/charmeleon.png ../../../app/build/creatures/pokemon-gen8/regular/chatot.png ../../../app/build/creatures/pokemon-gen8/regular/cherrim-sunshine.png ../../../app/build/creatures/pokemon-gen8/regular/cherrim.png ../../../app/build/creatures/pokemon-gen8/regular/cherubi.png ../../../app/build/creatures/pokemon-gen8/regular/chesnaught.png ../../../app/build/creatures/pokemon-gen8/regular/chespin.png ../../../app/build/creatures/pokemon-gen8/regular/chewtle.png ../../../app/build/creatures/pokemon-gen8/regular/chikorita.png ../../../app/build/creatures/pokemon-gen8/regular/chimchar.png ../../../app/build/creatures/pokemon-gen8/regular/chimecho.png ../../../app/build/creatures/pokemon-gen8/regular/chinchou.png ../../../app/build/creatures/pokemon-gen8/regular/chingling.png ../../../app/build/creatures/pokemon-gen8/regular/cinccino.png ../../../app/build/creatures/pokemon-gen8/regular/cinderace-gmax.png ../../../app/build/creatures/pokemon-gen8/regular/cinderace.png ../../../app/build/creatures/pokemon-gen8/regular/clamperl.png ../../../app/build/creatures/pokemon-gen8/regular/clauncher.png ../../../app/build/creatures/pokemon-gen8/regular/clawitzer.png ../../../app/build/creatures/pokemon-gen8/regular/claydol.png ../../../app/build/creatures/pokemon-gen8/regular/clefable.png ../../../app/build/creatures/pokemon-gen8/regular/clefairy.png ../../../app/build/creatures/pokemon-gen8/regular/cleffa.png ../../../app/build/creatures/pokemon-gen8/regular/clobbopus.png ../../../app/build/creatures/pokemon-gen8/regular/cloyster.png ../../../app/build/creatures/pokemon-gen8/regular/coalossal-gmax.png ../../../app/build/creatures/pokemon-gen8/regular/coalossal.png ../../../app/build/creatures/pokemon-gen8/regular/cobalion.png ../../../app/build/creatures/pokemon-gen8/regular/cofagrigus.png ../../../app/build/creatures/pokemon-gen8/regular/combee.png ../../../app/build/creatures/pokemon-gen8/regular/combusken.png ../../../app/build/creatures/pokemon-gen8/regular/comfey.png ../../../app/build/creatures/pokemon-gen8/regular/conkeldurr.png ../../../app/build/creatures/pokemon-gen8/regular/copperajah-gmax.png ../../../app/build/creatures/pokemon-gen8/regular/copperajah.png ../../../app/build/creatures/pokemon-gen8/regular/corphish.png ../../../app/build/creatures/pokemon-gen8/regular/corsola-galar.png ../../../app/build/creatures/pokemon-gen8/regular/corsola.png ../../../app/build/creatures/pokemon-gen8/regular/corviknight-gmax.png ../../../app/build/creatures/pokemon-gen8/regular/corviknight.png ../../../app/build/creatures/pokemon-gen8/regular/corvisquire.png ../../../app/build/creatures/pokemon-gen8/regular/cosmoem.png ../../../app/build/creatures/pokemon-gen8/regular/cosmog.png ../../../app/build/creatures/pokemon-gen8/regular/cottonee.png ../../../app/build/creatures/pokemon-gen8/regular/crabominable.png ../../../app/build/creatures/pokemon-gen8/regular/crabrawler.png ../../../app/build/creatures/pokemon-gen8/regular/cradily.png ../../../app/build/creatures/pokemon-gen8/regular/cramorant-gorging.png ../../../app/build/creatures/pokemon-gen8/regular/cramorant-gulping.png ../../../app/build/creatures/pokemon-gen8/regular/cramorant.png ../../../app/build/creatures/pokemon-gen8/regular/cranidos.png ../../../app/build/creatures/pokemon-gen8/regular/crawdaunt.png ../../../app/build/creatures/pokemon-gen8/regular/cresselia.png ../../../app/build/creatures/pokemon-gen8/regular/croagunk.png ../../../app/build/creatures/pokemon-gen8/regular/crobat.png ../../../app/build/creatures/pokemon-gen8/regular/croconaw.png ../../../app/build/creatures/pokemon-gen8/regular/crustle.png ../../../app/build/creatures/pokemon-gen8/regular/cryogonal.png ../../../app/build/creatures/pokemon-gen8/regular/cubchoo.png ../../../app/build/creatures/pokemon-gen8/regular/cubone.png ../../../app/build/creatures/pokemon-gen8/regular/cufant.png ../../../app/build/creatures/pokemon-gen8/regular/cursola.png ../../../app/build/creatures/pokemon-gen8/regular/cutiefly.png ../../../app/build/creatures/pokemon-gen8/regular/cyndaquil.png ../../../app/build/creatures/pokemon-gen8/regular/darkrai.png ../../../app/build/creatures/pokemon-gen8/regular/darmanitan-galar-zen.png ../../../app/build/creatures/pokemon-gen8/regular/darmanitan-galar.png ../../../app/build/creatures/pokemon-gen8/regular/darmanitan-zen.png ../../../app/build/creatures/pokemon-gen8/regular/darmanitan.png ../../../app/build/creatures/pokemon-gen8/regular/dartrix.png ../../../app/build/creatures/pokemon-gen8/regular/darumaka-galar.png ../../../app/build/creatures/pokemon-gen8/regular/darumaka.png ../../../app/build/creatures/pokemon-gen8/regular/decidueye.png ../../../app/build/creatures/pokemon-gen8/regular/dedenne.png ../../../app/build/creatures/pokemon-gen8/regular/deerling-autumn.png ../../../app/build/creatures/pokemon-gen8/regular/deerling-summer.png ../../../app/build/creatures/pokemon-gen8/regular/deerling-winter.png ../../../app/build/creatures/pokemon-gen8/regular/deerling.png ../../../app/build/creatures/pokemon-gen8/regular/deino.png ../../../app/build/creatures/pokemon-gen8/regular/delcatty.png ../../../app/build/creatures/pokemon-gen8/regular/delibird.png ../../../app/build/creatures/pokemon-gen8/regular/delphox.png ../../../app/build/creatures/pokemon-gen8/regular/deoxys-attack.png ../../../app/build/creatures/pokemon-gen8/regular/deoxys-defense.png ../../../app/build/creatures/pokemon-gen8/regular/deoxys-speed.png ../../../app/build/creatures/pokemon-gen8/regular/deoxys.png ../../../app/build/creatures/pokemon-gen8/regular/dewgong.png ../../../app/build/creatures/pokemon-gen8/regular/dewott.png ../../../app/build/creatures/pokemon-gen8/regular/dewpider.png ../../../app/build/creatures/pokemon-gen8/regular/dhelmise.png ../../../app/build/creatures/pokemon-gen8/regular/dialga.png ../../../app/build/creatures/pokemon-gen8/regular/diancie-mega.png ../../../app/build/creatures/pokemon-gen8/regular/diancie.png ../../../app/build/creatures/pokemon-gen8/regular/diggersby.png ../../../app/build/creatures/pokemon-gen8/regular/diglett-alola.png ../../../app/build/creatures/pokemon-gen8/regular/diglett.png ../../../app/build/creatures/pokemon-gen8/regular/ditto.png ../../../app/build/creatures/pokemon-gen8/regular/dodrio.png ../../../app/build/creatures/pokemon-gen8/regular/doduo.png ../../../app/build/creatures/pokemon-gen8/regular/donphan.png ../../../app/build/creatures/pokemon-gen8/regular/dottler.png ../../../app/build/creatures/pokemon-gen8/regular/doublade.png ../../../app/build/creatures/pokemon-gen8/regular/dracovish.png ../../../app/build/creatures/pokemon-gen8/regular/dracozolt.png ../../../app/build/creatures/pokemon-gen8/regular/dragalge.png ../../../app/build/creatures/pokemon-gen8/regular/dragapult.png ../../../app/build/creatures/pokemon-gen8/regular/dragonair.png ../../../app/build/creatures/pokemon-gen8/regular/dragonite.png ../../../app/build/creatures/pokemon-gen8/regular/drakloak.png ../../../app/build/creatures/pokemon-gen8/regular/drampa.png ../../../app/build/creatures/pokemon-gen8/regular/drapion.png ../../../app/build/creatures/pokemon-gen8/regular/dratini.png ../../../app/build/creatures/pokemon-gen8/regular/drednaw-gmax.png ../../../app/build/creatures/pokemon-gen8/regular/drednaw.png ../../../app/build/creatures/pokemon-gen8/regular/dreepy.png ../../../app/build/creatures/pokemon-gen8/regular/drifblim.png ../../../app/build/creatures/pokemon-gen8/regular/drifloon.png ../../../app/build/creatures/pokemon-gen8/regular/drilbur.png ../../../app/build/creatures/pokemon-gen8/regular/drizzile.png ../../../app/build/creatures/pokemon-gen8/regular/drowzee.png ../../../app/build/creatures/pokemon-gen8/regular/druddigon.png ../../../app/build/creatures/pokemon-gen8/regular/dubwool.png ../../../app/build/creatures/pokemon-gen8/regular/ducklett.png ../../../app/build/creatures/pokemon-gen8/regular/dugtrio-alola.png ../../../app/build/creatures/pokemon-gen8/regular/dugtrio.png ../../../app/build/creatures/pokemon-gen8/regular/dunsparce.png ../../../app/build/creatures/pokemon-gen8/regular/duosion.png ../../../app/build/creatures/pokemon-gen8/regular/duraludon-gmax.png ../../../app/build/creatures/pokemon-gen8/regular/duraludon.png ../../../app/build/creatures/pokemon-gen8/regular/durant.png ../../../app/build/creatures/pokemon-gen8/regular/dusclops.png ../../../app/build/creatures/pokemon-gen8/regular/dusknoir.png ../../../app/build/creatures/pokemon-gen8/regular/duskull.png ../../../app/build/creatures/pokemon-gen8/regular/dustox.png ../../../app/build/creatures/pokemon-gen8/regular/dwebble.png ../../../app/build/creatures/pokemon-gen8/regular/eelektrik.png ../../../app/build/creatures/pokemon-gen8/regular/eelektross.png ../../../app/build/creatures/pokemon-gen8/regular/eevee-gmax.png ../../../app/build/creatures/pokemon-gen8/regular/eevee-starter.png ../../../app/build/creatures/pokemon-gen8/regular/eevee.png ../../../app/build/creatures/pokemon-gen8/regular/eiscue-noice.png ../../../app/build/creatures/pokemon-gen8/regular/eiscue.png ../../../app/build/creatures/pokemon-gen8/regular/ekans.png ../../../app/build/creatures/pokemon-gen8/regular/eldegoss.png ../../../app/build/creatures/pokemon-gen8/regular/electabuzz.png ../../../app/build/creatures/pokemon-gen8/regular/electivire.png ../../../app/build/creatures/pokemon-gen8/regular/electrike.png ../../../app/build/creatures/pokemon-gen8/regular/electrode.png ../../../app/build/creatures/pokemon-gen8/regular/elekid.png ../../../app/build/creatures/pokemon-gen8/regular/elgyem.png ../../../app/build/creatures/pokemon-gen8/regular/emboar.png ../../../app/build/creatures/pokemon-gen8/regular/emolga.png ../../../app/build/creatures/pokemon-gen8/regular/empoleon.png ../../../app/build/creatures/pokemon-gen8/regular/entei.png ../../../app/build/creatures/pokemon-gen8/regular/escavalier.png ../../../app/build/creatures/pokemon-gen8/regular/espeon.png ../../../app/build/creatures/pokemon-gen8/regular/espurr.png ../../../app/build/creatures/pokemon-gen8/regular/eternatus-eternamax.png ../../../app/build/creatures/pokemon-gen8/regular/eternatus.png ../../../app/build/creatures/pokemon-gen8/regular/excadrill.png ../../../app/build/creatures/pokemon-gen8/regular/exeggcute.png ../../../app/build/creatures/pokemon-gen8/regular/exeggutor-alola.png ../../../app/build/creatures/pokemon-gen8/regular/exeggutor.png ../../../app/build/creatures/pokemon-gen8/regular/exploud.png ../../../app/build/creatures/pokemon-gen8/regular/falinks.png ../../../app/build/creatures/pokemon-gen8/regular/farfetchd-galar.png ../../../app/build/creatures/pokemon-gen8/regular/farfetchd.png ../../../app/build/creatures/pokemon-gen8/regular/fearow.png ../../../app/build/creatures/pokemon-gen8/regular/feebas.png ../../../app/build/creatures/pokemon-gen8/regular/female/frillish.png ../../../app/build/creatures/pokemon-gen8/regular/female/hippopotas.png ../../../app/build/creatures/pokemon-gen8/regular/female/hippowdon.png ../../../app/build/creatures/pokemon-gen8/regular/female/indeedee.png ../../../app/build/creatures/pokemon-gen8/regular/female/jellicent.png ../../../app/build/creatures/pokemon-gen8/regular/female/meowstic.png ../../../app/build/creatures/pokemon-gen8/regular/female/pikachu-alola-cap.png ../../../app/build/creatures/pokemon-gen8/regular/female/pikachu-hoenn-cap.png ../../../app/build/creatures/pokemon-gen8/regular/female/pikachu-kalos-cap.png ../../../app/build/creatures/pokemon-gen8/regular/female/pikachu-original-cap.png ../../../app/build/creatures/pokemon-gen8/regular/female/pikachu-partner-cap.png ../../../app/build/creatures/pokemon-gen8/regular/female/pikachu-sinnoh-cap.png ../../../app/build/creatures/pokemon-gen8/regular/female/pikachu-starter.png ../../../app/build/creatures/pokemon-gen8/regular/female/pikachu-unova-cap.png ../../../app/build/creatures/pokemon-gen8/regular/female/pikachu-world-cap.png ../../../app/build/creatures/pokemon-gen8/regular/female/pikachu.png ../../../app/build/creatures/pokemon-gen8/regular/female/pyroar.png ../../../app/build/creatures/pokemon-gen8/regular/female/unfezant.png ../../../app/build/creatures/pokemon-gen8/regular/fennekin.png ../../../app/build/creatures/pokemon-gen8/regular/feraligatr.png ../../../app/build/creatures/pokemon-gen8/regular/ferroseed.png ../../../app/build/creatures/pokemon-gen8/regular/ferrothorn.png ../../../app/build/creatures/pokemon-gen8/regular/finneon.png ../../../app/build/creatures/pokemon-gen8/regular/flaaffy.png ../../../app/build/creatures/pokemon-gen8/regular/flabebe-blue.png ../../../app/build/creatures/pokemon-gen8/regular/flabebe-orange.png ../../../app/build/creatures/pokemon-gen8/regular/flabebe-white.png ../../../app/build/creatures/pokemon-gen8/regular/flabebe-yellow.png ../../../app/build/creatures/pokemon-gen8/regular/flabebe.png ../../../app/build/creatures/pokemon-gen8/regular/flapple-gmax.png ../../../app/build/creatures/pokemon-gen8/regular/flapple.png ../../../app/build/creatures/pokemon-gen8/regular/flareon.png ../../../app/build/creatures/pokemon-gen8/regular/fletchinder.png ../../../app/build/creatures/pokemon-gen8/regular/fletchling.png ../../../app/build/creatures/pokemon-gen8/regular/floatzel.png ../../../app/build/creatures/pokemon-gen8/regular/floette-blue.png ../../../app/build/creatures/pokemon-gen8/regular/floette-eternal.png ../../../app/build/creatures/pokemon-gen8/regular/floette-orange.png ../../../app/build/creatures/pokemon-gen8/regular/floette-white.png ../../../app/build/creatures/pokemon-gen8/regular/floette-yellow.png ../../../app/build/creatures/pokemon-gen8/regular/floette.png ../../../app/build/creatures/pokemon-gen8/regular/florges-blue.png ../../../app/build/creatures/pokemon-gen8/regular/florges-orange.png ../../../app/build/creatures/pokemon-gen8/regular/florges-white.png ../../../app/build/creatures/pokemon-gen8/regular/florges-yellow.png ../../../app/build/creatures/pokemon-gen8/regular/florges.png ../../../app/build/creatures/pokemon-gen8/regular/flygon.png ../../../app/build/creatures/pokemon-gen8/regular/fomantis.png ../../../app/build/creatures/pokemon-gen8/regular/foongus.png ../../../app/build/creatures/pokemon-gen8/regular/forretress.png ../../../app/build/creatures/pokemon-gen8/regular/fraxure.png ../../../app/build/creatures/pokemon-gen8/regular/frillish.png ../../../app/build/creatures/pokemon-gen8/regular/froakie.png ../../../app/build/creatures/pokemon-gen8/regular/frogadier.png ../../../app/build/creatures/pokemon-gen8/regular/froslass.png ../../../app/build/creatures/pokemon-gen8/regular/frosmoth.png ../../../app/build/creatures/pokemon-gen8/regular/furfrou-dandy.png ../../../app/build/creatures/pokemon-gen8/regular/furfrou-debutante.png ../../../app/build/creatures/pokemon-gen8/regular/furfrou-diamond.png ../../../app/build/creatures/pokemon-gen8/regular/furfrou-heart.png ../../../app/build/creatures/pokemon-gen8/regular/furfrou-kabuki.png ../../../app/build/creatures/pokemon-gen8/regular/furfrou-la-reine.png ../../../app/build/creatures/pokemon-gen8/regular/furfrou-matron.png ../../../app/build/creatures/pokemon-gen8/regular/furfrou-pharaoh.png ../../../app/build/creatures/pokemon-gen8/regular/furfrou-star.png ../../../app/build/creatures/pokemon-gen8/regular/furfrou.png ../../../app/build/creatures/pokemon-gen8/regular/furret.png ../../../app/build/creatures/pokemon-gen8/regular/gabite.png ../../../app/build/creatures/pokemon-gen8/regular/gallade-mega.png ../../../app/build/creatures/pokemon-gen8/regular/gallade.png ../../../app/build/creatures/pokemon-gen8/regular/galvantula.png ../../../app/build/creatures/pokemon-gen8/regular/garbodor-gmax.png ../../../app/build/creatures/pokemon-gen8/regular/garbodor.png ../../../app/build/creatures/pokemon-gen8/regular/garchomp-mega.png ../../../app/build/creatures/pokemon-gen8/regular/garchomp.png ../../../app/build/creatures/pokemon-gen8/regular/gardevoir-mega.png ../../../app/build/creatures/pokemon-gen8/regular/gardevoir.png ../../../app/build/creatures/pokemon-gen8/regular/gastly.png ../../../app/build/creatures/pokemon-gen8/regular/gastrodon-east.png ../../../app/build/creatures/pokemon-gen8/regular/gastrodon.png ../../../app/build/creatures/pokemon-gen8/regular/genesect-burn.png ../../../app/build/creatures/pokemon-gen8/regular/genesect-chill.png ../../../app/build/creatures/pokemon-gen8/regular/genesect-douse.png ../../../app/build/creatures/pokemon-gen8/regular/genesect-shock.png ../../../app/build/creatures/pokemon-gen8/regular/genesect.png ../../../app/build/creatures/pokemon-gen8/regular/gengar-gmax.png ../../../app/build/creatures/pokemon-gen8/regular/gengar-mega.png ../../../app/build/creatures/pokemon-gen8/regular/gengar.png ../../../app/build/creatures/pokemon-gen8/regular/geodude-alola.png ../../../app/build/creatures/pokemon-gen8/regular/geodude.png ../../../app/build/creatures/pokemon-gen8/regular/gible.png ../../../app/build/creatures/pokemon-gen8/regular/gigalith.png ../../../app/build/creatures/pokemon-gen8/regular/girafarig.png ../../../app/build/creatures/pokemon-gen8/regular/giratina-origin.png ../../../app/build/creatures/pokemon-gen8/regular/giratina.png ../../../app/build/creatures/pokemon-gen8/regular/glaceon.png ../../../app/build/creatures/pokemon-gen8/regular/glalie-mega.png ../../../app/build/creatures/pokemon-gen8/regular/glalie.png ../../../app/build/creatures/pokemon-gen8/regular/glameow.png ../../../app/build/creatures/pokemon-gen8/regular/glastrier.png ../../../app/build/creatures/pokemon-gen8/regular/gligar.png ../../../app/build/creatures/pokemon-gen8/regular/gliscor.png ../../../app/build/creatures/pokemon-gen8/regular/gloom.png ../../../app/build/creatures/pokemon-gen8/regular/gogoat.png ../../../app/build/creatures/pokemon-gen8/regular/golbat.png ../../../app/build/creatures/pokemon-gen8/regular/goldeen.png ../../../app/build/creatures/pokemon-gen8/regular/golduck.png ../../../app/build/creatures/pokemon-gen8/regular/golem-alola.png ../../../app/build/creatures/pokemon-gen8/regular/golem.png ../../../app/build/creatures/pokemon-gen8/regular/golett.png ../../../app/build/creatures/pokemon-gen8/regular/golisopod.png ../../../app/build/creatures/pokemon-gen8/regular/golurk.png ../../../app/build/creatures/pokemon-gen8/regular/goodra.png ../../../app/build/creatures/pokemon-gen8/regular/goomy.png ../../../app/build/creatures/pokemon-gen8/regular/gorebyss.png ../../../app/build/creatures/pokemon-gen8/regular/gossifleur.png ../../../app/build/creatures/pokemon-gen8/regular/gothita.png ../../../app/build/creatures/pokemon-gen8/regular/gothitelle.png ../../../app/build/creatures/pokemon-gen8/regular/gothorita.png ../../../app/build/creatures/pokemon-gen8/regular/gourgeist-large.png ../../../app/build/creatures/pokemon-gen8/regular/gourgeist-small.png ../../../app/build/creatures/pokemon-gen8/regular/gourgeist-super.png ../../../app/build/creatures/pokemon-gen8/regular/gourgeist.png ../../../app/build/creatures/pokemon-gen8/regular/granbull.png ../../../app/build/creatures/pokemon-gen8/regular/grapploct.png ../../../app/build/creatures/pokemon-gen8/regular/graveler-alola.png ../../../app/build/creatures/pokemon-gen8/regular/graveler.png ../../../app/build/creatures/pokemon-gen8/regular/greedent.png ../../../app/build/creatures/pokemon-gen8/regular/greninja-ash.png ../../../app/build/creatures/pokemon-gen8/regular/greninja.png ../../../app/build/creatures/pokemon-gen8/regular/grimer-alola.png ../../../app/build/creatures/pokemon-gen8/regular/grimer.png ../../../app/build/creatures/pokemon-gen8/regular/grimmsnarl-gmax.png ../../../app/build/creatures/pokemon-gen8/regular/grimmsnarl.png ../../../app/build/creatures/pokemon-gen8/regular/grookey.png ../../../app/build/creatures/pokemon-gen8/regular/grotle.png ../../../app/build/creatures/pokemon-gen8/regular/groudon-primal.png ../../../app/build/creatures/pokemon-gen8/regular/groudon.png ../../../app/build/creatures/pokemon-gen8/regular/grovyle.png ../../../app/build/creatures/pokemon-gen8/regular/growlithe.png ../../../app/build/creatures/pokemon-gen8/regular/grubbin.png ../../../app/build/creatures/pokemon-gen8/regular/grumpig.png ../../../app/build/creatures/pokemon-gen8/regular/gulpin.png ../../../app/build/creatures/pokemon-gen8/regular/gumshoos.png ../../../app/build/creatures/pokemon-gen8/regular/gurdurr.png ../../../app/build/creatures/pokemon-gen8/regular/guzzlord.png ../../../app/build/creatures/pokemon-gen8/regular/gyarados-mega.png ../../../app/build/creatures/pokemon-gen8/regular/gyarados.png ../../../app/build/creatures/pokemon-gen8/regular/hakamo-o.png ../../../app/build/creatures/pokemon-gen8/regular/happiny.png ../../../app/build/creatures/pokemon-gen8/regular/hariyama.png ../../../app/build/creatures/pokemon-gen8/regular/hatenna.png ../../../app/build/creatures/pokemon-gen8/regular/hatterene-gmax.png ../../../app/build/creatures/pokemon-gen8/regular/hatterene.png ../../../app/build/creatures/pokemon-gen8/regular/hattrem.png ../../../app/build/creatures/pokemon-gen8/regular/haunter.png ../../../app/build/creatures/pokemon-gen8/regular/hawlucha.png ../../../app/build/creatures/pokemon-gen8/regular/haxorus.png ../../../app/build/creatures/pokemon-gen8/regular/heatmor.png ../../../app/build/creatures/pokemon-gen8/regular/heatran.png ../../../app/build/creatures/pokemon-gen8/regular/heliolisk.png ../../../app/build/creatures/pokemon-gen8/regular/helioptile.png ../../../app/build/creatures/pokemon-gen8/regular/heracross-mega.png ../../../app/build/creatures/pokemon-gen8/regular/heracross.png ../../../app/build/creatures/pokemon-gen8/regular/herdier.png ../../../app/build/creatures/pokemon-gen8/regular/hippopotas.png ../../../app/build/creatures/pokemon-gen8/regular/hippowdon.png ../../../app/build/creatures/pokemon-gen8/regular/hitmonchan.png ../../../app/build/creatures/pokemon-gen8/regular/hitmonlee.png ../../../app/build/creatures/pokemon-gen8/regular/hitmontop.png ../../../app/build/creatures/pokemon-gen8/regular/ho-oh.png ../../../app/build/creatures/pokemon-gen8/regular/honchkrow.png ../../../app/build/creatures/pokemon-gen8/regular/honedge.png ../../../app/build/creatures/pokemon-gen8/regular/hoopa-unbound.png ../../../app/build/creatures/pokemon-gen8/regular/hoopa.png ../../../app/build/creatures/pokemon-gen8/regular/hoothoot.png ../../../app/build/creatures/pokemon-gen8/regular/hoppip.png ../../../app/build/creatures/pokemon-gen8/regular/horsea.png ../../../app/build/creatures/pokemon-gen8/regular/houndoom-mega.png ../../../app/build/creatures/pokemon-gen8/regular/houndoom.png ../../../app/build/creatures/pokemon-gen8/regular/houndour.png ../../../app/build/creatures/pokemon-gen8/regular/huntail.png ../../../app/build/creatures/pokemon-gen8/regular/hydreigon.png ../../../app/build/creatures/pokemon-gen8/regular/hypno.png ../../../app/build/creatures/pokemon-gen8/regular/igglybuff.png ../../../app/build/creatures/pokemon-gen8/regular/illumise.png ../../../app/build/creatures/pokemon-gen8/regular/impidimp.png ../../../app/build/creatures/pokemon-gen8/regular/incineroar.png ../../../app/build/creatures/pokemon-gen8/regular/indeedee.png ../../../app/build/creatures/pokemon-gen8/regular/infernape.png ../../../app/build/creatures/pokemon-gen8/regular/inkay.png ../../../app/build/creatures/pokemon-gen8/regular/inteleon-gmax.png ../../../app/build/creatures/pokemon-gen8/regular/inteleon.png ../../../app/build/creatures/pokemon-gen8/regular/ivysaur.png ../../../app/build/creatures/pokemon-gen8/regular/jangmo-o.png ../../../app/build/creatures/pokemon-gen8/regular/jellicent.png ../../../app/build/creatures/pokemon-gen8/regular/jigglypuff.png ../../../app/build/creatures/pokemon-gen8/regular/jirachi.png ../../../app/build/creatures/pokemon-gen8/regular/jolteon.png ../../../app/build/creatures/pokemon-gen8/regular/joltik.png ../../../app/build/creatures/pokemon-gen8/regular/jumpluff.png ../../../app/build/creatures/pokemon-gen8/regular/jynx.png ../../../app/build/creatures/pokemon-gen8/regular/kabuto.png ../../../app/build/creatures/pokemon-gen8/regular/kabutops.png ../../../app/build/creatures/pokemon-gen8/regular/kadabra.png ../../../app/build/creatures/pokemon-gen8/regular/kakuna.png ../../../app/build/creatures/pokemon-gen8/regular/kangaskhan-mega.png ../../../app/build/creatures/pokemon-gen8/regular/kangaskhan.png ../../../app/build/creatures/pokemon-gen8/regular/karrablast.png ../../../app/build/creatures/pokemon-gen8/regular/kartana.png ../../../app/build/creatures/pokemon-gen8/regular/kecleon.png ../../../app/build/creatures/pokemon-gen8/regular/keldeo-resolute.png ../../../app/build/creatures/pokemon-gen8/regular/keldeo.png ../../../app/build/creatures/pokemon-gen8/regular/kingdra.png ../../../app/build/creatures/pokemon-gen8/regular/kingler-gmax.png ../../../app/build/creatures/pokemon-gen8/regular/kingler.png ../../../app/build/creatures/pokemon-gen8/regular/kirlia.png ../../../app/build/creatures/pokemon-gen8/regular/klang.png ../../../app/build/creatures/pokemon-gen8/regular/klefki.png ../../../app/build/creatures/pokemon-gen8/regular/klink.png ../../../app/build/creatures/pokemon-gen8/regular/klinklang.png ../../../app/build/creatures/pokemon-gen8/regular/koffing.png ../../../app/build/creatures/pokemon-gen8/regular/komala.png ../../../app/build/creatures/pokemon-gen8/regular/kommo-o.png ../../../app/build/creatures/pokemon-gen8/regular/krabby.png ../../../app/build/creatures/pokemon-gen8/regular/kricketot.png ../../../app/build/creatures/pokemon-gen8/regular/kricketune.png ../../../app/build/creatures/pokemon-gen8/regular/krokorok.png ../../../app/build/creatures/pokemon-gen8/regular/krookodile.png ../../../app/build/creatures/pokemon-gen8/regular/kubfu.png ../../../app/build/creatures/pokemon-gen8/regular/kyogre-primal.png ../../../app/build/creatures/pokemon-gen8/regular/kyogre.png ../../../app/build/creatures/pokemon-gen8/regular/kyurem-black.png ../../../app/build/creatures/pokemon-gen8/regular/kyurem-white.png ../../../app/build/creatures/pokemon-gen8/regular/kyurem.png ../../../app/build/creatures/pokemon-gen8/regular/lairon.png ../../../app/build/creatures/pokemon-gen8/regular/lampent.png ../../../app/build/creatures/pokemon-gen8/regular/landorus-therian.png ../../../app/build/creatures/pokemon-gen8/regular/landorus.png ../../../app/build/creatures/pokemon-gen8/regular/lanturn.png ../../../app/build/creatures/pokemon-gen8/regular/lapras-gmax.png ../../../app/build/creatures/pokemon-gen8/regular/lapras.png ../../../app/build/creatures/pokemon-gen8/regular/larvesta.png ../../../app/build/creatures/pokemon-gen8/regular/larvitar.png ../../../app/build/creatures/pokemon-gen8/regular/latias-mega.png ../../../app/build/creatures/pokemon-gen8/regular/latias.png ../../../app/build/creatures/pokemon-gen8/regular/latios-mega.png ../../../app/build/creatures/pokemon-gen8/regular/latios.png ../../../app/build/creatures/pokemon-gen8/regular/leafeon.png ../../../app/build/creatures/pokemon-gen8/regular/leavanny.png ../../../app/build/creatures/pokemon-gen8/regular/ledian.png ../../../app/build/creatures/pokemon-gen8/regular/ledyba.png ../../../app/build/creatures/pokemon-gen8/regular/lickilicky.png ../../../app/build/creatures/pokemon-gen8/regular/lickitung.png ../../../app/build/creatures/pokemon-gen8/regular/liepard.png ../../../app/build/creatures/pokemon-gen8/regular/lileep.png ../../../app/build/creatures/pokemon-gen8/regular/lilligant.png ../../../app/build/creatures/pokemon-gen8/regular/lillipup.png ../../../app/build/creatures/pokemon-gen8/regular/linoone-galar.png ../../../app/build/creatures/pokemon-gen8/regular/linoone.png ../../../app/build/creatures/pokemon-gen8/regular/litleo.png ../../../app/build/creatures/pokemon-gen8/regular/litten.png ../../../app/build/creatures/pokemon-gen8/regular/litwick.png ../../../app/build/creatures/pokemon-gen8/regular/lombre.png ../../../app/build/creatures/pokemon-gen8/regular/lopunny-mega.png ../../../app/build/creatures/pokemon-gen8/regular/lopunny.png ../../../app/build/creatures/pokemon-gen8/regular/lotad.png ../../../app/build/creatures/pokemon-gen8/regular/loudred.png ../../../app/build/creatures/pokemon-gen8/regular/lucario-mega.png ../../../app/build/creatures/pokemon-gen8/regular/lucario.png ../../../app/build/creatures/pokemon-gen8/regular/ludicolo.png ../../../app/build/creatures/pokemon-gen8/regular/lugia-shadow.png ../../../app/build/creatures/pokemon-gen8/regular/lugia.png ../../../app/build/creatures/pokemon-gen8/regular/lumineon.png ../../../app/build/creatures/pokemon-gen8/regular/lunala.png ../../../app/build/creatures/pokemon-gen8/regular/lunatone.png ../../../app/build/creatures/pokemon-gen8/regular/lurantis.png ../../../app/build/creatures/pokemon-gen8/regular/luvdisc.png ../../../app/build/creatures/pokemon-gen8/regular/luxio.png ../../../app/build/creatures/pokemon-gen8/regular/luxray.png ../../../app/build/creatures/pokemon-gen8/regular/lycanroc-dusk.png ../../../app/build/creatures/pokemon-gen8/regular/lycanroc-midnight.png ../../../app/build/creatures/pokemon-gen8/regular/lycanroc.png ../../../app/build/creatures/pokemon-gen8/regular/machamp-gmax.png ../../../app/build/creatures/pokemon-gen8/regular/machamp.png ../../../app/build/creatures/pokemon-gen8/regular/machoke.png ../../../app/build/creatures/pokemon-gen8/regular/machop.png ../../../app/build/creatures/pokemon-gen8/regular/magby.png ../../../app/build/creatures/pokemon-gen8/regular/magcargo.png ../../../app/build/creatures/pokemon-gen8/regular/magearna-original.png ../../../app/build/creatures/pokemon-gen8/regular/magearna.png ../../../app/build/creatures/pokemon-gen8/regular/magikarp.png ../../../app/build/creatures/pokemon-gen8/regular/magmar.png ../../../app/build/creatures/pokemon-gen8/regular/magmortar.png ../../../app/build/creatures/pokemon-gen8/regular/magnemite.png ../../../app/build/creatures/pokemon-gen8/regular/magneton.png ../../../app/build/creatures/pokemon-gen8/regular/magnezone.png ../../../app/build/creatures/pokemon-gen8/regular/makuhita.png ../../../app/build/creatures/pokemon-gen8/regular/malamar.png ../../../app/build/creatures/pokemon-gen8/regular/mamoswine.png ../../../app/build/creatures/pokemon-gen8/regular/manaphy.png ../../../app/build/creatures/pokemon-gen8/regular/mandibuzz.png ../../../app/build/creatures/pokemon-gen8/regular/manectric-mega.png ../../../app/build/creatures/pokemon-gen8/regular/manectric.png ../../../app/build/creatures/pokemon-gen8/regular/mankey.png ../../../app/build/creatures/pokemon-gen8/regular/mantine.png ../../../app/build/creatures/pokemon-gen8/regular/mantyke.png ../../../app/build/creatures/pokemon-gen8/regular/maractus.png ../../../app/build/creatures/pokemon-gen8/regular/mareanie.png ../../../app/build/creatures/pokemon-gen8/regular/mareep.png ../../../app/build/creatures/pokemon-gen8/regular/marill.png ../../../app/build/creatures/pokemon-gen8/regular/marowak-alola.png ../../../app/build/creatures/pokemon-gen8/regular/marowak.png ../../../app/build/creatures/pokemon-gen8/regular/marshadow-gen7.png ../../../app/build/creatures/pokemon-gen8/regular/marshadow.png ../../../app/build/creatures/pokemon-gen8/regular/marshtomp.png ../../../app/build/creatures/pokemon-gen8/regular/masquerain.png ../../../app/build/creatures/pokemon-gen8/regular/mawile-mega.png ../../../app/build/creatures/pokemon-gen8/regular/mawile.png ../../../app/build/creatures/pokemon-gen8/regular/medicham-mega.png ../../../app/build/creatures/pokemon-gen8/regular/medicham.png ../../../app/build/creatures/pokemon-gen8/regular/meditite.png ../../../app/build/creatures/pokemon-gen8/regular/meganium.png ../../../app/build/creatures/pokemon-gen8/regular/melmetal-gmax.png ../../../app/build/creatures/pokemon-gen8/regular/melmetal.png ../../../app/build/creatures/pokemon-gen8/regular/meloetta-pirouette.png ../../../app/build/creatures/pokemon-gen8/regular/meloetta.png ../../../app/build/creatures/pokemon-gen8/regular/meltan.png ../../../app/build/creatures/pokemon-gen8/regular/meowstic.png ../../../app/build/creatures/pokemon-gen8/regular/meowth-alola.png ../../../app/build/creatures/pokemon-gen8/regular/meowth-galar.png ../../../app/build/creatures/pokemon-gen8/regular/meowth-gmax.png ../../../app/build/creatures/pokemon-gen8/regular/meowth.png ../../../app/build/creatures/pokemon-gen8/regular/mesprit.png ../../../app/build/creatures/pokemon-gen8/regular/metagross-mega.png ../../../app/build/creatures/pokemon-gen8/regular/metagross.png ../../../app/build/creatures/pokemon-gen8/regular/metang.png ../../../app/build/creatures/pokemon-gen8/regular/metapod.png ../../../app/build/creatures/pokemon-gen8/regular/mew.png ../../../app/build/creatures/pokemon-gen8/regular/mewtwo-mega-x.png ../../../app/build/creatures/pokemon-gen8/regular/mewtwo-mega-y.png ../../../app/build/creatures/pokemon-gen8/regular/mewtwo.png ../../../app/build/creatures/pokemon-gen8/regular/mienfoo.png ../../../app/build/creatures/pokemon-gen8/regular/mienshao.png ../../../app/build/creatures/pokemon-gen8/regular/mightyena.png ../../../app/build/creatures/pokemon-gen8/regular/milcery.png ../../../app/build/creatures/pokemon-gen8/regular/milotic.png ../../../app/build/creatures/pokemon-gen8/regular/miltank.png ../../../app/build/creatures/pokemon-gen8/regular/mime-jr.png ../../../app/build/creatures/pokemon-gen8/regular/mimikyu.png ../../../app/build/creatures/pokemon-gen8/regular/minccino.png ../../../app/build/creatures/pokemon-gen8/regular/minior-blue-gen7.png ../../../app/build/creatures/pokemon-gen8/regular/minior-blue.png ../../../app/build/creatures/pokemon-gen8/regular/minior-green-gen7.png ../../../app/build/creatures/pokemon-gen8/regular/minior-green.png ../../../app/build/creatures/pokemon-gen8/regular/minior-indigo-gen7.png ../../../app/build/creatures/pokemon-gen8/regular/minior-indigo.png ../../../app/build/creatures/pokemon-gen8/regular/minior-orange-gen7.png ../../../app/build/creatures/pokemon-gen8/regular/minior-orange.png ../../../app/build/creatures/pokemon-gen8/regular/minior-red-gen7.png ../../../app/build/creatures/pokemon-gen8/regular/minior-red.png ../../../app/build/creatures/pokemon-gen8/regular/minior-violet-gen7.png ../../../app/build/creatures/pokemon-gen8/regular/minior-violet.png ../../../app/build/creatures/pokemon-gen8/regular/minior-yellow-gen7.png ../../../app/build/creatures/pokemon-gen8/regular/minior-yellow.png ../../../app/build/creatures/pokemon-gen8/regular/minior.png ../../../app/build/creatures/pokemon-gen8/regular/minun.png ../../../app/build/creatures/pokemon-gen8/regular/misdreavus.png ../../../app/build/creatures/pokemon-gen8/regular/mismagius.png ../../../app/build/creatures/pokemon-gen8/regular/moltres-galar.png ../../../app/build/creatures/pokemon-gen8/regular/moltres.png ../../../app/build/creatures/pokemon-gen8/regular/monferno.png ../../../app/build/creatures/pokemon-gen8/regular/morelull.png ../../../app/build/creatures/pokemon-gen8/regular/morgrem.png ../../../app/build/creatures/pokemon-gen8/regular/morpeko-hangry.png ../../../app/build/creatures/pokemon-gen8/regular/morpeko.png ../../../app/build/creatures/pokemon-gen8/regular/mothim.png ../../../app/build/creatures/pokemon-gen8/regular/mr-mime-galar.png ../../../app/build/creatures/pokemon-gen8/regular/mr-mime.png ../../../app/build/creatures/pokemon-gen8/regular/mr-rime.png ../../../app/build/creatures/pokemon-gen8/regular/mudbray.png ../../../app/build/creatures/pokemon-gen8/regular/mudkip.png ../../../app/build/creatures/pokemon-gen8/regular/mudsdale.png ../../../app/build/creatures/pokemon-gen8/regular/muk-alola.png ../../../app/build/creatures/pokemon-gen8/regular/muk.png ../../../app/build/creatures/pokemon-gen8/regular/munchlax.png ../../../app/build/creatures/pokemon-gen8/regular/munna.png ../../../app/build/creatures/pokemon-gen8/regular/murkrow.png ../../../app/build/creatures/pokemon-gen8/regular/musharna.png ../../../app/build/creatures/pokemon-gen8/regular/naganadel.png ../../../app/build/creatures/pokemon-gen8/regular/natu.png ../../../app/build/creatures/pokemon-gen8/regular/necrozma-dawn.png ../../../app/build/creatures/pokemon-gen8/regular/necrozma-dusk.png ../../../app/build/creatures/pokemon-gen8/regular/necrozma-ultra.png ../../../app/build/creatures/pokemon-gen8/regular/necrozma.png ../../../app/build/creatures/pokemon-gen8/regular/nickit.png ../../../app/build/creatures/pokemon-gen8/regular/nidoking.png ../../../app/build/creatures/pokemon-gen8/regular/nidoqueen.png ../../../app/build/creatures/pokemon-gen8/regular/nidoran-f.png ../../../app/build/creatures/pokemon-gen8/regular/nidoran-m.png ../../../app/build/creatures/pokemon-gen8/regular/nidorina.png ../../../app/build/creatures/pokemon-gen8/regular/nidorino.png ../../../app/build/creatures/pokemon-gen8/regular/nihilego.png ../../../app/build/creatures/pokemon-gen8/regular/nincada.png ../../../app/build/creatures/pokemon-gen8/regular/ninetales-alola.png ../../../app/build/creatures/pokemon-gen8/regular/ninetales.png ../../../app/build/creatures/pokemon-gen8/regular/ninjask.png ../../../app/build/creatures/pokemon-gen8/regular/noctowl.png ../../../app/build/creatures/pokemon-gen8/regular/noibat.png ../../../app/build/creatures/pokemon-gen8/regular/noivern.png ../../../app/build/creatures/pokemon-gen8/regular/nosepass.png ../../../app/build/creatures/pokemon-gen8/regular/numel.png ../../../app/build/creatures/pokemon-gen8/regular/nuzleaf.png ../../../app/build/creatures/pokemon-gen8/regular/obstagoon.png ../../../app/build/creatures/pokemon-gen8/regular/octillery.png ../../../app/build/creatures/pokemon-gen8/regular/oddish.png ../../../app/build/creatures/pokemon-gen8/regular/omanyte.png ../../../app/build/creatures/pokemon-gen8/regular/omastar.png ../../../app/build/creatures/pokemon-gen8/regular/onix.png ../../../app/build/creatures/pokemon-gen8/regular/oranguru.png ../../../app/build/creatures/pokemon-gen8/regular/orbeetle-gmax.png ../../../app/build/creatures/pokemon-gen8/regular/orbeetle.png ../../../app/build/creatures/pokemon-gen8/regular/oricorio-pau.png ../../../app/build/creatures/pokemon-gen8/regular/oricorio-pom-pom.png ../../../app/build/creatures/pokemon-gen8/regular/oricorio-sensu.png ../../../app/build/creatures/pokemon-gen8/regular/oricorio.png ../../../app/build/creatures/pokemon-gen8/regular/oshawott.png ../../../app/build/creatures/pokemon-gen8/regular/pachirisu.png ../../../app/build/creatures/pokemon-gen8/regular/palkia.png ../../../app/build/creatures/pokemon-gen8/regular/palossand.png ../../../app/build/creatures/pokemon-gen8/regular/palpitoad.png ../../../app/build/creatures/pokemon-gen8/regular/pancham.png ../../../app/build/creatures/pokemon-gen8/regular/pangoro.png ../../../app/build/creatures/pokemon-gen8/regular/panpour.png ../../../app/build/creatures/pokemon-gen8/regular/pansage.png ../../../app/build/creatures/pokemon-gen8/regular/pansear.png ../../../app/build/creatures/pokemon-gen8/regular/paras.png ../../../app/build/creatures/pokemon-gen8/regular/parasect.png ../../../app/build/creatures/pokemon-gen8/regular/passimian.png ../../../app/build/creatures/pokemon-gen8/regular/patrat.png ../../../app/build/creatures/pokemon-gen8/regular/pawniard.png ../../../app/build/creatures/pokemon-gen8/regular/pelipper.png ../../../app/build/creatures/pokemon-gen8/regular/perrserker.png ../../../app/build/creatures/pokemon-gen8/regular/persian-alola.png ../../../app/build/creatures/pokemon-gen8/regular/persian.png ../../../app/build/creatures/pokemon-gen8/regular/petilil.png ../../../app/build/creatures/pokemon-gen8/regular/phanpy.png ../../../app/build/creatures/pokemon-gen8/regular/phantump.png ../../../app/build/creatures/pokemon-gen8/regular/pheromosa.png ../../../app/build/creatures/pokemon-gen8/regular/phione.png ../../../app/build/creatures/pokemon-gen8/regular/pichu-spiky-eared.png ../../../app/build/creatures/pokemon-gen8/regular/pichu.png ../../../app/build/creatures/pokemon-gen8/regular/pidgeot-mega.png ../../../app/build/creatures/pokemon-gen8/regular/pidgeot.png ../../../app/build/creatures/pokemon-gen8/regular/pidgeotto.png ../../../app/build/creatures/pokemon-gen8/regular/pidgey.png ../../../app/build/creatures/pokemon-gen8/regular/pidove.png ../../../app/build/creatures/pokemon-gen8/regular/pignite.png ../../../app/build/creatures/pokemon-gen8/regular/pikachu-alola-cap.png ../../../app/build/creatures/pokemon-gen8/regular/pikachu-belle.png ../../../app/build/creatures/pokemon-gen8/regular/pikachu-cosplay.png ../../../app/build/creatures/pokemon-gen8/regular/pikachu-gmax.png ../../../app/build/creatures/pokemon-gen8/regular/pikachu-hoenn-cap.png ../../../app/build/creatures/pokemon-gen8/regular/pikachu-kalos-cap.png ../../../app/build/creatures/pokemon-gen8/regular/pikachu-libre.png ../../../app/build/creatures/pokemon-gen8/regular/pikachu-original-cap.png ../../../app/build/creatures/pokemon-gen8/regular/pikachu-partner-cap.png ../../../app/build/creatures/pokemon-gen8/regular/pikachu-phd.png ../../../app/build/creatures/pokemon-gen8/regular/pikachu-pop-star.png ../../../app/build/creatures/pokemon-gen8/regular/pikachu-rock-star.png ../../../app/build/creatures/pokemon-gen8/regular/pikachu-sinnoh-cap.png ../../../app/build/creatures/pokemon-gen8/regular/pikachu-starter.png ../../../app/build/creatures/pokemon-gen8/regular/pikachu-unova-cap.png ../../../app/build/creatures/pokemon-gen8/regular/pikachu-world-cap.png ../../../app/build/creatures/pokemon-gen8/regular/pikachu.png ../../../app/build/creatures/pokemon-gen8/regular/pikipek.png ../../../app/build/creatures/pokemon-gen8/regular/piloswine.png ../../../app/build/creatures/pokemon-gen8/regular/pincurchin.png ../../../app/build/creatures/pokemon-gen8/regular/pineco.png ../../../app/build/creatures/pokemon-gen8/regular/pinsir-mega.png ../../../app/build/creatures/pokemon-gen8/regular/pinsir.png ../../../app/build/creatures/pokemon-gen8/regular/piplup.png ../../../app/build/creatures/pokemon-gen8/regular/plusle.png ../../../app/build/creatures/pokemon-gen8/regular/poipole.png ../../../app/build/creatures/pokemon-gen8/regular/politoed.png ../../../app/build/creatures/pokemon-gen8/regular/poliwag.png ../../../app/build/creatures/pokemon-gen8/regular/poliwhirl.png ../../../app/build/creatures/pokemon-gen8/regular/poliwrath.png ../../../app/build/creatures/pokemon-gen8/regular/polteageist.png ../../../app/build/creatures/pokemon-gen8/regular/ponyta-galar.png ../../../app/build/creatures/pokemon-gen8/regular/ponyta.png ../../../app/build/creatures/pokemon-gen8/regular/poochyena.png ../../../app/build/creatures/pokemon-gen8/regular/popplio.png ../../../app/build/creatures/pokemon-gen8/regular/porygon-z.png ../../../app/build/creatures/pokemon-gen8/regular/porygon.png ../../../app/build/creatures/pokemon-gen8/regular/porygon2.png ../../../app/build/creatures/pokemon-gen8/regular/primarina.png ../../../app/build/creatures/pokemon-gen8/regular/primeape.png ../../../app/build/creatures/pokemon-gen8/regular/prinplup.png ../../../app/build/creatures/pokemon-gen8/regular/probopass.png ../../../app/build/creatures/pokemon-gen8/regular/psyduck.png ../../../app/build/creatures/pokemon-gen8/regular/pumpkaboo-large.png ../../../app/build/creatures/pokemon-gen8/regular/pumpkaboo-small.png ../../../app/build/creatures/pokemon-gen8/regular/pumpkaboo-super.png ../../../app/build/creatures/pokemon-gen8/regular/pumpkaboo.png ../../../app/build/creatures/pokemon-gen8/regular/pupitar.png ../../../app/build/creatures/pokemon-gen8/regular/purrloin.png ../../../app/build/creatures/pokemon-gen8/regular/purugly.png ../../../app/build/creatures/pokemon-gen8/regular/pyroar.png ../../../app/build/creatures/pokemon-gen8/regular/pyukumuku.png ../../../app/build/creatures/pokemon-gen8/regular/quagsire.png ../../../app/build/creatures/pokemon-gen8/regular/quilava.png ../../../app/build/creatures/pokemon-gen8/regular/quilladin.png ../../../app/build/creatures/pokemon-gen8/regular/qwilfish.png ../../../app/build/creatures/pokemon-gen8/regular/raboot.png ../../../app/build/creatures/pokemon-gen8/regular/raichu-alola.png ../../../app/build/creatures/pokemon-gen8/regular/raichu.png ../../../app/build/creatures/pokemon-gen8/regular/raikou.png ../../../app/build/creatures/pokemon-gen8/regular/ralts.png ../../../app/build/creatures/pokemon-gen8/regular/rampardos.png ../../../app/build/creatures/pokemon-gen8/regular/rapidash-galar.png ../../../app/build/creatures/pokemon-gen8/regular/rapidash.png ../../../app/build/creatures/pokemon-gen8/regular/raticate-alola.png ../../../app/build/creatures/pokemon-gen8/regular/raticate.png ../../../app/build/creatures/pokemon-gen8/regular/rattata-alola.png ../../../app/build/creatures/pokemon-gen8/regular/rattata.png ../../../app/build/creatures/pokemon-gen8/regular/rayquaza-mega.png ../../../app/build/creatures/pokemon-gen8/regular/rayquaza.png ../../../app/build/creatures/pokemon-gen8/regular/regice.png ../../../app/build/creatures/pokemon-gen8/regular/regidrago.png ../../../app/build/creatures/pokemon-gen8/regular/regieleki.png ../../../app/build/creatures/pokemon-gen8/regular/regigigas.png ../../../app/build/creatures/pokemon-gen8/regular/regirock.png ../../../app/build/creatures/pokemon-gen8/regular/registeel.png ../../../app/build/creatures/pokemon-gen8/regular/relicanth.png ../../../app/build/creatures/pokemon-gen8/regular/remoraid.png ../../../app/build/creatures/pokemon-gen8/regular/reshiram.png ../../../app/build/creatures/pokemon-gen8/regular/reuniclus.png ../../../app/build/creatures/pokemon-gen8/regular/rhydon.png ../../../app/build/creatures/pokemon-gen8/regular/rhyhorn.png ../../../app/build/creatures/pokemon-gen8/regular/rhyperior.png ../../../app/build/creatures/pokemon-gen8/regular/ribombee.png ../../../app/build/creatures/pokemon-gen8/regular/rillaboom-gmax.png ../../../app/build/creatures/pokemon-gen8/regular/rillaboom.png ../../../app/build/creatures/pokemon-gen8/regular/riolu.png ../../../app/build/creatures/pokemon-gen8/regular/rockruff.png ../../../app/build/creatures/pokemon-gen8/regular/roggenrola.png ../../../app/build/creatures/pokemon-gen8/regular/rolycoly.png ../../../app/build/creatures/pokemon-gen8/regular/rookidee.png ../../../app/build/creatures/pokemon-gen8/regular/roselia.png ../../../app/build/creatures/pokemon-gen8/regular/roserade.png ../../../app/build/creatures/pokemon-gen8/regular/rotom-fan.png ../../../app/build/creatures/pokemon-gen8/regular/rotom-frost.png ../../../app/build/creatures/pokemon-gen8/regular/rotom-heat.png ../../../app/build/creatures/pokemon-gen8/regular/rotom-mow.png ../../../app/build/creatures/pokemon-gen8/regular/rotom-wash.png ../../../app/build/creatures/pokemon-gen8/regular/rotom.png ../../../app/build/creatures/pokemon-gen8/regular/rowlet.png ../../../app/build/creatures/pokemon-gen8/regular/rufflet.png ../../../app/build/creatures/pokemon-gen8/regular/runerigus.png ../../../app/build/creatures/pokemon-gen8/regular/sableye-mega.png ../../../app/build/creatures/pokemon-gen8/regular/sableye.png ../../../app/build/creatures/pokemon-gen8/regular/salamence-mega.png ../../../app/build/creatures/pokemon-gen8/regular/salamence.png ../../../app/build/creatures/pokemon-gen8/regular/salandit.png ../../../app/build/creatures/pokemon-gen8/regular/salazzle.png ../../../app/build/creatures/pokemon-gen8/regular/samurott.png ../../../app/build/creatures/pokemon-gen8/regular/sandaconda-gmax.png ../../../app/build/creatures/pokemon-gen8/regular/sandaconda.png ../../../app/build/creatures/pokemon-gen8/regular/sandile.png ../../../app/build/creatures/pokemon-gen8/regular/sandshrew-alola.png ../../../app/build/creatures/pokemon-gen8/regular/sandshrew.png ../../../app/build/creatures/pokemon-gen8/regular/sandslash-alola.png ../../../app/build/creatures/pokemon-gen8/regular/sandslash.png ../../../app/build/creatures/pokemon-gen8/regular/sandygast.png ../../../app/build/creatures/pokemon-gen8/regular/sawk.png ../../../app/build/creatures/pokemon-gen8/regular/sawsbuck-autumn.png ../../../app/build/creatures/pokemon-gen8/regular/sawsbuck-summer.png ../../../app/build/creatures/pokemon-gen8/regular/sawsbuck-winter.png ../../../app/build/creatures/pokemon-gen8/regular/sawsbuck.png ../../../app/build/creatures/pokemon-gen8/regular/scatterbug.png ../../../app/build/creatures/pokemon-gen8/regular/sceptile-mega.png ../../../app/build/creatures/pokemon-gen8/regular/sceptile.png ../../../app/build/creatures/pokemon-gen8/regular/scizor-mega.png ../../../app/build/creatures/pokemon-gen8/regular/scizor.png ../../../app/build/creatures/pokemon-gen8/regular/scolipede.png ../../../app/build/creatures/pokemon-gen8/regular/scorbunny.png ../../../app/build/creatures/pokemon-gen8/regular/scrafty.png ../../../app/build/creatures/pokemon-gen8/regular/scraggy.png ../../../app/build/creatures/pokemon-gen8/regular/scyther.png ../../../app/build/creatures/pokemon-gen8/regular/seadra.png ../../../app/build/creatures/pokemon-gen8/regular/seaking.png ../../../app/build/creatures/pokemon-gen8/regular/sealeo.png ../../../app/build/creatures/pokemon-gen8/regular/seedot.png ../../../app/build/creatures/pokemon-gen8/regular/seel.png ../../../app/build/creatures/pokemon-gen8/regular/seismitoad.png ../../../app/build/creatures/pokemon-gen8/regular/sentret.png ../../../app/build/creatures/pokemon-gen8/regular/serperior.png ../../../app/build/creatures/pokemon-gen8/regular/servine.png ../../../app/build/creatures/pokemon-gen8/regular/seviper.png ../../../app/build/creatures/pokemon-gen8/regular/sewaddle.png ../../../app/build/creatures/pokemon-gen8/regular/sharpedo-mega.png ../../../app/build/creatures/pokemon-gen8/regular/sharpedo.png ../../../app/build/creatures/pokemon-gen8/regular/shaymin-sky.png ../../../app/build/creatures/pokemon-gen8/regular/shaymin.png ../../../app/build/creatures/pokemon-gen8/regular/shedinja.png ../../../app/build/creatures/pokemon-gen8/regular/shelgon.png ../../../app/build/creatures/pokemon-gen8/regular/shellder.png ../../../app/build/creatures/pokemon-gen8/regular/shellos-east.png ../../../app/build/creatures/pokemon-gen8/regular/shellos.png ../../../app/build/creatures/pokemon-gen8/regular/shelmet.png ../../../app/build/creatures/pokemon-gen8/regular/shieldon.png ../../../app/build/creatures/pokemon-gen8/regular/shiftry.png ../../../app/build/creatures/pokemon-gen8/regular/shiinotic.png ../../../app/build/creatures/pokemon-gen8/regular/shinx.png ../../../app/build/creatures/pokemon-gen8/regular/shroomish.png ../../../app/build/creatures/pokemon-gen8/regular/shuckle.png ../../../app/build/creatures/pokemon-gen8/regular/shuppet.png ../../../app/build/creatures/pokemon-gen8/regular/sigilyph.png ../../../app/build/creatures/pokemon-gen8/regular/silcoon.png ../../../app/build/creatures/pokemon-gen8/regular/silicobra.png ../../../app/build/creatures/pokemon-gen8/regular/silvally-bug.png ../../../app/build/creatures/pokemon-gen8/regular/silvally-dark.png ../../../app/build/creatures/pokemon-gen8/regular/silvally-dragon.png ../../../app/build/creatures/pokemon-gen8/regular/silvally-electric.png ../../../app/build/creatures/pokemon-gen8/regular/silvally-fairy.png ../../../app/build/creatures/pokemon-gen8/regular/silvally-fighting.png ../../../app/build/creatures/pokemon-gen8/regular/silvally-fire.png ../../../app/build/creatures/pokemon-gen8/regular/silvally-flying.png ../../../app/build/creatures/pokemon-gen8/regular/silvally-ghost.png ../../../app/build/creatures/pokemon-gen8/regular/silvally-grass.png ../../../app/build/creatures/pokemon-gen8/regular/silvally-ground.png ../../../app/build/creatures/pokemon-gen8/regular/silvally-ice.png ../../../app/build/creatures/pokemon-gen8/regular/silvally-poison.png ../../../app/build/creatures/pokemon-gen8/regular/silvally-psychic.png ../../../app/build/creatures/pokemon-gen8/regular/silvally-rock.png ../../../app/build/creatures/pokemon-gen8/regular/silvally-steel.png ../../../app/build/creatures/pokemon-gen8/regular/silvally-water.png ../../../app/build/creatures/pokemon-gen8/regular/silvally.png ../../../app/build/creatures/pokemon-gen8/regular/simipour.png ../../../app/build/creatures/pokemon-gen8/regular/simisage.png ../../../app/build/creatures/pokemon-gen8/regular/simisear.png ../../../app/build/creatures/pokemon-gen8/regular/sinistea.png ../../../app/build/creatures/pokemon-gen8/regular/sirfetchd.png ../../../app/build/creatures/pokemon-gen8/regular/sizzlipede.png ../../../app/build/creatures/pokemon-gen8/regular/skarmory.png ../../../app/build/creatures/pokemon-gen8/regular/skiddo.png ../../../app/build/creatures/pokemon-gen8/regular/skiploom.png ../../../app/build/creatures/pokemon-gen8/regular/skitty.png ../../../app/build/creatures/pokemon-gen8/regular/skorupi.png ../../../app/build/creatures/pokemon-gen8/regular/skrelp.png ../../../app/build/creatures/pokemon-gen8/regular/skuntank.png ../../../app/build/creatures/pokemon-gen8/regular/skwovet.png ../../../app/build/creatures/pokemon-gen8/regular/slaking.png ../../../app/build/creatures/pokemon-gen8/regular/slakoth.png ../../../app/build/creatures/pokemon-gen8/regular/sliggoo.png ../../../app/build/creatures/pokemon-gen8/regular/slowbro-galar.png ../../../app/build/creatures/pokemon-gen8/regular/slowbro-mega.png ../../../app/build/creatures/pokemon-gen8/regular/slowbro.png ../../../app/build/creatures/pokemon-gen8/regular/slowking-galar.png ../../../app/build/creatures/pokemon-gen8/regular/slowking.png ../../../app/build/creatures/pokemon-gen8/regular/slowpoke-galar.png ../../../app/build/creatures/pokemon-gen8/regular/slowpoke.png ../../../app/build/creatures/pokemon-gen8/regular/slugma.png ../../../app/build/creatures/pokemon-gen8/regular/slurpuff.png ../../../app/build/creatures/pokemon-gen8/regular/smeargle.png ../../../app/build/creatures/pokemon-gen8/regular/smoochum.png ../../../app/build/creatures/pokemon-gen8/regular/sneasel.png ../../../app/build/creatures/pokemon-gen8/regular/snivy.png ../../../app/build/creatures/pokemon-gen8/regular/snom.png ../../../app/build/creatures/pokemon-gen8/regular/snorlax-gmax.png ../../../app/build/creatures/pokemon-gen8/regular/snorlax.png ../../../app/build/creatures/pokemon-gen8/regular/snorunt.png ../../../app/build/creatures/pokemon-gen8/regular/snover.png ../../../app/build/creatures/pokemon-gen8/regular/snubbull.png ../../../app/build/creatures/pokemon-gen8/regular/sobble.png ../../../app/build/creatures/pokemon-gen8/regular/solgaleo.png ../../../app/build/creatures/pokemon-gen8/regular/solosis.png ../../../app/build/creatures/pokemon-gen8/regular/solrock.png ../../../app/build/creatures/pokemon-gen8/regular/spearow.png ../../../app/build/creatures/pokemon-gen8/regular/spectrier.png ../../../app/build/creatures/pokemon-gen8/regular/spewpa.png ../../../app/build/creatures/pokemon-gen8/regular/spheal.png ../../../app/build/creatures/pokemon-gen8/regular/spinarak.png ../../../app/build/creatures/pokemon-gen8/regular/spinda-blank.png ../../../app/build/creatures/pokemon-gen8/regular/spinda-filled.png ../../../app/build/creatures/pokemon-gen8/regular/spinda.png ../../../app/build/creatures/pokemon-gen8/regular/spiritomb.png ../../../app/build/creatures/pokemon-gen8/regular/spoink.png ../../../app/build/creatures/pokemon-gen8/regular/spritzee.png ../../../app/build/creatures/pokemon-gen8/regular/squirtle.png ../../../app/build/creatures/pokemon-gen8/regular/stakataka.png ../../../app/build/creatures/pokemon-gen8/regular/stantler.png ../../../app/build/creatures/pokemon-gen8/regular/staraptor.png ../../../app/build/creatures/pokemon-gen8/regular/staravia.png ../../../app/build/creatures/pokemon-gen8/regular/starly.png ../../../app/build/creatures/pokemon-gen8/regular/starmie.png ../../../app/build/creatures/pokemon-gen8/regular/staryu.png ../../../app/build/creatures/pokemon-gen8/regular/steelix-mega.png ../../../app/build/creatures/pokemon-gen8/regular/steelix.png ../../../app/build/creatures/pokemon-gen8/regular/steenee.png ../../../app/build/creatures/pokemon-gen8/regular/stonjourner.png ../../../app/build/creatures/pokemon-gen8/regular/stoutland.png ../../../app/build/creatures/pokemon-gen8/regular/stufful.png ../../../app/build/creatures/pokemon-gen8/regular/stunfisk-galar.png ../../../app/build/creatures/pokemon-gen8/regular/stunfisk.png ../../../app/build/creatures/pokemon-gen8/regular/stunky.png ../../../app/build/creatures/pokemon-gen8/regular/sudowoodo.png ../../../app/build/creatures/pokemon-gen8/regular/suicune.png ../../../app/build/creatures/pokemon-gen8/regular/sunflora.png ../../../app/build/creatures/pokemon-gen8/regular/sunkern.png ../../../app/build/creatures/pokemon-gen8/regular/surskit.png ../../../app/build/creatures/pokemon-gen8/regular/swablu.png ../../../app/build/creatures/pokemon-gen8/regular/swadloon.png ../../../app/build/creatures/pokemon-gen8/regular/swalot.png ../../../app/build/creatures/pokemon-gen8/regular/swampert-mega.png ../../../app/build/creatures/pokemon-gen8/regular/swampert.png ../../../app/build/creatures/pokemon-gen8/regular/swanna.png ../../../app/build/creatures/pokemon-gen8/regular/swellow.png ../../../app/build/creatures/pokemon-gen8/regular/swinub.png ../../../app/build/creatures/pokemon-gen8/regular/swirlix.png ../../../app/build/creatures/pokemon-gen8/regular/swoobat.png ../../../app/build/creatures/pokemon-gen8/regular/sylveon.png ../../../app/build/creatures/pokemon-gen8/regular/taillow.png ../../../app/build/creatures/pokemon-gen8/regular/talonflame.png ../../../app/build/creatures/pokemon-gen8/regular/tangela.png ../../../app/build/creatures/pokemon-gen8/regular/tangrowth.png ../../../app/build/creatures/pokemon-gen8/regular/tapu-bulu.png ../../../app/build/creatures/pokemon-gen8/regular/tapu-fini.png ../../../app/build/creatures/pokemon-gen8/regular/tapu-koko.png ../../../app/build/creatures/pokemon-gen8/regular/tapu-lele.png ../../../app/build/creatures/pokemon-gen8/regular/tauros.png ../../../app/build/creatures/pokemon-gen8/regular/teddiursa.png ../../../app/build/creatures/pokemon-gen8/regular/tentacool.png ../../../app/build/creatures/pokemon-gen8/regular/tentacruel.png ../../../app/build/creatures/pokemon-gen8/regular/tepig.png ../../../app/build/creatures/pokemon-gen8/regular/terrakion.png ../../../app/build/creatures/pokemon-gen8/regular/thievul.png ../../../app/build/creatures/pokemon-gen8/regular/throh.png ../../../app/build/creatures/pokemon-gen8/regular/thundurus-therian.png ../../../app/build/creatures/pokemon-gen8/regular/thundurus.png ../../../app/build/creatures/pokemon-gen8/regular/thwackey.png ../../../app/build/creatures/pokemon-gen8/regular/timburr.png ../../../app/build/creatures/pokemon-gen8/regular/tirtouga.png ../../../app/build/creatures/pokemon-gen8/regular/togedemaru.png ../../../app/build/creatures/pokemon-gen8/regular/togekiss.png ../../../app/build/creatures/pokemon-gen8/regular/togepi.png ../../../app/build/creatures/pokemon-gen8/regular/togetic.png ../../../app/build/creatures/pokemon-gen8/regular/torchic.png ../../../app/build/creatures/pokemon-gen8/regular/torkoal.png ../../../app/build/creatures/pokemon-gen8/regular/tornadus-therian.png ../../../app/build/creatures/pokemon-gen8/regular/tornadus.png ../../../app/build/creatures/pokemon-gen8/regular/torracat.png ../../../app/build/creatures/pokemon-gen8/regular/torterra.png ../../../app/build/creatures/pokemon-gen8/regular/totodile.png ../../../app/build/creatures/pokemon-gen8/regular/toucannon.png ../../../app/build/creatures/pokemon-gen8/regular/toxapex.png ../../../app/build/creatures/pokemon-gen8/regular/toxel.png ../../../app/build/creatures/pokemon-gen8/regular/toxicroak.png ../../../app/build/creatures/pokemon-gen8/regular/toxtricity-gmax.png ../../../app/build/creatures/pokemon-gen8/regular/toxtricity-low-key.png ../../../app/build/creatures/pokemon-gen8/regular/toxtricity.png ../../../app/build/creatures/pokemon-gen8/regular/tranquill.png ../../../app/build/creatures/pokemon-gen8/regular/trapinch.png ../../../app/build/creatures/pokemon-gen8/regular/treecko.png ../../../app/build/creatures/pokemon-gen8/regular/trevenant.png ../../../app/build/creatures/pokemon-gen8/regular/tropius.png ../../../app/build/creatures/pokemon-gen8/regular/trubbish.png ../../../app/build/creatures/pokemon-gen8/regular/trumbeak.png ../../../app/build/creatures/pokemon-gen8/regular/tsareena.png ../../../app/build/creatures/pokemon-gen8/regular/turtonator.png ../../../app/build/creatures/pokemon-gen8/regular/turtwig.png ../../../app/build/creatures/pokemon-gen8/regular/tympole.png ../../../app/build/creatures/pokemon-gen8/regular/tynamo.png ../../../app/build/creatures/pokemon-gen8/regular/type-null.png ../../../app/build/creatures/pokemon-gen8/regular/typhlosion.png ../../../app/build/creatures/pokemon-gen8/regular/tyranitar-mega.png ../../../app/build/creatures/pokemon-gen8/regular/tyranitar.png ../../../app/build/creatures/pokemon-gen8/regular/tyrantrum.png ../../../app/build/creatures/pokemon-gen8/regular/tyrogue.png ../../../app/build/creatures/pokemon-gen8/regular/tyrunt.png ../../../app/build/creatures/pokemon-gen8/regular/umbreon.png ../../../app/build/creatures/pokemon-gen8/regular/unfezant.png ../../../app/build/creatures/pokemon-gen8/regular/unown-b.png ../../../app/build/creatures/pokemon-gen8/regular/unown-c.png ../../../app/build/creatures/pokemon-gen8/regular/unown-d.png ../../../app/build/creatures/pokemon-gen8/regular/unown-e.png ../../../app/build/creatures/pokemon-gen8/regular/unown-exclamation.png ../../../app/build/creatures/pokemon-gen8/regular/unown-f.png ../../../app/build/creatures/pokemon-gen8/regular/unown-g.png ../../../app/build/creatures/pokemon-gen8/regular/unown-h.png ../../../app/build/creatures/pokemon-gen8/regular/unown-i.png ../../../app/build/creatures/pokemon-gen8/regular/unown-j.png ../../../app/build/creatures/pokemon-gen8/regular/unown-k.png ../../../app/build/creatures/pokemon-gen8/regular/unown-l.png ../../../app/build/creatures/pokemon-gen8/regular/unown-m.png ../../../app/build/creatures/pokemon-gen8/regular/unown-n.png ../../../app/build/creatures/pokemon-gen8/regular/unown-o.png ../../../app/build/creatures/pokemon-gen8/regular/unown-p.png ../../../app/build/creatures/pokemon-gen8/regular/unown-q.png ../../../app/build/creatures/pokemon-gen8/regular/unown-question.png ../../../app/build/creatures/pokemon-gen8/regular/unown-r.png ../../../app/build/creatures/pokemon-gen8/regular/unown-s.png ../../../app/build/creatures/pokemon-gen8/regular/unown-t.png ../../../app/build/creatures/pokemon-gen8/regular/unown-u.png ../../../app/build/creatures/pokemon-gen8/regular/unown-v.png ../../../app/build/creatures/pokemon-gen8/regular/unown-w.png ../../../app/build/creatures/pokemon-gen8/regular/unown-x.png ../../../app/build/creatures/pokemon-gen8/regular/unown-y.png ../../../app/build/creatures/pokemon-gen8/regular/unown-z.png ../../../app/build/creatures/pokemon-gen8/regular/unown.png ../../../app/build/creatures/pokemon-gen8/regular/ursaring.png ../../../app/build/creatures/pokemon-gen8/regular/urshifu-gmax.png ../../../app/build/creatures/pokemon-gen8/regular/urshifu-rapid-strike-gmax.png ../../../app/build/creatures/pokemon-gen8/regular/urshifu.png ../../../app/build/creatures/pokemon-gen8/regular/uxie.png ../../../app/build/creatures/pokemon-gen8/regular/vanillish.png ../../../app/build/creatures/pokemon-gen8/regular/vanillite.png ../../../app/build/creatures/pokemon-gen8/regular/vanilluxe.png ../../../app/build/creatures/pokemon-gen8/regular/vaporeon.png ../../../app/build/creatures/pokemon-gen8/regular/venipede.png ../../../app/build/creatures/pokemon-gen8/regular/venomoth.png ../../../app/build/creatures/pokemon-gen8/regular/venonat.png ../../../app/build/creatures/pokemon-gen8/regular/venusaur-gmax.png ../../../app/build/creatures/pokemon-gen8/regular/venusaur-mega.png ../../../app/build/creatures/pokemon-gen8/regular/venusaur.png ../../../app/build/creatures/pokemon-gen8/regular/vespiquen.png ../../../app/build/creatures/pokemon-gen8/regular/vibrava.png ../../../app/build/creatures/pokemon-gen8/regular/victini.png ../../../app/build/creatures/pokemon-gen8/regular/victreebel.png ../../../app/build/creatures/pokemon-gen8/regular/vigoroth.png ../../../app/build/creatures/pokemon-gen8/regular/vikavolt.png ../../../app/build/creatures/pokemon-gen8/regular/vileplume.png ../../../app/build/creatures/pokemon-gen8/regular/virizion.png ../../../app/build/creatures/pokemon-gen8/regular/vivillon-archipelago.png ../../../app/build/creatures/pokemon-gen8/regular/vivillon-continental.png ../../../app/build/creatures/pokemon-gen8/regular/vivillon-elegant.png ../../../app/build/creatures/pokemon-gen8/regular/vivillon-fancy.png ../../../app/build/creatures/pokemon-gen8/regular/vivillon-garden.png ../../../app/build/creatures/pokemon-gen8/regular/vivillon-high-plains.png ../../../app/build/creatures/pokemon-gen8/regular/vivillon-icy-snow.png ../../../app/build/creatures/pokemon-gen8/regular/vivillon-jungle.png ../../../app/build/creatures/pokemon-gen8/regular/vivillon-marine.png ../../../app/build/creatures/pokemon-gen8/regular/vivillon-modern.png ../../../app/build/creatures/pokemon-gen8/regular/vivillon-monsoon.png ../../../app/build/creatures/pokemon-gen8/regular/vivillon-ocean.png ../../../app/build/creatures/pokemon-gen8/regular/vivillon-poke-ball.png ../../../app/build/creatures/pokemon-gen8/regular/vivillon-polar.png ../../../app/build/creatures/pokemon-gen8/regular/vivillon-river.png ../../../app/build/creatures/pokemon-gen8/regular/vivillon-sandstorm.png ../../../app/build/creatures/pokemon-gen8/regular/vivillon-savanna.png ../../../app/build/creatures/pokemon-gen8/regular/vivillon-sun.png ../../../app/build/creatures/pokemon-gen8/regular/vivillon-tundra.png ../../../app/build/creatures/pokemon-gen8/regular/vivillon.png ../../../app/build/creatures/pokemon-gen8/regular/volbeat.png ../../../app/build/creatures/pokemon-gen8/regular/volcanion.png ../../../app/build/creatures/pokemon-gen8/regular/volcarona.png ../../../app/build/creatures/pokemon-gen8/regular/voltorb.png ../../../app/build/creatures/pokemon-gen8/regular/vullaby.png ../../../app/build/creatures/pokemon-gen8/regular/vulpix-alola.png ../../../app/build/creatures/pokemon-gen8/regular/vulpix.png ../../../app/build/creatures/pokemon-gen8/regular/wailmer.png ../../../app/build/creatures/pokemon-gen8/regular/wailord.png ../../../app/build/creatures/pokemon-gen8/regular/walrein.png ../../../app/build/creatures/pokemon-gen8/regular/wartortle.png ../../../app/build/creatures/pokemon-gen8/regular/watchog.png ../../../app/build/creatures/pokemon-gen8/regular/weavile.png ../../../app/build/creatures/pokemon-gen8/regular/weedle.png ../../../app/build/creatures/pokemon-gen8/regular/weepinbell.png ../../../app/build/creatures/pokemon-gen8/regular/weezing-galar.png ../../../app/build/creatures/pokemon-gen8/regular/weezing.png ../../../app/build/creatures/pokemon-gen8/regular/whimsicott.png ../../../app/build/creatures/pokemon-gen8/regular/whirlipede.png ../../../app/build/creatures/pokemon-gen8/regular/whiscash.png ../../../app/build/creatures/pokemon-gen8/regular/whismur.png ../../../app/build/creatures/pokemon-gen8/regular/wigglytuff.png ../../../app/build/creatures/pokemon-gen8/regular/wimpod.png ../../../app/build/creatures/pokemon-gen8/regular/wingull.png ../../../app/build/creatures/pokemon-gen8/regular/wishiwashi-school.png ../../../app/build/creatures/pokemon-gen8/regular/wishiwashi.png ../../../app/build/creatures/pokemon-gen8/regular/wobbuffet.png ../../../app/build/creatures/pokemon-gen8/regular/woobat.png ../../../app/build/creatures/pokemon-gen8/regular/wooloo.png ../../../app/build/creatures/pokemon-gen8/regular/wooper.png ../../../app/build/creatures/pokemon-gen8/regular/wormadam-sandy.png ../../../app/build/creatures/pokemon-gen8/regular/wormadam-trash.png ../../../app/build/creatures/pokemon-gen8/regular/wormadam.png ../../../app/build/creatures/pokemon-gen8/regular/wurmple.png ../../../app/build/creatures/pokemon-gen8/regular/wynaut.png ../../../app/build/creatures/pokemon-gen8/regular/xatu.png ../../../app/build/creatures/pokemon-gen8/regular/xerneas-active.png ../../../app/build/creatures/pokemon-gen8/regular/xerneas.png ../../../app/build/creatures/pokemon-gen8/regular/xurkitree.png ../../../app/build/creatures/pokemon-gen8/regular/yamask-galar.png ../../../app/build/creatures/pokemon-gen8/regular/yamask.png ../../../app/build/creatures/pokemon-gen8/regular/yamper.png ../../../app/build/creatures/pokemon-gen8/regular/yanma.png ../../../app/build/creatures/pokemon-gen8/regular/yanmega.png ../../../app/build/creatures/pokemon-gen8/regular/yungoos.png ../../../app/build/creatures/pokemon-gen8/regular/yveltal.png ../../../app/build/creatures/pokemon-gen8/regular/zacian-crowned.png ../../../app/build/creatures/pokemon-gen8/regular/zacian.png ../../../app/build/creatures/pokemon-gen8/regular/zamazenta-crowned.png ../../../app/build/creatures/pokemon-gen8/regular/zamazenta.png ../../../app/build/creatures/pokemon-gen8/regular/zangoose.png ../../../app/build/creatures/pokemon-gen8/regular/zapdos-galar.png ../../../app/build/creatures/pokemon-gen8/regular/zapdos.png ../../../app/build/creatures/pokemon-gen8/regular/zarude-dada.png ../../../app/build/creatures/pokemon-gen8/regular/zarude.png ../../../app/build/creatures/pokemon-gen8/regular/zebstrika.png ../../../app/build/creatures/pokemon-gen8/regular/zekrom.png ../../../app/build/creatures/pokemon-gen8/regular/zeraora.png ../../../app/build/creatures/pokemon-gen8/regular/zigzagoon-galar.png ../../../app/build/creatures/pokemon-gen8/regular/zigzagoon.png ../../../app/build/creatures/pokemon-gen8/regular/zoroark.png ../../../app/build/creatures/pokemon-gen8/regular/zorua.png ../../../app/build/creatures/pokemon-gen8/regular/zubat.png ../../../app/build/creatures/pokemon-gen8/regular/zweilous.png ../../../app/build/creatures/pokemon-gen8/regular/zygarde-10.png ../../../app/build/creatures/pokemon-gen8/regular/zygarde-complete.png ../../../app/build/creatures/pokemon-gen8/regular/zygarde.png ../../../app/build/creatures/pokemon-gen8/shiny/abomasnow-mega.png ../../../app/build/creatures/pokemon-gen8/shiny/abomasnow.png ../../../app/build/creatures/pokemon-gen8/shiny/abra.png ../../../app/build/creatures/pokemon-gen8/shiny/absol-mega.png ../../../app/build/creatures/pokemon-gen8/shiny/absol.png ../../../app/build/creatures/pokemon-gen8/shiny/accelgor.png ../../../app/build/creatures/pokemon-gen8/shiny/aegislash-blade.png ../../../app/build/creatures/pokemon-gen8/shiny/aegislash.png ../../../app/build/creatures/pokemon-gen8/shiny/aerodactyl-mega.png ../../../app/build/creatures/pokemon-gen8/shiny/aerodactyl.png ../../../app/build/creatures/pokemon-gen8/shiny/aggron-mega.png ../../../app/build/creatures/pokemon-gen8/shiny/aggron.png ../../../app/build/creatures/pokemon-gen8/shiny/aipom.png ../../../app/build/creatures/pokemon-gen8/shiny/alakazam-mega.png ../../../app/build/creatures/pokemon-gen8/shiny/alakazam.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-caramel-swirl-berry.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-caramel-swirl-clover.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-caramel-swirl-flower.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-caramel-swirl-love.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-caramel-swirl-plain.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-caramel-swirl-ribbon.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-caramel-swirl-star.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-caramel-swirl-strawberry.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-gmax.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-lemon-cream-berry.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-lemon-cream-clover.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-lemon-cream-flower.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-lemon-cream-love.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-lemon-cream-plain.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-lemon-cream-ribbon.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-lemon-cream-star.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-lemon-cream-strawberry.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-matcha-cream-berry.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-matcha-cream-clover.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-matcha-cream-flower.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-matcha-cream-love.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-matcha-cream-plain.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-matcha-cream-ribbon.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-matcha-cream-star.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-matcha-cream-strawberry.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-mint-cream-berry.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-mint-cream-clover.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-mint-cream-flower.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-mint-cream-love.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-mint-cream-plain.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-mint-cream-ribbon.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-mint-cream-star.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-mint-cream-strawberry.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-rainbow-swirl-berry.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-rainbow-swirl-clover.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-rainbow-swirl-flower.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-rainbow-swirl-love.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-rainbow-swirl-plain.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-rainbow-swirl-ribbon.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-rainbow-swirl-star.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-rainbow-swirl-strawberry.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-ruby-cream-berry.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-ruby-cream-clover.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-ruby-cream-flower.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-ruby-cream-love.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-ruby-cream-plain.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-ruby-cream-ribbon.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-ruby-cream-star.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-ruby-cream-strawberry.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-ruby-swirl-berry.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-ruby-swirl-clover.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-ruby-swirl-flower.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-ruby-swirl-love.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-ruby-swirl-plain.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-ruby-swirl-ribbon.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-ruby-swirl-star.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-ruby-swirl-strawberry.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-salted-cream-berry.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-salted-cream-clover.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-salted-cream-flower.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-salted-cream-love.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-salted-cream-plain.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-salted-cream-ribbon.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-salted-cream-star.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-salted-cream-strawberry.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-vanilla-cream-berry.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-vanilla-cream-clover.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-vanilla-cream-flower.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-vanilla-cream-love.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-vanilla-cream-plain.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-vanilla-cream-ribbon.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-vanilla-cream-star.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie-vanilla-cream-strawberry.png ../../../app/build/creatures/pokemon-gen8/shiny/alcremie.png ../../../app/build/creatures/pokemon-gen8/shiny/alomomola.png ../../../app/build/creatures/pokemon-gen8/shiny/altaria-mega.png ../../../app/build/creatures/pokemon-gen8/shiny/altaria.png ../../../app/build/creatures/pokemon-gen8/shiny/amaura.png ../../../app/build/creatures/pokemon-gen8/shiny/ambipom.png ../../../app/build/creatures/pokemon-gen8/shiny/amoonguss.png ../../../app/build/creatures/pokemon-gen8/shiny/ampharos-mega.png ../../../app/build/creatures/pokemon-gen8/shiny/ampharos.png ../../../app/build/creatures/pokemon-gen8/shiny/anorith.png ../../../app/build/creatures/pokemon-gen8/shiny/appletun.png ../../../app/build/creatures/pokemon-gen8/shiny/applin.png ../../../app/build/creatures/pokemon-gen8/shiny/araquanid.png ../../../app/build/creatures/pokemon-gen8/shiny/arbok.png ../../../app/build/creatures/pokemon-gen8/shiny/arcanine.png ../../../app/build/creatures/pokemon-gen8/shiny/arceus-bug.png ../../../app/build/creatures/pokemon-gen8/shiny/arceus-dark.png ../../../app/build/creatures/pokemon-gen8/shiny/arceus-dragon.png ../../../app/build/creatures/pokemon-gen8/shiny/arceus-electric.png ../../../app/build/creatures/pokemon-gen8/shiny/arceus-fairy.png ../../../app/build/creatures/pokemon-gen8/shiny/arceus-fighting.png ../../../app/build/creatures/pokemon-gen8/shiny/arceus-fire.png ../../../app/build/creatures/pokemon-gen8/shiny/arceus-flying.png ../../../app/build/creatures/pokemon-gen8/shiny/arceus-ghost.png ../../../app/build/creatures/pokemon-gen8/shiny/arceus-grass.png ../../../app/build/creatures/pokemon-gen8/shiny/arceus-ground.png ../../../app/build/creatures/pokemon-gen8/shiny/arceus-ice.png ../../../app/build/creatures/pokemon-gen8/shiny/arceus-poison.png ../../../app/build/creatures/pokemon-gen8/shiny/arceus-psychic.png ../../../app/build/creatures/pokemon-gen8/shiny/arceus-rock.png ../../../app/build/creatures/pokemon-gen8/shiny/arceus-steel.png ../../../app/build/creatures/pokemon-gen8/shiny/arceus-water.png ../../../app/build/creatures/pokemon-gen8/shiny/arceus.png ../../../app/build/creatures/pokemon-gen8/shiny/archen.png ../../../app/build/creatures/pokemon-gen8/shiny/archeops.png ../../../app/build/creatures/pokemon-gen8/shiny/arctovish.png ../../../app/build/creatures/pokemon-gen8/shiny/arctozolt.png ../../../app/build/creatures/pokemon-gen8/shiny/ariados.png ../../../app/build/creatures/pokemon-gen8/shiny/armaldo.png ../../../app/build/creatures/pokemon-gen8/shiny/aromatisse.png ../../../app/build/creatures/pokemon-gen8/shiny/aron.png ../../../app/build/creatures/pokemon-gen8/shiny/arrokuda.png ../../../app/build/creatures/pokemon-gen8/shiny/articuno-galar.png ../../../app/build/creatures/pokemon-gen8/shiny/articuno.png ../../../app/build/creatures/pokemon-gen8/shiny/audino-mega.png ../../../app/build/creatures/pokemon-gen8/shiny/audino.png ../../../app/build/creatures/pokemon-gen8/shiny/aurorus.png ../../../app/build/creatures/pokemon-gen8/shiny/avalugg.png ../../../app/build/creatures/pokemon-gen8/shiny/axew.png ../../../app/build/creatures/pokemon-gen8/shiny/azelf.png ../../../app/build/creatures/pokemon-gen8/shiny/azumarill.png ../../../app/build/creatures/pokemon-gen8/shiny/azurill.png ../../../app/build/creatures/pokemon-gen8/shiny/bagon.png ../../../app/build/creatures/pokemon-gen8/shiny/baltoy.png ../../../app/build/creatures/pokemon-gen8/shiny/banette-mega.png ../../../app/build/creatures/pokemon-gen8/shiny/banette.png ../../../app/build/creatures/pokemon-gen8/shiny/barbaracle.png ../../../app/build/creatures/pokemon-gen8/shiny/barboach.png ../../../app/build/creatures/pokemon-gen8/shiny/barraskewda.png ../../../app/build/creatures/pokemon-gen8/shiny/basculin-blue-striped.png ../../../app/build/creatures/pokemon-gen8/shiny/basculin.png ../../../app/build/creatures/pokemon-gen8/shiny/bastiodon.png ../../../app/build/creatures/pokemon-gen8/shiny/bayleef.png ../../../app/build/creatures/pokemon-gen8/shiny/beartic.png ../../../app/build/creatures/pokemon-gen8/shiny/beautifly.png ../../../app/build/creatures/pokemon-gen8/shiny/beedrill-mega.png ../../../app/build/creatures/pokemon-gen8/shiny/beedrill.png ../../../app/build/creatures/pokemon-gen8/shiny/beheeyem.png ../../../app/build/creatures/pokemon-gen8/shiny/beldum.png ../../../app/build/creatures/pokemon-gen8/shiny/bellossom.png ../../../app/build/creatures/pokemon-gen8/shiny/bellsprout.png ../../../app/build/creatures/pokemon-gen8/shiny/bergmite.png ../../../app/build/creatures/pokemon-gen8/shiny/bewear.png ../../../app/build/creatures/pokemon-gen8/shiny/bibarel.png ../../../app/build/creatures/pokemon-gen8/shiny/bidoof.png ../../../app/build/creatures/pokemon-gen8/shiny/binacle.png ../../../app/build/creatures/pokemon-gen8/shiny/bisharp.png ../../../app/build/creatures/pokemon-gen8/shiny/blacephalon.png ../../../app/build/creatures/pokemon-gen8/shiny/blastoise-gmax.png ../../../app/build/creatures/pokemon-gen8/shiny/blastoise-mega.png ../../../app/build/creatures/pokemon-gen8/shiny/blastoise.png ../../../app/build/creatures/pokemon-gen8/shiny/blaziken-mega.png ../../../app/build/creatures/pokemon-gen8/shiny/blaziken.png ../../../app/build/creatures/pokemon-gen8/shiny/blipbug.png ../../../app/build/creatures/pokemon-gen8/shiny/blissey.png ../../../app/build/creatures/pokemon-gen8/shiny/blitzle.png ../../../app/build/creatures/pokemon-gen8/shiny/boldore.png ../../../app/build/creatures/pokemon-gen8/shiny/boltund.png ../../../app/build/creatures/pokemon-gen8/shiny/bonsly.png ../../../app/build/creatures/pokemon-gen8/shiny/bouffalant.png ../../../app/build/creatures/pokemon-gen8/shiny/bounsweet.png ../../../app/build/creatures/pokemon-gen8/shiny/braixen.png ../../../app/build/creatures/pokemon-gen8/shiny/braviary.png ../../../app/build/creatures/pokemon-gen8/shiny/breloom.png ../../../app/build/creatures/pokemon-gen8/shiny/brionne.png ../../../app/build/creatures/pokemon-gen8/shiny/bronzong.png ../../../app/build/creatures/pokemon-gen8/shiny/bronzor.png ../../../app/build/creatures/pokemon-gen8/shiny/bruxish.png ../../../app/build/creatures/pokemon-gen8/shiny/budew.png ../../../app/build/creatures/pokemon-gen8/shiny/buizel.png ../../../app/build/creatures/pokemon-gen8/shiny/bulbasaur.png ../../../app/build/creatures/pokemon-gen8/shiny/buneary.png ../../../app/build/creatures/pokemon-gen8/shiny/bunnelby.png ../../../app/build/creatures/pokemon-gen8/shiny/burmy-sandy.png ../../../app/build/creatures/pokemon-gen8/shiny/burmy-trash.png ../../../app/build/creatures/pokemon-gen8/shiny/burmy.png ../../../app/build/creatures/pokemon-gen8/shiny/butterfree-gmax.png ../../../app/build/creatures/pokemon-gen8/shiny/butterfree.png ../../../app/build/creatures/pokemon-gen8/shiny/buzzwole.png ../../../app/build/creatures/pokemon-gen8/shiny/cacnea.png ../../../app/build/creatures/pokemon-gen8/shiny/cacturne.png ../../../app/build/creatures/pokemon-gen8/shiny/calyrex-ice-rider.png ../../../app/build/creatures/pokemon-gen8/shiny/calyrex-shadow-rider.png ../../../app/build/creatures/pokemon-gen8/shiny/calyrex.png ../../../app/build/creatures/pokemon-gen8/shiny/camerupt-mega.png ../../../app/build/creatures/pokemon-gen8/shiny/camerupt.png ../../../app/build/creatures/pokemon-gen8/shiny/carbink.png ../../../app/build/creatures/pokemon-gen8/shiny/carkol.png ../../../app/build/creatures/pokemon-gen8/shiny/carnivine.png ../../../app/build/creatures/pokemon-gen8/shiny/carracosta.png ../../../app/build/creatures/pokemon-gen8/shiny/carvanha.png ../../../app/build/creatures/pokemon-gen8/shiny/cascoon.png ../../../app/build/creatures/pokemon-gen8/shiny/castform-rainy.png ../../../app/build/creatures/pokemon-gen8/shiny/castform-snowy.png ../../../app/build/creatures/pokemon-gen8/shiny/castform-sunny.png ../../../app/build/creatures/pokemon-gen8/shiny/castform.png ../../../app/build/creatures/pokemon-gen8/shiny/caterpie.png ../../../app/build/creatures/pokemon-gen8/shiny/celebi.png ../../../app/build/creatures/pokemon-gen8/shiny/celesteela.png ../../../app/build/creatures/pokemon-gen8/shiny/centiskorch-gmax.png ../../../app/build/creatures/pokemon-gen8/shiny/centiskorch.png ../../../app/build/creatures/pokemon-gen8/shiny/chandelure.png ../../../app/build/creatures/pokemon-gen8/shiny/chansey.png ../../../app/build/creatures/pokemon-gen8/shiny/charizard-gmax.png ../../../app/build/creatures/pokemon-gen8/shiny/charizard-mega-x.png ../../../app/build/creatures/pokemon-gen8/shiny/charizard-mega-y.png ../../../app/build/creatures/pokemon-gen8/shiny/charizard.png ../../../app/build/creatures/pokemon-gen8/shiny/charjabug.png ../../../app/build/creatures/pokemon-gen8/shiny/charmander.png ../../../app/build/creatures/pokemon-gen8/shiny/charmeleon.png ../../../app/build/creatures/pokemon-gen8/shiny/chatot.png ../../../app/build/creatures/pokemon-gen8/shiny/cherrim-sunshine.png ../../../app/build/creatures/pokemon-gen8/shiny/cherrim.png ../../../app/build/creatures/pokemon-gen8/shiny/cherubi.png ../../../app/build/creatures/pokemon-gen8/shiny/chesnaught.png ../../../app/build/creatures/pokemon-gen8/shiny/chespin.png ../../../app/build/creatures/pokemon-gen8/shiny/chewtle.png ../../../app/build/creatures/pokemon-gen8/shiny/chikorita.png ../../../app/build/creatures/pokemon-gen8/shiny/chimchar.png ../../../app/build/creatures/pokemon-gen8/shiny/chimecho.png ../../../app/build/creatures/pokemon-gen8/shiny/chinchou.png ../../../app/build/creatures/pokemon-gen8/shiny/chingling.png ../../../app/build/creatures/pokemon-gen8/shiny/cinccino.png ../../../app/build/creatures/pokemon-gen8/shiny/cinderace-gmax.png ../../../app/build/creatures/pokemon-gen8/shiny/cinderace.png ../../../app/build/creatures/pokemon-gen8/shiny/clamperl.png ../../../app/build/creatures/pokemon-gen8/shiny/clauncher.png ../../../app/build/creatures/pokemon-gen8/shiny/clawitzer.png ../../../app/build/creatures/pokemon-gen8/shiny/claydol.png ../../../app/build/creatures/pokemon-gen8/shiny/clefable.png ../../../app/build/creatures/pokemon-gen8/shiny/clefairy.png ../../../app/build/creatures/pokemon-gen8/shiny/cleffa.png ../../../app/build/creatures/pokemon-gen8/shiny/clobbopus.png ../../../app/build/creatures/pokemon-gen8/shiny/cloyster.png ../../../app/build/creatures/pokemon-gen8/shiny/coalossal-gmax.png ../../../app/build/creatures/pokemon-gen8/shiny/coalossal.png ../../../app/build/creatures/pokemon-gen8/shiny/cobalion.png ../../../app/build/creatures/pokemon-gen8/shiny/cofagrigus.png ../../../app/build/creatures/pokemon-gen8/shiny/combee.png ../../../app/build/creatures/pokemon-gen8/shiny/combusken.png ../../../app/build/creatures/pokemon-gen8/shiny/comfey.png ../../../app/build/creatures/pokemon-gen8/shiny/conkeldurr.png ../../../app/build/creatures/pokemon-gen8/shiny/copperajah-gmax.png ../../../app/build/creatures/pokemon-gen8/shiny/copperajah.png ../../../app/build/creatures/pokemon-gen8/shiny/corphish.png ../../../app/build/creatures/pokemon-gen8/shiny/corsola-galar.png ../../../app/build/creatures/pokemon-gen8/shiny/corsola.png ../../../app/build/creatures/pokemon-gen8/shiny/corviknight-gmax.png ../../../app/build/creatures/pokemon-gen8/shiny/corviknight.png ../../../app/build/creatures/pokemon-gen8/shiny/corvisquire.png ../../../app/build/creatures/pokemon-gen8/shiny/cosmoem.png ../../../app/build/creatures/pokemon-gen8/shiny/cosmog.png ../../../app/build/creatures/pokemon-gen8/shiny/cottonee.png ../../../app/build/creatures/pokemon-gen8/shiny/crabominable.png ../../../app/build/creatures/pokemon-gen8/shiny/crabrawler.png ../../../app/build/creatures/pokemon-gen8/shiny/cradily.png ../../../app/build/creatures/pokemon-gen8/shiny/cramorant-gorging.png ../../../app/build/creatures/pokemon-gen8/shiny/cramorant-gulping.png ../../../app/build/creatures/pokemon-gen8/shiny/cramorant.png ../../../app/build/creatures/pokemon-gen8/shiny/cranidos.png ../../../app/build/creatures/pokemon-gen8/shiny/crawdaunt.png ../../../app/build/creatures/pokemon-gen8/shiny/cresselia.png ../../../app/build/creatures/pokemon-gen8/shiny/croagunk.png ../../../app/build/creatures/pokemon-gen8/shiny/crobat.png ../../../app/build/creatures/pokemon-gen8/shiny/croconaw.png ../../../app/build/creatures/pokemon-gen8/shiny/crustle.png ../../../app/build/creatures/pokemon-gen8/shiny/cryogonal.png ../../../app/build/creatures/pokemon-gen8/shiny/cubchoo.png ../../../app/build/creatures/pokemon-gen8/shiny/cubone.png ../../../app/build/creatures/pokemon-gen8/shiny/cufant.png ../../../app/build/creatures/pokemon-gen8/shiny/cursola.png ../../../app/build/creatures/pokemon-gen8/shiny/cutiefly.png ../../../app/build/creatures/pokemon-gen8/shiny/cyndaquil.png ../../../app/build/creatures/pokemon-gen8/shiny/darkrai.png ../../../app/build/creatures/pokemon-gen8/shiny/darmanitan-galar-zen.png ../../../app/build/creatures/pokemon-gen8/shiny/darmanitan-galar.png ../../../app/build/creatures/pokemon-gen8/shiny/darmanitan-zen.png ../../../app/build/creatures/pokemon-gen8/shiny/darmanitan.png ../../../app/build/creatures/pokemon-gen8/shiny/dartrix.png ../../../app/build/creatures/pokemon-gen8/shiny/darumaka-galar.png ../../../app/build/creatures/pokemon-gen8/shiny/darumaka.png ../../../app/build/creatures/pokemon-gen8/shiny/decidueye.png ../../../app/build/creatures/pokemon-gen8/shiny/dedenne.png ../../../app/build/creatures/pokemon-gen8/shiny/deerling-autumn.png ../../../app/build/creatures/pokemon-gen8/shiny/deerling-summer.png ../../../app/build/creatures/pokemon-gen8/shiny/deerling-winter.png ../../../app/build/creatures/pokemon-gen8/shiny/deerling.png ../../../app/build/creatures/pokemon-gen8/shiny/deino.png ../../../app/build/creatures/pokemon-gen8/shiny/delcatty.png ../../../app/build/creatures/pokemon-gen8/shiny/delibird.png ../../../app/build/creatures/pokemon-gen8/shiny/delphox.png ../../../app/build/creatures/pokemon-gen8/shiny/deoxys-attack.png ../../../app/build/creatures/pokemon-gen8/shiny/deoxys-defense.png ../../../app/build/creatures/pokemon-gen8/shiny/deoxys-speed.png ../../../app/build/creatures/pokemon-gen8/shiny/deoxys.png ../../../app/build/creatures/pokemon-gen8/shiny/dewgong.png ../../../app/build/creatures/pokemon-gen8/shiny/dewott.png ../../../app/build/creatures/pokemon-gen8/shiny/dewpider.png ../../../app/build/creatures/pokemon-gen8/shiny/dhelmise.png ../../../app/build/creatures/pokemon-gen8/shiny/dialga.png ../../../app/build/creatures/pokemon-gen8/shiny/diancie-mega.png ../../../app/build/creatures/pokemon-gen8/shiny/diancie.png ../../../app/build/creatures/pokemon-gen8/shiny/diggersby.png ../../../app/build/creatures/pokemon-gen8/shiny/diglett-alola.png ../../../app/build/creatures/pokemon-gen8/shiny/diglett.png ../../../app/build/creatures/pokemon-gen8/shiny/ditto.png ../../../app/build/creatures/pokemon-gen8/shiny/dodrio.png ../../../app/build/creatures/pokemon-gen8/shiny/doduo.png ../../../app/build/creatures/pokemon-gen8/shiny/donphan.png ../../../app/build/creatures/pokemon-gen8/shiny/dottler.png ../../../app/build/creatures/pokemon-gen8/shiny/doublade.png ../../../app/build/creatures/pokemon-gen8/shiny/dracovish.png ../../../app/build/creatures/pokemon-gen8/shiny/dracozolt.png ../../../app/build/creatures/pokemon-gen8/shiny/dragalge.png ../../../app/build/creatures/pokemon-gen8/shiny/dragapult.png ../../../app/build/creatures/pokemon-gen8/shiny/dragonair.png ../../../app/build/creatures/pokemon-gen8/shiny/dragonite.png ../../../app/build/creatures/pokemon-gen8/shiny/drakloak.png ../../../app/build/creatures/pokemon-gen8/shiny/drampa.png ../../../app/build/creatures/pokemon-gen8/shiny/drapion.png ../../../app/build/creatures/pokemon-gen8/shiny/dratini.png ../../../app/build/creatures/pokemon-gen8/shiny/drednaw-gmax.png ../../../app/build/creatures/pokemon-gen8/shiny/drednaw.png ../../../app/build/creatures/pokemon-gen8/shiny/dreepy.png ../../../app/build/creatures/pokemon-gen8/shiny/drifblim.png ../../../app/build/creatures/pokemon-gen8/shiny/drifloon.png ../../../app/build/creatures/pokemon-gen8/shiny/drilbur.png ../../../app/build/creatures/pokemon-gen8/shiny/drizzile.png ../../../app/build/creatures/pokemon-gen8/shiny/drowzee.png ../../../app/build/creatures/pokemon-gen8/shiny/druddigon.png ../../../app/build/creatures/pokemon-gen8/shiny/dubwool.png ../../../app/build/creatures/pokemon-gen8/shiny/ducklett.png ../../../app/build/creatures/pokemon-gen8/shiny/dugtrio-alola.png ../../../app/build/creatures/pokemon-gen8/shiny/dugtrio.png ../../../app/build/creatures/pokemon-gen8/shiny/dunsparce.png ../../../app/build/creatures/pokemon-gen8/shiny/duosion.png ../../../app/build/creatures/pokemon-gen8/shiny/duraludon-gmax.png ../../../app/build/creatures/pokemon-gen8/shiny/duraludon.png ../../../app/build/creatures/pokemon-gen8/shiny/durant.png ../../../app/build/creatures/pokemon-gen8/shiny/dusclops.png ../../../app/build/creatures/pokemon-gen8/shiny/dusknoir.png ../../../app/build/creatures/pokemon-gen8/shiny/duskull.png ../../../app/build/creatures/pokemon-gen8/shiny/dustox.png ../../../app/build/creatures/pokemon-gen8/shiny/dwebble.png ../../../app/build/creatures/pokemon-gen8/shiny/eelektrik.png ../../../app/build/creatures/pokemon-gen8/shiny/eelektross.png ../../../app/build/creatures/pokemon-gen8/shiny/eevee-gmax.png ../../../app/build/creatures/pokemon-gen8/shiny/eevee-starter.png ../../../app/build/creatures/pokemon-gen8/shiny/eevee.png ../../../app/build/creatures/pokemon-gen8/shiny/eiscue-noice.png ../../../app/build/creatures/pokemon-gen8/shiny/eiscue.png ../../../app/build/creatures/pokemon-gen8/shiny/ekans.png ../../../app/build/creatures/pokemon-gen8/shiny/eldegoss.png ../../../app/build/creatures/pokemon-gen8/shiny/electabuzz.png ../../../app/build/creatures/pokemon-gen8/shiny/electivire.png ../../../app/build/creatures/pokemon-gen8/shiny/electrike.png ../../../app/build/creatures/pokemon-gen8/shiny/electrode.png ../../../app/build/creatures/pokemon-gen8/shiny/elekid.png ../../../app/build/creatures/pokemon-gen8/shiny/elgyem.png ../../../app/build/creatures/pokemon-gen8/shiny/emboar.png ../../../app/build/creatures/pokemon-gen8/shiny/emolga.png ../../../app/build/creatures/pokemon-gen8/shiny/empoleon.png ../../../app/build/creatures/pokemon-gen8/shiny/entei.png ../../../app/build/creatures/pokemon-gen8/shiny/escavalier.png ../../../app/build/creatures/pokemon-gen8/shiny/espeon.png ../../../app/build/creatures/pokemon-gen8/shiny/espurr.png ../../../app/build/creatures/pokemon-gen8/shiny/eternatus-eternamax.png ../../../app/build/creatures/pokemon-gen8/shiny/eternatus.png ../../../app/build/creatures/pokemon-gen8/shiny/excadrill.png ../../../app/build/creatures/pokemon-gen8/shiny/exeggcute.png ../../../app/build/creatures/pokemon-gen8/shiny/exeggutor-alola.png ../../../app/build/creatures/pokemon-gen8/shiny/exeggutor.png ../../../app/build/creatures/pokemon-gen8/shiny/exploud.png ../../../app/build/creatures/pokemon-gen8/shiny/falinks.png ../../../app/build/creatures/pokemon-gen8/shiny/farfetchd-galar.png ../../../app/build/creatures/pokemon-gen8/shiny/farfetchd.png ../../../app/build/creatures/pokemon-gen8/shiny/fearow.png ../../../app/build/creatures/pokemon-gen8/shiny/feebas.png ../../../app/build/creatures/pokemon-gen8/shiny/female/frillish.png ../../../app/build/creatures/pokemon-gen8/shiny/female/hippopotas.png ../../../app/build/creatures/pokemon-gen8/shiny/female/hippowdon.png ../../../app/build/creatures/pokemon-gen8/shiny/female/indeedee.png ../../../app/build/creatures/pokemon-gen8/shiny/female/jellicent.png ../../../app/build/creatures/pokemon-gen8/shiny/female/meowstic.png ../../../app/build/creatures/pokemon-gen8/shiny/female/pikachu-alola-cap.png ../../../app/build/creatures/pokemon-gen8/shiny/female/pikachu-hoenn-cap.png ../../../app/build/creatures/pokemon-gen8/shiny/female/pikachu-kalos-cap.png ../../../app/build/creatures/pokemon-gen8/shiny/female/pikachu-original-cap.png ../../../app/build/creatures/pokemon-gen8/shiny/female/pikachu-partner-cap.png ../../../app/build/creatures/pokemon-gen8/shiny/female/pikachu-sinnoh-cap.png ../../../app/build/creatures/pokemon-gen8/shiny/female/pikachu-starter.png ../../../app/build/creatures/pokemon-gen8/shiny/female/pikachu-unova-cap.png ../../../app/build/creatures/pokemon-gen8/shiny/female/pikachu-world-cap.png ../../../app/build/creatures/pokemon-gen8/shiny/female/pikachu.png ../../../app/build/creatures/pokemon-gen8/shiny/female/pyroar.png ../../../app/build/creatures/pokemon-gen8/shiny/female/unfezant.png ../../../app/build/creatures/pokemon-gen8/shiny/fennekin.png ../../../app/build/creatures/pokemon-gen8/shiny/feraligatr.png ../../../app/build/creatures/pokemon-gen8/shiny/ferroseed.png ../../../app/build/creatures/pokemon-gen8/shiny/ferrothorn.png ../../../app/build/creatures/pokemon-gen8/shiny/finneon.png ../../../app/build/creatures/pokemon-gen8/shiny/flaaffy.png ../../../app/build/creatures/pokemon-gen8/shiny/flabebe-blue.png ../../../app/build/creatures/pokemon-gen8/shiny/flabebe-orange.png ../../../app/build/creatures/pokemon-gen8/shiny/flabebe-white.png ../../../app/build/creatures/pokemon-gen8/shiny/flabebe-yellow.png ../../../app/build/creatures/pokemon-gen8/shiny/flabebe.png ../../../app/build/creatures/pokemon-gen8/shiny/flapple-gmax.png ../../../app/build/creatures/pokemon-gen8/shiny/flapple.png ../../../app/build/creatures/pokemon-gen8/shiny/flareon.png ../../../app/build/creatures/pokemon-gen8/shiny/fletchinder.png ../../../app/build/creatures/pokemon-gen8/shiny/fletchling.png ../../../app/build/creatures/pokemon-gen8/shiny/floatzel.png ../../../app/build/creatures/pokemon-gen8/shiny/floette-blue.png ../../../app/build/creatures/pokemon-gen8/shiny/floette-eternal.png ../../../app/build/creatures/pokemon-gen8/shiny/floette-orange.png ../../../app/build/creatures/pokemon-gen8/shiny/floette-white.png ../../../app/build/creatures/pokemon-gen8/shiny/floette-yellow.png ../../../app/build/creatures/pokemon-gen8/shiny/floette.png ../../../app/build/creatures/pokemon-gen8/shiny/florges-blue.png ../../../app/build/creatures/pokemon-gen8/shiny/florges-orange.png ../../../app/build/creatures/pokemon-gen8/shiny/florges-white.png ../../../app/build/creatures/pokemon-gen8/shiny/florges-yellow.png ../../../app/build/creatures/pokemon-gen8/shiny/florges.png ../../../app/build/creatures/pokemon-gen8/shiny/flygon.png ../../../app/build/creatures/pokemon-gen8/shiny/fomantis.png ../../../app/build/creatures/pokemon-gen8/shiny/foongus.png ../../../app/build/creatures/pokemon-gen8/shiny/forretress.png ../../../app/build/creatures/pokemon-gen8/shiny/fraxure.png ../../../app/build/creatures/pokemon-gen8/shiny/frillish.png ../../../app/build/creatures/pokemon-gen8/shiny/froakie.png ../../../app/build/creatures/pokemon-gen8/shiny/frogadier.png ../../../app/build/creatures/pokemon-gen8/shiny/froslass.png ../../../app/build/creatures/pokemon-gen8/shiny/frosmoth.png ../../../app/build/creatures/pokemon-gen8/shiny/furfrou-dandy.png ../../../app/build/creatures/pokemon-gen8/shiny/furfrou-debutante.png ../../../app/build/creatures/pokemon-gen8/shiny/furfrou-diamond.png ../../../app/build/creatures/pokemon-gen8/shiny/furfrou-heart.png ../../../app/build/creatures/pokemon-gen8/shiny/furfrou-kabuki.png ../../../app/build/creatures/pokemon-gen8/shiny/furfrou-la-reine.png ../../../app/build/creatures/pokemon-gen8/shiny/furfrou-matron.png ../../../app/build/creatures/pokemon-gen8/shiny/furfrou-pharaoh.png ../../../app/build/creatures/pokemon-gen8/shiny/furfrou-star.png ../../../app/build/creatures/pokemon-gen8/shiny/furfrou.png ../../../app/build/creatures/pokemon-gen8/shiny/furret.png ../../../app/build/creatures/pokemon-gen8/shiny/gabite.png ../../../app/build/creatures/pokemon-gen8/shiny/gallade-mega.png ../../../app/build/creatures/pokemon-gen8/shiny/gallade.png ../../../app/build/creatures/pokemon-gen8/shiny/galvantula.png ../../../app/build/creatures/pokemon-gen8/shiny/garbodor-gmax.png ../../../app/build/creatures/pokemon-gen8/shiny/garbodor.png ../../../app/build/creatures/pokemon-gen8/shiny/garchomp-mega.png ../../../app/build/creatures/pokemon-gen8/shiny/garchomp.png ../../../app/build/creatures/pokemon-gen8/shiny/gardevoir-mega.png ../../../app/build/creatures/pokemon-gen8/shiny/gardevoir.png ../../../app/build/creatures/pokemon-gen8/shiny/gastly.png ../../../app/build/creatures/pokemon-gen8/shiny/gastrodon-east.png ../../../app/build/creatures/pokemon-gen8/shiny/gastrodon.png ../../../app/build/creatures/pokemon-gen8/shiny/genesect-burn.png ../../../app/build/creatures/pokemon-gen8/shiny/genesect-chill.png ../../../app/build/creatures/pokemon-gen8/shiny/genesect-douse.png ../../../app/build/creatures/pokemon-gen8/shiny/genesect-shock.png ../../../app/build/creatures/pokemon-gen8/shiny/genesect-standard.png ../../../app/build/creatures/pokemon-gen8/shiny/genesect.png ../../../app/build/creatures/pokemon-gen8/shiny/gengar-gmax.png ../../../app/build/creatures/pokemon-gen8/shiny/gengar-mega.png ../../../app/build/creatures/pokemon-gen8/shiny/gengar.png ../../../app/build/creatures/pokemon-gen8/shiny/geodude-alola.png ../../../app/build/creatures/pokemon-gen8/shiny/geodude.png ../../../app/build/creatures/pokemon-gen8/shiny/gible.png ../../../app/build/creatures/pokemon-gen8/shiny/gigalith.png ../../../app/build/creatures/pokemon-gen8/shiny/girafarig.png ../../../app/build/creatures/pokemon-gen8/shiny/giratina-origin.png ../../../app/build/creatures/pokemon-gen8/shiny/giratina.png ../../../app/build/creatures/pokemon-gen8/shiny/glaceon.png ../../../app/build/creatures/pokemon-gen8/shiny/glalie-mega.png ../../../app/build/creatures/pokemon-gen8/shiny/glalie.png ../../../app/build/creatures/pokemon-gen8/shiny/glameow.png ../../../app/build/creatures/pokemon-gen8/shiny/glastrier.png ../../../app/build/creatures/pokemon-gen8/shiny/gligar.png ../../../app/build/creatures/pokemon-gen8/shiny/gliscor.png ../../../app/build/creatures/pokemon-gen8/shiny/gloom.png ../../../app/build/creatures/pokemon-gen8/shiny/gogoat.png ../../../app/build/creatures/pokemon-gen8/shiny/golbat.png ../../../app/build/creatures/pokemon-gen8/shiny/goldeen.png ../../../app/build/creatures/pokemon-gen8/shiny/golduck.png ../../../app/build/creatures/pokemon-gen8/shiny/golem-alola.png ../../../app/build/creatures/pokemon-gen8/shiny/golem.png ../../../app/build/creatures/pokemon-gen8/shiny/golett.png ../../../app/build/creatures/pokemon-gen8/shiny/golisopod.png ../../../app/build/creatures/pokemon-gen8/shiny/golurk.png ../../../app/build/creatures/pokemon-gen8/shiny/goodra.png ../../../app/build/creatures/pokemon-gen8/shiny/goomy.png ../../../app/build/creatures/pokemon-gen8/shiny/gorebyss.png ../../../app/build/creatures/pokemon-gen8/shiny/gossifleur.png ../../../app/build/creatures/pokemon-gen8/shiny/gothita.png ../../../app/build/creatures/pokemon-gen8/shiny/gothitelle.png ../../../app/build/creatures/pokemon-gen8/shiny/gothorita.png ../../../app/build/creatures/pokemon-gen8/shiny/gourgeist-large.png ../../../app/build/creatures/pokemon-gen8/shiny/gourgeist-small.png ../../../app/build/creatures/pokemon-gen8/shiny/gourgeist-super.png ../../../app/build/creatures/pokemon-gen8/shiny/gourgeist.png ../../../app/build/creatures/pokemon-gen8/shiny/granbull.png ../../../app/build/creatures/pokemon-gen8/shiny/grapploct.png ../../../app/build/creatures/pokemon-gen8/shiny/graveler-alola.png ../../../app/build/creatures/pokemon-gen8/shiny/graveler.png ../../../app/build/creatures/pokemon-gen8/shiny/greedent.png ../../../app/build/creatures/pokemon-gen8/shiny/greninja-ash.png ../../../app/build/creatures/pokemon-gen8/shiny/greninja.png ../../../app/build/creatures/pokemon-gen8/shiny/grimer-alola.png ../../../app/build/creatures/pokemon-gen8/shiny/grimer.png ../../../app/build/creatures/pokemon-gen8/shiny/grimmsnarl-gmax.png ../../../app/build/creatures/pokemon-gen8/shiny/grimmsnarl.png ../../../app/build/creatures/pokemon-gen8/shiny/grookey.png ../../../app/build/creatures/pokemon-gen8/shiny/grotle.png ../../../app/build/creatures/pokemon-gen8/shiny/groudon-primal.png ../../../app/build/creatures/pokemon-gen8/shiny/groudon.png ../../../app/build/creatures/pokemon-gen8/shiny/grovyle.png ../../../app/build/creatures/pokemon-gen8/shiny/growlithe.png ../../../app/build/creatures/pokemon-gen8/shiny/grubbin.png ../../../app/build/creatures/pokemon-gen8/shiny/grumpig.png ../../../app/build/creatures/pokemon-gen8/shiny/gulpin.png ../../../app/build/creatures/pokemon-gen8/shiny/gumshoos.png ../../../app/build/creatures/pokemon-gen8/shiny/gurdurr.png ../../../app/build/creatures/pokemon-gen8/shiny/guzzlord.png ../../../app/build/creatures/pokemon-gen8/shiny/gyarados-mega.png ../../../app/build/creatures/pokemon-gen8/shiny/gyarados.png ../../../app/build/creatures/pokemon-gen8/shiny/hakamo-o.png ../../../app/build/creatures/pokemon-gen8/shiny/happiny.png ../../../app/build/creatures/pokemon-gen8/shiny/hariyama.png ../../../app/build/creatures/pokemon-gen8/shiny/hatenna.png ../../../app/build/creatures/pokemon-gen8/shiny/hatterene-gmax.png ../../../app/build/creatures/pokemon-gen8/shiny/hatterene.png ../../../app/build/creatures/pokemon-gen8/shiny/hattrem.png ../../../app/build/creatures/pokemon-gen8/shiny/haunter.png ../../../app/build/creatures/pokemon-gen8/shiny/hawlucha.png ../../../app/build/creatures/pokemon-gen8/shiny/haxorus.png ../../../app/build/creatures/pokemon-gen8/shiny/heatmor.png ../../../app/build/creatures/pokemon-gen8/shiny/heatran.png ../../../app/build/creatures/pokemon-gen8/shiny/heliolisk.png ../../../app/build/creatures/pokemon-gen8/shiny/helioptile.png ../../../app/build/creatures/pokemon-gen8/shiny/heracross-mega.png ../../../app/build/creatures/pokemon-gen8/shiny/heracross.png ../../../app/build/creatures/pokemon-gen8/shiny/herdier.png ../../../app/build/creatures/pokemon-gen8/shiny/hippopotas.png ../../../app/build/creatures/pokemon-gen8/shiny/hippowdon.png ../../../app/build/creatures/pokemon-gen8/shiny/hitmonchan.png ../../../app/build/creatures/pokemon-gen8/shiny/hitmonlee.png ../../../app/build/creatures/pokemon-gen8/shiny/hitmontop.png ../../../app/build/creatures/pokemon-gen8/shiny/ho-oh.png ../../../app/build/creatures/pokemon-gen8/shiny/honchkrow.png ../../../app/build/creatures/pokemon-gen8/shiny/honedge.png ../../../app/build/creatures/pokemon-gen8/shiny/hoopa-unbound.png ../../../app/build/creatures/pokemon-gen8/shiny/hoopa.png ../../../app/build/creatures/pokemon-gen8/shiny/hoothoot.png ../../../app/build/creatures/pokemon-gen8/shiny/hoppip.png ../../../app/build/creatures/pokemon-gen8/shiny/horsea.png ../../../app/build/creatures/pokemon-gen8/shiny/houndoom-mega.png ../../../app/build/creatures/pokemon-gen8/shiny/houndoom.png ../../../app/build/creatures/pokemon-gen8/shiny/houndour.png ../../../app/build/creatures/pokemon-gen8/shiny/huntail.png ../../../app/build/creatures/pokemon-gen8/shiny/hydreigon.png ../../../app/build/creatures/pokemon-gen8/shiny/hypno.png ../../../app/build/creatures/pokemon-gen8/shiny/igglybuff.png ../../../app/build/creatures/pokemon-gen8/shiny/illumise.png ../../../app/build/creatures/pokemon-gen8/shiny/impidimp.png ../../../app/build/creatures/pokemon-gen8/shiny/incineroar.png ../../../app/build/creatures/pokemon-gen8/shiny/indeedee.png ../../../app/build/creatures/pokemon-gen8/shiny/infernape.png ../../../app/build/creatures/pokemon-gen8/shiny/inkay.png ../../../app/build/creatures/pokemon-gen8/shiny/inteleon-gmax.png ../../../app/build/creatures/pokemon-gen8/shiny/inteleon.png ../../../app/build/creatures/pokemon-gen8/shiny/ivysaur.png ../../../app/build/creatures/pokemon-gen8/shiny/jangmo-o.png ../../../app/build/creatures/pokemon-gen8/shiny/jellicent.png ../../../app/build/creatures/pokemon-gen8/shiny/jigglypuff.png ../../../app/build/creatures/pokemon-gen8/shiny/jirachi.png ../../../app/build/creatures/pokemon-gen8/shiny/jolteon.png ../../../app/build/creatures/pokemon-gen8/shiny/joltik.png ../../../app/build/creatures/pokemon-gen8/shiny/jumpluff.png ../../../app/build/creatures/pokemon-gen8/shiny/jynx.png ../../../app/build/creatures/pokemon-gen8/shiny/kabuto.png ../../../app/build/creatures/pokemon-gen8/shiny/kabutops.png ../../../app/build/creatures/pokemon-gen8/shiny/kadabra.png ../../../app/build/creatures/pokemon-gen8/shiny/kakuna.png ../../../app/build/creatures/pokemon-gen8/shiny/kangaskhan-mega.png ../../../app/build/creatures/pokemon-gen8/shiny/kangaskhan.png ../../../app/build/creatures/pokemon-gen8/shiny/karrablast.png ../../../app/build/creatures/pokemon-gen8/shiny/kartana.png ../../../app/build/creatures/pokemon-gen8/shiny/kecleon.png ../../../app/build/creatures/pokemon-gen8/shiny/keldeo-resolute.png ../../../app/build/creatures/pokemon-gen8/shiny/keldeo.png ../../../app/build/creatures/pokemon-gen8/shiny/kingdra.png ../../../app/build/creatures/pokemon-gen8/shiny/kingler-gmax.png ../../../app/build/creatures/pokemon-gen8/shiny/kingler.png ../../../app/build/creatures/pokemon-gen8/shiny/kirlia.png ../../../app/build/creatures/pokemon-gen8/shiny/klang.png ../../../app/build/creatures/pokemon-gen8/shiny/klefki.png ../../../app/build/creatures/pokemon-gen8/shiny/klink.png ../../../app/build/creatures/pokemon-gen8/shiny/klinklang.png ../../../app/build/creatures/pokemon-gen8/shiny/koffing.png ../../../app/build/creatures/pokemon-gen8/shiny/komala.png ../../../app/build/creatures/pokemon-gen8/shiny/kommo-o.png ../../../app/build/creatures/pokemon-gen8/shiny/krabby.png ../../../app/build/creatures/pokemon-gen8/shiny/kricketot.png ../../../app/build/creatures/pokemon-gen8/shiny/kricketune.png ../../../app/build/creatures/pokemon-gen8/shiny/krokorok.png ../../../app/build/creatures/pokemon-gen8/shiny/krookodile.png ../../../app/build/creatures/pokemon-gen8/shiny/kubfu.png ../../../app/build/creatures/pokemon-gen8/shiny/kyogre-primal.png ../../../app/build/creatures/pokemon-gen8/shiny/kyogre.png ../../../app/build/creatures/pokemon-gen8/shiny/kyurem-black.png ../../../app/build/creatures/pokemon-gen8/shiny/kyurem-white.png ../../../app/build/creatures/pokemon-gen8/shiny/kyurem.png ../../../app/build/creatures/pokemon-gen8/shiny/lairon.png ../../../app/build/creatures/pokemon-gen8/shiny/lampent.png ../../../app/build/creatures/pokemon-gen8/shiny/landorus-therian.png ../../../app/build/creatures/pokemon-gen8/shiny/landorus.png ../../../app/build/creatures/pokemon-gen8/shiny/lanturn.png ../../../app/build/creatures/pokemon-gen8/shiny/lapras-gmax.png ../../../app/build/creatures/pokemon-gen8/shiny/lapras.png ../../../app/build/creatures/pokemon-gen8/shiny/larvesta.png ../../../app/build/creatures/pokemon-gen8/shiny/larvitar.png ../../../app/build/creatures/pokemon-gen8/shiny/latias-mega.png ../../../app/build/creatures/pokemon-gen8/shiny/latias.png ../../../app/build/creatures/pokemon-gen8/shiny/latios-mega.png ../../../app/build/creatures/pokemon-gen8/shiny/latios.png ../../../app/build/creatures/pokemon-gen8/shiny/leafeon.png ../../../app/build/creatures/pokemon-gen8/shiny/leavanny.png ../../../app/build/creatures/pokemon-gen8/shiny/ledian.png ../../../app/build/creatures/pokemon-gen8/shiny/ledyba.png ../../../app/build/creatures/pokemon-gen8/shiny/lickilicky.png ../../../app/build/creatures/pokemon-gen8/shiny/lickitung.png ../../../app/build/creatures/pokemon-gen8/shiny/liepard.png ../../../app/build/creatures/pokemon-gen8/shiny/lileep.png ../../../app/build/creatures/pokemon-gen8/shiny/lilligant.png ../../../app/build/creatures/pokemon-gen8/shiny/lillipup.png ../../../app/build/creatures/pokemon-gen8/shiny/linoone-galar.png ../../../app/build/creatures/pokemon-gen8/shiny/linoone.png ../../../app/build/creatures/pokemon-gen8/shiny/litleo.png ../../../app/build/creatures/pokemon-gen8/shiny/litten.png ../../../app/build/creatures/pokemon-gen8/shiny/litwick.png ../../../app/build/creatures/pokemon-gen8/shiny/lombre.png ../../../app/build/creatures/pokemon-gen8/shiny/lopunny-mega.png ../../../app/build/creatures/pokemon-gen8/shiny/lopunny.png ../../../app/build/creatures/pokemon-gen8/shiny/lotad.png ../../../app/build/creatures/pokemon-gen8/shiny/loudred.png ../../../app/build/creatures/pokemon-gen8/shiny/lucario-mega.png ../../../app/build/creatures/pokemon-gen8/shiny/lucario.png ../../../app/build/creatures/pokemon-gen8/shiny/ludicolo.png ../../../app/build/creatures/pokemon-gen8/shiny/lugia-shadow.png ../../../app/build/creatures/pokemon-gen8/shiny/lugia.png ../../../app/build/creatures/pokemon-gen8/shiny/lumineon.png ../../../app/build/creatures/pokemon-gen8/shiny/lunala.png ../../../app/build/creatures/pokemon-gen8/shiny/lunatone.png ../../../app/build/creatures/pokemon-gen8/shiny/lurantis.png ../../../app/build/creatures/pokemon-gen8/shiny/luvdisc.png ../../../app/build/creatures/pokemon-gen8/shiny/luxio.png ../../../app/build/creatures/pokemon-gen8/shiny/luxray.png ../../../app/build/creatures/pokemon-gen8/shiny/lycanroc-dusk.png ../../../app/build/creatures/pokemon-gen8/shiny/lycanroc-midnight.png ../../../app/build/creatures/pokemon-gen8/shiny/lycanroc.png ../../../app/build/creatures/pokemon-gen8/shiny/machamp-gmax.png ../../../app/build/creatures/pokemon-gen8/shiny/machamp.png ../../../app/build/creatures/pokemon-gen8/shiny/machoke.png ../../../app/build/creatures/pokemon-gen8/shiny/machop.png ../../../app/build/creatures/pokemon-gen8/shiny/magby.png ../../../app/build/creatures/pokemon-gen8/shiny/magcargo.png ../../../app/build/creatures/pokemon-gen8/shiny/magearna-original.png ../../../app/build/creatures/pokemon-gen8/shiny/magearna.png ../../../app/build/creatures/pokemon-gen8/shiny/magikarp.png ../../../app/build/creatures/pokemon-gen8/shiny/magmar.png ../../../app/build/creatures/pokemon-gen8/shiny/magmortar.png ../../../app/build/creatures/pokemon-gen8/shiny/magnemite.png ../../../app/build/creatures/pokemon-gen8/shiny/magneton.png ../../../app/build/creatures/pokemon-gen8/shiny/magnezone.png ../../../app/build/creatures/pokemon-gen8/shiny/makuhita.png ../../../app/build/creatures/pokemon-gen8/shiny/malamar.png ../../../app/build/creatures/pokemon-gen8/shiny/mamoswine.png ../../../app/build/creatures/pokemon-gen8/shiny/manaphy.png ../../../app/build/creatures/pokemon-gen8/shiny/mandibuzz.png ../../../app/build/creatures/pokemon-gen8/shiny/manectric-mega.png ../../../app/build/creatures/pokemon-gen8/shiny/manectric.png ../../../app/build/creatures/pokemon-gen8/shiny/mankey.png ../../../app/build/creatures/pokemon-gen8/shiny/mantine.png ../../../app/build/creatures/pokemon-gen8/shiny/mantyke.png ../../../app/build/creatures/pokemon-gen8/shiny/maractus.png ../../../app/build/creatures/pokemon-gen8/shiny/mareanie.png ../../../app/build/creatures/pokemon-gen8/shiny/mareep.png ../../../app/build/creatures/pokemon-gen8/shiny/marill.png ../../../app/build/creatures/pokemon-gen8/shiny/marowak-alola.png ../../../app/build/creatures/pokemon-gen8/shiny/marowak.png ../../../app/build/creatures/pokemon-gen8/shiny/marshadow-gen7.png ../../../app/build/creatures/pokemon-gen8/shiny/marshadow.png ../../../app/build/creatures/pokemon-gen8/shiny/marshtomp.png ../../../app/build/creatures/pokemon-gen8/shiny/masquerain.png ../../../app/build/creatures/pokemon-gen8/shiny/mawile-mega.png ../../../app/build/creatures/pokemon-gen8/shiny/mawile.png ../../../app/build/creatures/pokemon-gen8/shiny/medicham-mega.png ../../../app/build/creatures/pokemon-gen8/shiny/medicham.png ../../../app/build/creatures/pokemon-gen8/shiny/meditite.png ../../../app/build/creatures/pokemon-gen8/shiny/meganium.png ../../../app/build/creatures/pokemon-gen8/shiny/melmetal-gmax.png ../../../app/build/creatures/pokemon-gen8/shiny/melmetal.png ../../../app/build/creatures/pokemon-gen8/shiny/meloetta-pirouette.png ../../../app/build/creatures/pokemon-gen8/shiny/meloetta.png ../../../app/build/creatures/pokemon-gen8/shiny/meltan.png ../../../app/build/creatures/pokemon-gen8/shiny/meowstic.png ../../../app/build/creatures/pokemon-gen8/shiny/meowth-alola.png ../../../app/build/creatures/pokemon-gen8/shiny/meowth-galar.png ../../../app/build/creatures/pokemon-gen8/shiny/meowth-gmax.png ../../../app/build/creatures/pokemon-gen8/shiny/meowth.png ../../../app/build/creatures/pokemon-gen8/shiny/mesprit.png ../../../app/build/creatures/pokemon-gen8/shiny/metagross-mega.png ../../../app/build/creatures/pokemon-gen8/shiny/metagross.png ../../../app/build/creatures/pokemon-gen8/shiny/metang.png ../../../app/build/creatures/pokemon-gen8/shiny/metapod.png ../../../app/build/creatures/pokemon-gen8/shiny/mew.png ../../../app/build/creatures/pokemon-gen8/shiny/mewtwo-mega-x.png ../../../app/build/creatures/pokemon-gen8/shiny/mewtwo-mega-y.png ../../../app/build/creatures/pokemon-gen8/shiny/mewtwo.png ../../../app/build/creatures/pokemon-gen8/shiny/mienfoo.png ../../../app/build/creatures/pokemon-gen8/shiny/mienshao.png ../../../app/build/creatures/pokemon-gen8/shiny/mightyena.png ../../../app/build/creatures/pokemon-gen8/shiny/milcery.png ../../../app/build/creatures/pokemon-gen8/shiny/milotic.png ../../../app/build/creatures/pokemon-gen8/shiny/miltank.png ../../../app/build/creatures/pokemon-gen8/shiny/mime-jr.png ../../../app/build/creatures/pokemon-gen8/shiny/mimikyu.png ../../../app/build/creatures/pokemon-gen8/shiny/minccino.png ../../../app/build/creatures/pokemon-gen8/shiny/minior-blue-gen7.png ../../../app/build/creatures/pokemon-gen8/shiny/minior-blue.png ../../../app/build/creatures/pokemon-gen8/shiny/minior-green-gen7.png ../../../app/build/creatures/pokemon-gen8/shiny/minior-green.png ../../../app/build/creatures/pokemon-gen8/shiny/minior-indigo-gen7.png ../../../app/build/creatures/pokemon-gen8/shiny/minior-indigo.png ../../../app/build/creatures/pokemon-gen8/shiny/minior-orange-gen7.png ../../../app/build/creatures/pokemon-gen8/shiny/minior-orange.png ../../../app/build/creatures/pokemon-gen8/shiny/minior-red-gen7.png ../../../app/build/creatures/pokemon-gen8/shiny/minior-red.png ../../../app/build/creatures/pokemon-gen8/shiny/minior-violet-gen7.png ../../../app/build/creatures/pokemon-gen8/shiny/minior-violet.png ../../../app/build/creatures/pokemon-gen8/shiny/minior-yellow-gen7.png ../../../app/build/creatures/pokemon-gen8/shiny/minior-yellow.png ../../../app/build/creatures/pokemon-gen8/shiny/minior.png ../../../app/build/creatures/pokemon-gen8/shiny/minun.png ../../../app/build/creatures/pokemon-gen8/shiny/misdreavus.png ../../../app/build/creatures/pokemon-gen8/shiny/mismagius.png ../../../app/build/creatures/pokemon-gen8/shiny/moltres-galar.png ../../../app/build/creatures/pokemon-gen8/shiny/moltres.png ../../../app/build/creatures/pokemon-gen8/shiny/monferno.png ../../../app/build/creatures/pokemon-gen8/shiny/morelull.png ../../../app/build/creatures/pokemon-gen8/shiny/morgrem.png ../../../app/build/creatures/pokemon-gen8/shiny/morpeko-hangry.png ../../../app/build/creatures/pokemon-gen8/shiny/morpeko.png ../../../app/build/creatures/pokemon-gen8/shiny/mothim.png ../../../app/build/creatures/pokemon-gen8/shiny/mr-mime-galar.png ../../../app/build/creatures/pokemon-gen8/shiny/mr-mime.png ../../../app/build/creatures/pokemon-gen8/shiny/mr-rime.png ../../../app/build/creatures/pokemon-gen8/shiny/mudbray.png ../../../app/build/creatures/pokemon-gen8/shiny/mudkip.png ../../../app/build/creatures/pokemon-gen8/shiny/mudsdale.png ../../../app/build/creatures/pokemon-gen8/shiny/muk-alola.png ../../../app/build/creatures/pokemon-gen8/shiny/muk.png ../../../app/build/creatures/pokemon-gen8/shiny/munchlax.png ../../../app/build/creatures/pokemon-gen8/shiny/munna.png ../../../app/build/creatures/pokemon-gen8/shiny/murkrow.png ../../../app/build/creatures/pokemon-gen8/shiny/musharna.png ../../../app/build/creatures/pokemon-gen8/shiny/naganadel.png ../../../app/build/creatures/pokemon-gen8/shiny/natu.png ../../../app/build/creatures/pokemon-gen8/shiny/necrozma-dawn.png ../../../app/build/creatures/pokemon-gen8/shiny/necrozma-dusk.png ../../../app/build/creatures/pokemon-gen8/shiny/necrozma-ultra.png ../../../app/build/creatures/pokemon-gen8/shiny/necrozma.png ../../../app/build/creatures/pokemon-gen8/shiny/nickit.png ../../../app/build/creatures/pokemon-gen8/shiny/nidoking.png ../../../app/build/creatures/pokemon-gen8/shiny/nidoqueen.png ../../../app/build/creatures/pokemon-gen8/shiny/nidoran-f.png ../../../app/build/creatures/pokemon-gen8/shiny/nidoran-m.png ../../../app/build/creatures/pokemon-gen8/shiny/nidorina.png ../../../app/build/creatures/pokemon-gen8/shiny/nidorino.png ../../../app/build/creatures/pokemon-gen8/shiny/nihilego.png ../../../app/build/creatures/pokemon-gen8/shiny/nincada.png ../../../app/build/creatures/pokemon-gen8/shiny/ninetales-alola.png ../../../app/build/creatures/pokemon-gen8/shiny/ninetales.png ../../../app/build/creatures/pokemon-gen8/shiny/ninjask.png ../../../app/build/creatures/pokemon-gen8/shiny/noctowl.png ../../../app/build/creatures/pokemon-gen8/shiny/noibat.png ../../../app/build/creatures/pokemon-gen8/shiny/noivern.png ../../../app/build/creatures/pokemon-gen8/shiny/nosepass.png ../../../app/build/creatures/pokemon-gen8/shiny/numel.png ../../../app/build/creatures/pokemon-gen8/shiny/nuzleaf.png ../../../app/build/creatures/pokemon-gen8/shiny/obstagoon.png ../../../app/build/creatures/pokemon-gen8/shiny/octillery.png ../../../app/build/creatures/pokemon-gen8/shiny/oddish.png ../../../app/build/creatures/pokemon-gen8/shiny/omanyte.png ../../../app/build/creatures/pokemon-gen8/shiny/omastar.png ../../../app/build/creatures/pokemon-gen8/shiny/onix.png ../../../app/build/creatures/pokemon-gen8/shiny/oranguru.png ../../../app/build/creatures/pokemon-gen8/shiny/orbeetle-gmax.png ../../../app/build/creatures/pokemon-gen8/shiny/orbeetle.png ../../../app/build/creatures/pokemon-gen8/shiny/oricorio-pau.png ../../../app/build/creatures/pokemon-gen8/shiny/oricorio-pom-pom.png ../../../app/build/creatures/pokemon-gen8/shiny/oricorio-sensu.png ../../../app/build/creatures/pokemon-gen8/shiny/oricorio.png ../../../app/build/creatures/pokemon-gen8/shiny/oshawott.png ../../../app/build/creatures/pokemon-gen8/shiny/pachirisu.png ../../../app/build/creatures/pokemon-gen8/shiny/palkia.png ../../../app/build/creatures/pokemon-gen8/shiny/palossand.png ../../../app/build/creatures/pokemon-gen8/shiny/palpitoad.png ../../../app/build/creatures/pokemon-gen8/shiny/pancham.png ../../../app/build/creatures/pokemon-gen8/shiny/pangoro.png ../../../app/build/creatures/pokemon-gen8/shiny/panpour.png ../../../app/build/creatures/pokemon-gen8/shiny/pansage.png ../../../app/build/creatures/pokemon-gen8/shiny/pansear.png ../../../app/build/creatures/pokemon-gen8/shiny/paras.png ../../../app/build/creatures/pokemon-gen8/shiny/parasect.png ../../../app/build/creatures/pokemon-gen8/shiny/passimian.png ../../../app/build/creatures/pokemon-gen8/shiny/patrat.png ../../../app/build/creatures/pokemon-gen8/shiny/pawniard.png ../../../app/build/creatures/pokemon-gen8/shiny/pelipper.png ../../../app/build/creatures/pokemon-gen8/shiny/perrserker.png ../../../app/build/creatures/pokemon-gen8/shiny/persian-alola.png ../../../app/build/creatures/pokemon-gen8/shiny/persian.png ../../../app/build/creatures/pokemon-gen8/shiny/petilil.png ../../../app/build/creatures/pokemon-gen8/shiny/phanpy.png ../../../app/build/creatures/pokemon-gen8/shiny/phantump.png ../../../app/build/creatures/pokemon-gen8/shiny/pheromosa.png ../../../app/build/creatures/pokemon-gen8/shiny/phione.png ../../../app/build/creatures/pokemon-gen8/shiny/pichu-spiky-eared.png ../../../app/build/creatures/pokemon-gen8/shiny/pichu.png ../../../app/build/creatures/pokemon-gen8/shiny/pidgeot-mega.png ../../../app/build/creatures/pokemon-gen8/shiny/pidgeot.png ../../../app/build/creatures/pokemon-gen8/shiny/pidgeotto.png ../../../app/build/creatures/pokemon-gen8/shiny/pidgey.png ../../../app/build/creatures/pokemon-gen8/shiny/pidove.png ../../../app/build/creatures/pokemon-gen8/shiny/pignite.png ../../../app/build/creatures/pokemon-gen8/shiny/pikachu-alola-cap.png ../../../app/build/creatures/pokemon-gen8/shiny/pikachu-belle.png ../../../app/build/creatures/pokemon-gen8/shiny/pikachu-cosplay.png ../../../app/build/creatures/pokemon-gen8/shiny/pikachu-gmax.png ../../../app/build/creatures/pokemon-gen8/shiny/pikachu-hoenn-cap.png ../../../app/build/creatures/pokemon-gen8/shiny/pikachu-kalos-cap.png ../../../app/build/creatures/pokemon-gen8/shiny/pikachu-libre.png ../../../app/build/creatures/pokemon-gen8/shiny/pikachu-original-cap.png ../../../app/build/creatures/pokemon-gen8/shiny/pikachu-partner-cap.png ../../../app/build/creatures/pokemon-gen8/shiny/pikachu-phd.png ../../../app/build/creatures/pokemon-gen8/shiny/pikachu-pop-star.png ../../../app/build/creatures/pokemon-gen8/shiny/pikachu-rock-star.png ../../../app/build/creatures/pokemon-gen8/shiny/pikachu-sinnoh-cap.png ../../../app/build/creatures/pokemon-gen8/shiny/pikachu-starter.png ../../../app/build/creatures/pokemon-gen8/shiny/pikachu-unova-cap.png ../../../app/build/creatures/pokemon-gen8/shiny/pikachu-world-cap.png ../../../app/build/creatures/pokemon-gen8/shiny/pikachu.png ../../../app/build/creatures/pokemon-gen8/shiny/pikipek.png ../../../app/build/creatures/pokemon-gen8/shiny/piloswine.png ../../../app/build/creatures/pokemon-gen8/shiny/pincurchin.png ../../../app/build/creatures/pokemon-gen8/shiny/pineco.png ../../../app/build/creatures/pokemon-gen8/shiny/pinsir-mega.png ../../../app/build/creatures/pokemon-gen8/shiny/pinsir.png ../../../app/build/creatures/pokemon-gen8/shiny/piplup.png ../../../app/build/creatures/pokemon-gen8/shiny/plusle.png ../../../app/build/creatures/pokemon-gen8/shiny/poipole.png ../../../app/build/creatures/pokemon-gen8/shiny/politoed.png ../../../app/build/creatures/pokemon-gen8/shiny/poliwag.png ../../../app/build/creatures/pokemon-gen8/shiny/poliwhirl.png ../../../app/build/creatures/pokemon-gen8/shiny/poliwrath.png ../../../app/build/creatures/pokemon-gen8/shiny/polteageist.png ../../../app/build/creatures/pokemon-gen8/shiny/ponyta-galar.png ../../../app/build/creatures/pokemon-gen8/shiny/ponyta.png ../../../app/build/creatures/pokemon-gen8/shiny/poochyena.png ../../../app/build/creatures/pokemon-gen8/shiny/popplio.png ../../../app/build/creatures/pokemon-gen8/shiny/porygon-z.png ../../../app/build/creatures/pokemon-gen8/shiny/porygon.png ../../../app/build/creatures/pokemon-gen8/shiny/porygon2.png ../../../app/build/creatures/pokemon-gen8/shiny/primarina.png ../../../app/build/creatures/pokemon-gen8/shiny/primeape.png ../../../app/build/creatures/pokemon-gen8/shiny/prinplup.png ../../../app/build/creatures/pokemon-gen8/shiny/probopass.png ../../../app/build/creatures/pokemon-gen8/shiny/psyduck.png ../../../app/build/creatures/pokemon-gen8/shiny/pumpkaboo-large.png ../../../app/build/creatures/pokemon-gen8/shiny/pumpkaboo-small.png ../../../app/build/creatures/pokemon-gen8/shiny/pumpkaboo-super.png ../../../app/build/creatures/pokemon-gen8/shiny/pumpkaboo.png ../../../app/build/creatures/pokemon-gen8/shiny/pupitar.png ../../../app/build/creatures/pokemon-gen8/shiny/purrloin.png ../../../app/build/creatures/pokemon-gen8/shiny/purugly.png ../../../app/build/creatures/pokemon-gen8/shiny/pyroar.png ../../../app/build/creatures/pokemon-gen8/shiny/pyukumuku.png ../../../app/build/creatures/pokemon-gen8/shiny/quagsire.png ../../../app/build/creatures/pokemon-gen8/shiny/quilava.png ../../../app/build/creatures/pokemon-gen8/shiny/quilladin.png ../../../app/build/creatures/pokemon-gen8/shiny/qwilfish.png ../../../app/build/creatures/pokemon-gen8/shiny/raboot.png ../../../app/build/creatures/pokemon-gen8/shiny/raichu-alola.png ../../../app/build/creatures/pokemon-gen8/shiny/raichu.png ../../../app/build/creatures/pokemon-gen8/shiny/raikou.png ../../../app/build/creatures/pokemon-gen8/shiny/ralts.png ../../../app/build/creatures/pokemon-gen8/shiny/rampardos.png ../../../app/build/creatures/pokemon-gen8/shiny/rapidash-galar.png ../../../app/build/creatures/pokemon-gen8/shiny/rapidash.png ../../../app/build/creatures/pokemon-gen8/shiny/raticate-alola.png ../../../app/build/creatures/pokemon-gen8/shiny/raticate.png ../../../app/build/creatures/pokemon-gen8/shiny/rattata-alola.png ../../../app/build/creatures/pokemon-gen8/shiny/rattata.png ../../../app/build/creatures/pokemon-gen8/shiny/rayquaza-mega.png ../../../app/build/creatures/pokemon-gen8/shiny/rayquaza.png ../../../app/build/creatures/pokemon-gen8/shiny/regice.png ../../../app/build/creatures/pokemon-gen8/shiny/regidrago.png ../../../app/build/creatures/pokemon-gen8/shiny/regieleki.png ../../../app/build/creatures/pokemon-gen8/shiny/regigigas.png ../../../app/build/creatures/pokemon-gen8/shiny/regirock.png ../../../app/build/creatures/pokemon-gen8/shiny/registeel.png ../../../app/build/creatures/pokemon-gen8/shiny/relicanth.png ../../../app/build/creatures/pokemon-gen8/shiny/remoraid.png ../../../app/build/creatures/pokemon-gen8/shiny/reshiram.png ../../../app/build/creatures/pokemon-gen8/shiny/reuniclus.png ../../../app/build/creatures/pokemon-gen8/shiny/rhydon.png ../../../app/build/creatures/pokemon-gen8/shiny/rhyhorn.png ../../../app/build/creatures/pokemon-gen8/shiny/rhyperior.png ../../../app/build/creatures/pokemon-gen8/shiny/ribombee.png ../../../app/build/creatures/pokemon-gen8/shiny/rillaboom-gmax.png ../../../app/build/creatures/pokemon-gen8/shiny/rillaboom.png ../../../app/build/creatures/pokemon-gen8/shiny/riolu.png ../../../app/build/creatures/pokemon-gen8/shiny/rockruff.png ../../../app/build/creatures/pokemon-gen8/shiny/roggenrola.png ../../../app/build/creatures/pokemon-gen8/shiny/rolycoly.png ../../../app/build/creatures/pokemon-gen8/shiny/rookidee.png ../../../app/build/creatures/pokemon-gen8/shiny/roselia.png ../../../app/build/creatures/pokemon-gen8/shiny/roserade.png ../../../app/build/creatures/pokemon-gen8/shiny/rotom-fan.png ../../../app/build/creatures/pokemon-gen8/shiny/rotom-frost.png ../../../app/build/creatures/pokemon-gen8/shiny/rotom-heat.png ../../../app/build/creatures/pokemon-gen8/shiny/rotom-mow.png ../../../app/build/creatures/pokemon-gen8/shiny/rotom-wash.png ../../../app/build/creatures/pokemon-gen8/shiny/rotom.png ../../../app/build/creatures/pokemon-gen8/shiny/rowlet.png ../../../app/build/creatures/pokemon-gen8/shiny/rufflet.png ../../../app/build/creatures/pokemon-gen8/shiny/runerigus.png ../../../app/build/creatures/pokemon-gen8/shiny/sableye-mega.png ../../../app/build/creatures/pokemon-gen8/shiny/sableye.png ../../../app/build/creatures/pokemon-gen8/shiny/salamence-mega.png ../../../app/build/creatures/pokemon-gen8/shiny/salamence.png ../../../app/build/creatures/pokemon-gen8/shiny/salandit.png ../../../app/build/creatures/pokemon-gen8/shiny/salazzle.png ../../../app/build/creatures/pokemon-gen8/shiny/samurott.png ../../../app/build/creatures/pokemon-gen8/shiny/sandaconda-gmax.png ../../../app/build/creatures/pokemon-gen8/shiny/sandaconda.png ../../../app/build/creatures/pokemon-gen8/shiny/sandile.png ../../../app/build/creatures/pokemon-gen8/shiny/sandshrew-alola.png ../../../app/build/creatures/pokemon-gen8/shiny/sandshrew.png ../../../app/build/creatures/pokemon-gen8/shiny/sandslash-alola.png ../../../app/build/creatures/pokemon-gen8/shiny/sandslash.png ../../../app/build/creatures/pokemon-gen8/shiny/sandygast.png ../../../app/build/creatures/pokemon-gen8/shiny/sawk.png ../../../app/build/creatures/pokemon-gen8/shiny/sawsbuck-autumn.png ../../../app/build/creatures/pokemon-gen8/shiny/sawsbuck-summer.png ../../../app/build/creatures/pokemon-gen8/shiny/sawsbuck-winter.png ../../../app/build/creatures/pokemon-gen8/shiny/sawsbuck.png ../../../app/build/creatures/pokemon-gen8/shiny/scatterbug.png ../../../app/build/creatures/pokemon-gen8/shiny/sceptile-mega.png ../../../app/build/creatures/pokemon-gen8/shiny/sceptile.png ../../../app/build/creatures/pokemon-gen8/shiny/scizor-mega.png ../../../app/build/creatures/pokemon-gen8/shiny/scizor.png ../../../app/build/creatures/pokemon-gen8/shiny/scolipede.png ../../../app/build/creatures/pokemon-gen8/shiny/scorbunny.png ../../../app/build/creatures/pokemon-gen8/shiny/scrafty.png ../../../app/build/creatures/pokemon-gen8/shiny/scraggy.png ../../../app/build/creatures/pokemon-gen8/shiny/scyther.png ../../../app/build/creatures/pokemon-gen8/shiny/seadra.png ../../../app/build/creatures/pokemon-gen8/shiny/seaking.png ../../../app/build/creatures/pokemon-gen8/shiny/sealeo.png ../../../app/build/creatures/pokemon-gen8/shiny/seedot.png ../../../app/build/creatures/pokemon-gen8/shiny/seel.png ../../../app/build/creatures/pokemon-gen8/shiny/seismitoad.png ../../../app/build/creatures/pokemon-gen8/shiny/sentret.png ../../../app/build/creatures/pokemon-gen8/shiny/serperior.png ../../../app/build/creatures/pokemon-gen8/shiny/servine.png ../../../app/build/creatures/pokemon-gen8/shiny/seviper.png ../../../app/build/creatures/pokemon-gen8/shiny/sewaddle.png ../../../app/build/creatures/pokemon-gen8/shiny/sharpedo-mega.png ../../../app/build/creatures/pokemon-gen8/shiny/sharpedo.png ../../../app/build/creatures/pokemon-gen8/shiny/shaymin-sky.png ../../../app/build/creatures/pokemon-gen8/shiny/shaymin.png ../../../app/build/creatures/pokemon-gen8/shiny/shedinja.png ../../../app/build/creatures/pokemon-gen8/shiny/shelgon.png ../../../app/build/creatures/pokemon-gen8/shiny/shellder.png ../../../app/build/creatures/pokemon-gen8/shiny/shellos-east.png ../../../app/build/creatures/pokemon-gen8/shiny/shellos.png ../../../app/build/creatures/pokemon-gen8/shiny/shelmet.png ../../../app/build/creatures/pokemon-gen8/shiny/shieldon.png ../../../app/build/creatures/pokemon-gen8/shiny/shiftry.png ../../../app/build/creatures/pokemon-gen8/shiny/shiinotic.png ../../../app/build/creatures/pokemon-gen8/shiny/shinx.png ../../../app/build/creatures/pokemon-gen8/shiny/shroomish.png ../../../app/build/creatures/pokemon-gen8/shiny/shuckle.png ../../../app/build/creatures/pokemon-gen8/shiny/shuppet.png ../../../app/build/creatures/pokemon-gen8/shiny/sigilyph.png ../../../app/build/creatures/pokemon-gen8/shiny/silcoon.png ../../../app/build/creatures/pokemon-gen8/shiny/silicobra.png ../../../app/build/creatures/pokemon-gen8/shiny/silvally-bug.png ../../../app/build/creatures/pokemon-gen8/shiny/silvally-dark.png ../../../app/build/creatures/pokemon-gen8/shiny/silvally-dragon.png ../../../app/build/creatures/pokemon-gen8/shiny/silvally-electric.png ../../../app/build/creatures/pokemon-gen8/shiny/silvally-fairy.png ../../../app/build/creatures/pokemon-gen8/shiny/silvally-fighting.png ../../../app/build/creatures/pokemon-gen8/shiny/silvally-fire.png ../../../app/build/creatures/pokemon-gen8/shiny/silvally-flying.png ../../../app/build/creatures/pokemon-gen8/shiny/silvally-ghost.png ../../../app/build/creatures/pokemon-gen8/shiny/silvally-grass.png ../../../app/build/creatures/pokemon-gen8/shiny/silvally-ground.png ../../../app/build/creatures/pokemon-gen8/shiny/silvally-ice.png ../../../app/build/creatures/pokemon-gen8/shiny/silvally-poison.png ../../../app/build/creatures/pokemon-gen8/shiny/silvally-psychic.png ../../../app/build/creatures/pokemon-gen8/shiny/silvally-rock.png ../../../app/build/creatures/pokemon-gen8/shiny/silvally-steel.png ../../../app/build/creatures/pokemon-gen8/shiny/silvally-water.png ../../../app/build/creatures/pokemon-gen8/shiny/silvally.png ../../../app/build/creatures/pokemon-gen8/shiny/simipour.png ../../../app/build/creatures/pokemon-gen8/shiny/simisage.png ../../../app/build/creatures/pokemon-gen8/shiny/simisear.png ../../../app/build/creatures/pokemon-gen8/shiny/sinistea.png ../../../app/build/creatures/pokemon-gen8/shiny/sirfetchd.png ../../../app/build/creatures/pokemon-gen8/shiny/sizzlipede.png ../../../app/build/creatures/pokemon-gen8/shiny/skarmory.png ../../../app/build/creatures/pokemon-gen8/shiny/skiddo.png ../../../app/build/creatures/pokemon-gen8/shiny/skiploom.png ../../../app/build/creatures/pokemon-gen8/shiny/skitty.png ../../../app/build/creatures/pokemon-gen8/shiny/skorupi.png ../../../app/build/creatures/pokemon-gen8/shiny/skrelp.png ../../../app/build/creatures/pokemon-gen8/shiny/skuntank.png ../../../app/build/creatures/pokemon-gen8/shiny/skwovet.png ../../../app/build/creatures/pokemon-gen8/shiny/slaking.png ../../../app/build/creatures/pokemon-gen8/shiny/slakoth.png ../../../app/build/creatures/pokemon-gen8/shiny/sliggoo.png ../../../app/build/creatures/pokemon-gen8/shiny/slowbro-galar.png ../../../app/build/creatures/pokemon-gen8/shiny/slowbro-mega.png ../../../app/build/creatures/pokemon-gen8/shiny/slowbro.png ../../../app/build/creatures/pokemon-gen8/shiny/slowking-galar.png ../../../app/build/creatures/pokemon-gen8/shiny/slowking.png ../../../app/build/creatures/pokemon-gen8/shiny/slowpoke-galar.png ../../../app/build/creatures/pokemon-gen8/shiny/slowpoke.png ../../../app/build/creatures/pokemon-gen8/shiny/slugma.png ../../../app/build/creatures/pokemon-gen8/shiny/slurpuff.png ../../../app/build/creatures/pokemon-gen8/shiny/smeargle.png ../../../app/build/creatures/pokemon-gen8/shiny/smoochum.png ../../../app/build/creatures/pokemon-gen8/shiny/sneasel.png ../../../app/build/creatures/pokemon-gen8/shiny/snivy.png ../../../app/build/creatures/pokemon-gen8/shiny/snom.png ../../../app/build/creatures/pokemon-gen8/shiny/snorlax-gmax.png ../../../app/build/creatures/pokemon-gen8/shiny/snorlax.png ../../../app/build/creatures/pokemon-gen8/shiny/snorunt.png ../../../app/build/creatures/pokemon-gen8/shiny/snover.png ../../../app/build/creatures/pokemon-gen8/shiny/snubbull.png ../../../app/build/creatures/pokemon-gen8/shiny/sobble.png ../../../app/build/creatures/pokemon-gen8/shiny/solgaleo.png ../../../app/build/creatures/pokemon-gen8/shiny/solosis.png ../../../app/build/creatures/pokemon-gen8/shiny/solrock.png ../../../app/build/creatures/pokemon-gen8/shiny/spearow.png ../../../app/build/creatures/pokemon-gen8/shiny/spectrier.png ../../../app/build/creatures/pokemon-gen8/shiny/spewpa.png ../../../app/build/creatures/pokemon-gen8/shiny/spheal.png ../../../app/build/creatures/pokemon-gen8/shiny/spinarak.png ../../../app/build/creatures/pokemon-gen8/shiny/spinda-blank.png ../../../app/build/creatures/pokemon-gen8/shiny/spinda-filled.png ../../../app/build/creatures/pokemon-gen8/shiny/spinda.png ../../../app/build/creatures/pokemon-gen8/shiny/spiritomb.png ../../../app/build/creatures/pokemon-gen8/shiny/spoink.png ../../../app/build/creatures/pokemon-gen8/shiny/spritzee.png ../../../app/build/creatures/pokemon-gen8/shiny/squirtle.png ../../../app/build/creatures/pokemon-gen8/shiny/stakataka.png ../../../app/build/creatures/pokemon-gen8/shiny/stantler.png ../../../app/build/creatures/pokemon-gen8/shiny/staraptor.png ../../../app/build/creatures/pokemon-gen8/shiny/staravia.png ../../../app/build/creatures/pokemon-gen8/shiny/starly.png ../../../app/build/creatures/pokemon-gen8/shiny/starmie.png ../../../app/build/creatures/pokemon-gen8/shiny/staryu.png ../../../app/build/creatures/pokemon-gen8/shiny/steelix-mega.png ../../../app/build/creatures/pokemon-gen8/shiny/steelix.png ../../../app/build/creatures/pokemon-gen8/shiny/steenee.png ../../../app/build/creatures/pokemon-gen8/shiny/stonjourner.png ../../../app/build/creatures/pokemon-gen8/shiny/stoutland.png ../../../app/build/creatures/pokemon-gen8/shiny/stufful.png ../../../app/build/creatures/pokemon-gen8/shiny/stunfisk-galar.png ../../../app/build/creatures/pokemon-gen8/shiny/stunfisk.png ../../../app/build/creatures/pokemon-gen8/shiny/stunky.png ../../../app/build/creatures/pokemon-gen8/shiny/sudowoodo.png ../../../app/build/creatures/pokemon-gen8/shiny/suicune.png ../../../app/build/creatures/pokemon-gen8/shiny/sunflora.png ../../../app/build/creatures/pokemon-gen8/shiny/sunkern.png ../../../app/build/creatures/pokemon-gen8/shiny/surskit.png ../../../app/build/creatures/pokemon-gen8/shiny/swablu.png ../../../app/build/creatures/pokemon-gen8/shiny/swadloon.png ../../../app/build/creatures/pokemon-gen8/shiny/swalot.png ../../../app/build/creatures/pokemon-gen8/shiny/swampert-mega.png ../../../app/build/creatures/pokemon-gen8/shiny/swampert.png ../../../app/build/creatures/pokemon-gen8/shiny/swanna.png ../../../app/build/creatures/pokemon-gen8/shiny/swellow.png ../../../app/build/creatures/pokemon-gen8/shiny/swinub.png ../../../app/build/creatures/pokemon-gen8/shiny/swirlix.png ../../../app/build/creatures/pokemon-gen8/shiny/swoobat.png ../../../app/build/creatures/pokemon-gen8/shiny/sylveon.png ../../../app/build/creatures/pokemon-gen8/shiny/taillow.png ../../../app/build/creatures/pokemon-gen8/shiny/talonflame.png ../../../app/build/creatures/pokemon-gen8/shiny/tangela.png ../../../app/build/creatures/pokemon-gen8/shiny/tangrowth.png ../../../app/build/creatures/pokemon-gen8/shiny/tapu-bulu.png ../../../app/build/creatures/pokemon-gen8/shiny/tapu-fini.png ../../../app/build/creatures/pokemon-gen8/shiny/tapu-koko.png ../../../app/build/creatures/pokemon-gen8/shiny/tapu-lele.png ../../../app/build/creatures/pokemon-gen8/shiny/tauros.png ../../../app/build/creatures/pokemon-gen8/shiny/teddiursa.png ../../../app/build/creatures/pokemon-gen8/shiny/tentacool.png ../../../app/build/creatures/pokemon-gen8/shiny/tentacruel.png ../../../app/build/creatures/pokemon-gen8/shiny/tepig.png ../../../app/build/creatures/pokemon-gen8/shiny/terrakion.png ../../../app/build/creatures/pokemon-gen8/shiny/thievul.png ../../../app/build/creatures/pokemon-gen8/shiny/throh.png ../../../app/build/creatures/pokemon-gen8/shiny/thundurus-therian.png ../../../app/build/creatures/pokemon-gen8/shiny/thundurus.png ../../../app/build/creatures/pokemon-gen8/shiny/thwackey.png ../../../app/build/creatures/pokemon-gen8/shiny/timburr.png ../../../app/build/creatures/pokemon-gen8/shiny/tirtouga.png ../../../app/build/creatures/pokemon-gen8/shiny/togedemaru.png ../../../app/build/creatures/pokemon-gen8/shiny/togekiss.png ../../../app/build/creatures/pokemon-gen8/shiny/togepi.png ../../../app/build/creatures/pokemon-gen8/shiny/togetic.png ../../../app/build/creatures/pokemon-gen8/shiny/torchic.png ../../../app/build/creatures/pokemon-gen8/shiny/torkoal.png ../../../app/build/creatures/pokemon-gen8/shiny/tornadus-therian.png ../../../app/build/creatures/pokemon-gen8/shiny/tornadus.png ../../../app/build/creatures/pokemon-gen8/shiny/torracat.png ../../../app/build/creatures/pokemon-gen8/shiny/torterra.png ../../../app/build/creatures/pokemon-gen8/shiny/totodile.png ../../../app/build/creatures/pokemon-gen8/shiny/toucannon.png ../../../app/build/creatures/pokemon-gen8/shiny/toxapex.png ../../../app/build/creatures/pokemon-gen8/shiny/toxel.png ../../../app/build/creatures/pokemon-gen8/shiny/toxicroak.png ../../../app/build/creatures/pokemon-gen8/shiny/toxtricity-gmax.png ../../../app/build/creatures/pokemon-gen8/shiny/toxtricity-low-key.png ../../../app/build/creatures/pokemon-gen8/shiny/toxtricity.png ../../../app/build/creatures/pokemon-gen8/shiny/tranquill.png ../../../app/build/creatures/pokemon-gen8/shiny/trapinch.png ../../../app/build/creatures/pokemon-gen8/shiny/treecko.png ../../../app/build/creatures/pokemon-gen8/shiny/trevenant.png ../../../app/build/creatures/pokemon-gen8/shiny/tropius.png ../../../app/build/creatures/pokemon-gen8/shiny/trubbish.png ../../../app/build/creatures/pokemon-gen8/shiny/trumbeak.png ../../../app/build/creatures/pokemon-gen8/shiny/tsareena.png ../../../app/build/creatures/pokemon-gen8/shiny/turtonator.png ../../../app/build/creatures/pokemon-gen8/shiny/turtwig.png ../../../app/build/creatures/pokemon-gen8/shiny/tympole.png ../../../app/build/creatures/pokemon-gen8/shiny/tynamo.png ../../../app/build/creatures/pokemon-gen8/shiny/type-null.png ../../../app/build/creatures/pokemon-gen8/shiny/typhlosion.png ../../../app/build/creatures/pokemon-gen8/shiny/tyranitar-mega.png ../../../app/build/creatures/pokemon-gen8/shiny/tyranitar.png ../../../app/build/creatures/pokemon-gen8/shiny/tyrantrum.png ../../../app/build/creatures/pokemon-gen8/shiny/tyrogue.png ../../../app/build/creatures/pokemon-gen8/shiny/tyrunt.png ../../../app/build/creatures/pokemon-gen8/shiny/umbreon.png ../../../app/build/creatures/pokemon-gen8/shiny/unfezant.png ../../../app/build/creatures/pokemon-gen8/shiny/unown-b.png ../../../app/build/creatures/pokemon-gen8/shiny/unown-c.png ../../../app/build/creatures/pokemon-gen8/shiny/unown-d.png ../../../app/build/creatures/pokemon-gen8/shiny/unown-e.png ../../../app/build/creatures/pokemon-gen8/shiny/unown-exclamation.png ../../../app/build/creatures/pokemon-gen8/shiny/unown-f.png ../../../app/build/creatures/pokemon-gen8/shiny/unown-g.png ../../../app/build/creatures/pokemon-gen8/shiny/unown-h.png ../../../app/build/creatures/pokemon-gen8/shiny/unown-i.png ../../../app/build/creatures/pokemon-gen8/shiny/unown-j.png ../../../app/build/creatures/pokemon-gen8/shiny/unown-k.png ../../../app/build/creatures/pokemon-gen8/shiny/unown-l.png ../../../app/build/creatures/pokemon-gen8/shiny/unown-m.png ../../../app/build/creatures/pokemon-gen8/shiny/unown-n.png ../../../app/build/creatures/pokemon-gen8/shiny/unown-o.png ../../../app/build/creatures/pokemon-gen8/shiny/unown-p.png ../../../app/build/creatures/pokemon-gen8/shiny/unown-q.png ../../../app/build/creatures/pokemon-gen8/shiny/unown-question.png ../../../app/build/creatures/pokemon-gen8/shiny/unown-r.png ../../../app/build/creatures/pokemon-gen8/shiny/unown-s.png ../../../app/build/creatures/pokemon-gen8/shiny/unown-t.png ../../../app/build/creatures/pokemon-gen8/shiny/unown-u.png ../../../app/build/creatures/pokemon-gen8/shiny/unown-v.png ../../../app/build/creatures/pokemon-gen8/shiny/unown-w.png ../../../app/build/creatures/pokemon-gen8/shiny/unown-x.png ../../../app/build/creatures/pokemon-gen8/shiny/unown-y.png ../../../app/build/creatures/pokemon-gen8/shiny/unown-z.png ../../../app/build/creatures/pokemon-gen8/shiny/unown.png ../../../app/build/creatures/pokemon-gen8/shiny/ursaring.png ../../../app/build/creatures/pokemon-gen8/shiny/urshifu-gmax.png ../../../app/build/creatures/pokemon-gen8/shiny/urshifu-rapid-strike-gmax.png ../../../app/build/creatures/pokemon-gen8/shiny/urshifu.png ../../../app/build/creatures/pokemon-gen8/shiny/uxie.png ../../../app/build/creatures/pokemon-gen8/shiny/vanillish.png ../../../app/build/creatures/pokemon-gen8/shiny/vanillite.png ../../../app/build/creatures/pokemon-gen8/shiny/vanilluxe.png ../../../app/build/creatures/pokemon-gen8/shiny/vaporeon.png ../../../app/build/creatures/pokemon-gen8/shiny/venipede.png ../../../app/build/creatures/pokemon-gen8/shiny/venomoth.png ../../../app/build/creatures/pokemon-gen8/shiny/venonat.png ../../../app/build/creatures/pokemon-gen8/shiny/venusaur-gmax.png ../../../app/build/creatures/pokemon-gen8/shiny/venusaur-mega.png ../../../app/build/creatures/pokemon-gen8/shiny/venusaur.png ../../../app/build/creatures/pokemon-gen8/shiny/vespiquen.png ../../../app/build/creatures/pokemon-gen8/shiny/vibrava.png ../../../app/build/creatures/pokemon-gen8/shiny/victini.png ../../../app/build/creatures/pokemon-gen8/shiny/victreebel.png ../../../app/build/creatures/pokemon-gen8/shiny/vigoroth.png ../../../app/build/creatures/pokemon-gen8/shiny/vikavolt.png ../../../app/build/creatures/pokemon-gen8/shiny/vileplume.png ../../../app/build/creatures/pokemon-gen8/shiny/virizion.png ../../../app/build/creatures/pokemon-gen8/shiny/vivillon-archipelago.png ../../../app/build/creatures/pokemon-gen8/shiny/vivillon-continental.png ../../../app/build/creatures/pokemon-gen8/shiny/vivillon-elegant.png ../../../app/build/creatures/pokemon-gen8/shiny/vivillon-fancy.png ../../../app/build/creatures/pokemon-gen8/shiny/vivillon-garden.png ../../../app/build/creatures/pokemon-gen8/shiny/vivillon-high-plains.png ../../../app/build/creatures/pokemon-gen8/shiny/vivillon-icy-snow.png ../../../app/build/creatures/pokemon-gen8/shiny/vivillon-jungle.png ../../../app/build/creatures/pokemon-gen8/shiny/vivillon-marine.png ../../../app/build/creatures/pokemon-gen8/shiny/vivillon-modern.png ../../../app/build/creatures/pokemon-gen8/shiny/vivillon-monsoon.png ../../../app/build/creatures/pokemon-gen8/shiny/vivillon-ocean.png ../../../app/build/creatures/pokemon-gen8/shiny/vivillon-poke-ball.png ../../../app/build/creatures/pokemon-gen8/shiny/vivillon-polar.png ../../../app/build/creatures/pokemon-gen8/shiny/vivillon-river.png ../../../app/build/creatures/pokemon-gen8/shiny/vivillon-sandstorm.png ../../../app/build/creatures/pokemon-gen8/shiny/vivillon-savanna.png ../../../app/build/creatures/pokemon-gen8/shiny/vivillon-sun.png ../../../app/build/creatures/pokemon-gen8/shiny/vivillon-tundra.png ../../../app/build/creatures/pokemon-gen8/shiny/vivillon.png ../../../app/build/creatures/pokemon-gen8/shiny/volbeat.png ../../../app/build/creatures/pokemon-gen8/shiny/volcanion.png ../../../app/build/creatures/pokemon-gen8/shiny/volcarona.png ../../../app/build/creatures/pokemon-gen8/shiny/voltorb.png ../../../app/build/creatures/pokemon-gen8/shiny/vullaby.png ../../../app/build/creatures/pokemon-gen8/shiny/vulpix-alola.png ../../../app/build/creatures/pokemon-gen8/shiny/vulpix.png ../../../app/build/creatures/pokemon-gen8/shiny/wailmer.png ../../../app/build/creatures/pokemon-gen8/shiny/wailord.png ../../../app/build/creatures/pokemon-gen8/shiny/walrein.png ../../../app/build/creatures/pokemon-gen8/shiny/wartortle.png ../../../app/build/creatures/pokemon-gen8/shiny/watchog.png ../../../app/build/creatures/pokemon-gen8/shiny/weavile.png ../../../app/build/creatures/pokemon-gen8/shiny/weedle.png ../../../app/build/creatures/pokemon-gen8/shiny/weepinbell.png ../../../app/build/creatures/pokemon-gen8/shiny/weezing-galar.png ../../../app/build/creatures/pokemon-gen8/shiny/weezing.png ../../../app/build/creatures/pokemon-gen8/shiny/whimsicott.png ../../../app/build/creatures/pokemon-gen8/shiny/whirlipede.png ../../../app/build/creatures/pokemon-gen8/shiny/whiscash.png ../../../app/build/creatures/pokemon-gen8/shiny/whismur.png ../../../app/build/creatures/pokemon-gen8/shiny/wigglytuff.png ../../../app/build/creatures/pokemon-gen8/shiny/wimpod.png ../../../app/build/creatures/pokemon-gen8/shiny/wingull.png ../../../app/build/creatures/pokemon-gen8/shiny/wishiwashi-school.png ../../../app/build/creatures/pokemon-gen8/shiny/wishiwashi.png ../../../app/build/creatures/pokemon-gen8/shiny/wobbuffet.png ../../../app/build/creatures/pokemon-gen8/shiny/woobat.png ../../../app/build/creatures/pokemon-gen8/shiny/wooloo.png ../../../app/build/creatures/pokemon-gen8/shiny/wooper.png ../../../app/build/creatures/pokemon-gen8/shiny/wormadam-sandy.png ../../../app/build/creatures/pokemon-gen8/shiny/wormadam-trash.png ../../../app/build/creatures/pokemon-gen8/shiny/wormadam.png ../../../app/build/creatures/pokemon-gen8/shiny/wurmple.png ../../../app/build/creatures/pokemon-gen8/shiny/wynaut.png ../../../app/build/creatures/pokemon-gen8/shiny/xatu.png ../../../app/build/creatures/pokemon-gen8/shiny/xerneas-active.png ../../../app/build/creatures/pokemon-gen8/shiny/xerneas.png ../../../app/build/creatures/pokemon-gen8/shiny/xurkitree.png ../../../app/build/creatures/pokemon-gen8/shiny/yamask-galar.png ../../../app/build/creatures/pokemon-gen8/shiny/yamask.png ../../../app/build/creatures/pokemon-gen8/shiny/yamper.png ../../../app/build/creatures/pokemon-gen8/shiny/yanma.png ../../../app/build/creatures/pokemon-gen8/shiny/yanmega.png ../../../app/build/creatures/pokemon-gen8/shiny/yungoos.png ../../../app/build/creatures/pokemon-gen8/shiny/yveltal.png ../../../app/build/creatures/pokemon-gen8/shiny/zacian-crowned.png ../../../app/build/creatures/pokemon-gen8/shiny/zacian.png ../../../app/build/creatures/pokemon-gen8/shiny/zamazenta-crowned.png ../../../app/build/creatures/pokemon-gen8/shiny/zamazenta.png ../../../app/build/creatures/pokemon-gen8/shiny/zangoose.png ../../../app/build/creatures/pokemon-gen8/shiny/zapdos-galar.png ../../../app/build/creatures/pokemon-gen8/shiny/zapdos.png ../../../app/build/creatures/pokemon-gen8/shiny/zarude-dada.png ../../../app/build/creatures/pokemon-gen8/shiny/zarude.png ../../../app/build/creatures/pokemon-gen8/shiny/zebstrika.png ../../../app/build/creatures/pokemon-gen8/shiny/zekrom.png ../../../app/build/creatures/pokemon-gen8/shiny/zeraora.png ../../../app/build/creatures/pokemon-gen8/shiny/zigzagoon-galar.png ../../../app/build/creatures/pokemon-gen8/shiny/zigzagoon.png ../../../app/build/creatures/pokemon-gen8/shiny/zoroark.png ../../../app/build/creatures/pokemon-gen8/shiny/zorua.png ../../../app/build/creatures/pokemon-gen8/shiny/zubat.png ../../../app/build/creatures/pokemon-gen8/shiny/zweilous.png ../../../app/build/creatures/pokemon-gen8/shiny/zygarde-10.png ../../../app/build/creatures/pokemon-gen8/shiny/zygarde-complete.png ../../../app/build/creatures/pokemon-gen8/shiny/zygarde.png ../../../app/build/creatures/pokemon-gen8/unknown-gen5.png ../../../app/build/creatures/pokemon-gen8/unknown.png pivotPoint 0,0 spriteScale 1 scale9Enabled scale9Borders 17,14,34,28 scale9Paddings 17,14,34,28 scale9FromFile fileList ../../../app/build/creatures/pokemon-gen8 ignoreFileList replaceList ignoredWarnings commonDivisorX 1 commonDivisorY 1 packNormalMaps autodetectNormalMaps normalMapFilter normalMapSuffix normalMapSheetFileName exporterProperties css::media-query-2x value (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) css::sprite-prefix value ================================================ FILE: copyrighted/textures/rse/npcs.json ================================================ {"frames": { "ace_trainer_down_0": { "frame": {"x":256,"y":113,"w":14,"h":20}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "ace_trainer_down_1": { "frame": {"x":521,"y":45,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "ace_trainer_down_2": { "frame": {"x":510,"y":1,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "ace_trainer_left_0": { "frame": {"x":212,"y":115,"w":12,"h":20}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "ace_trainer_left_1": { "frame": {"x":1059,"y":67,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "ace_trainer_left_2": { "frame": {"x":1060,"y":45,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "ace_trainer_right_0": { "frame": {"x":1064,"y":23,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "ace_trainer_right_1": { "frame": {"x":1065,"y":1,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "ace_trainer_right_2": { "frame": {"x":1069,"y":89,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "ace_trainer_up_0": { "frame": {"x":525,"y":23,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "ace_trainer_up_1": { "frame": {"x":526,"y":1,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "ace_trainer_up_2": { "frame": {"x":537,"y":45,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "aroma_down_0": { "frame": {"x":104,"y":71,"w":16,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "aroma_down_1": { "frame": {"x":122,"y":71,"w":16,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "aroma_down_2": { "frame": {"x":210,"y":93,"w":16,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "aroma_left_0": { "frame": {"x":541,"y":23,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "aroma_left_1": { "frame": {"x":542,"y":1,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "aroma_left_2": { "frame": {"x":537,"y":67,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "aroma_right_0": { "frame": {"x":547,"y":89,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "aroma_right_1": { "frame": {"x":553,"y":45,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "aroma_right_2": { "frame": {"x":557,"y":23,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "aroma_up_0": { "frame": {"x":218,"y":70,"w":16,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "aroma_up_1": { "frame": {"x":228,"y":92,"w":16,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "aroma_up_2": { "frame": {"x":220,"y":47,"w":16,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "black_belt_down_0": { "frame": {"x":278,"y":112,"w":15,"h":20}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":15,"h":20}, "sourceSize": {"w":15,"h":20} }, "black_belt_down_1": { "frame": {"x":436,"y":45,"w":15,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":15,"h":20}, "sourceSize": {"w":15,"h":20} }, "black_belt_down_2": { "frame": {"x":558,"y":1,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "black_belt_left_0": { "frame": {"x":1073,"y":67,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "black_belt_left_1": { "frame": {"x":234,"y":114,"w":13,"h":20}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":13,"h":20}, "sourceSize": {"w":13,"h":20} }, "black_belt_left_2": { "frame": {"x":969,"y":67,"w":13,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":13,"h":20}, "sourceSize": {"w":13,"h":20} }, "black_belt_right_0": { "frame": {"x":1074,"y":45,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "black_belt_right_1": { "frame": {"x":979,"y":89,"w":13,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":13,"h":20}, "sourceSize": {"w":13,"h":20} }, "black_belt_right_2": { "frame": {"x":984,"y":67,"w":13,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":13,"h":20}, "sourceSize": {"w":13,"h":20} }, "black_belt_up_0": { "frame": {"x":452,"y":67,"w":15,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":15,"h":20}, "sourceSize": {"w":15,"h":20} }, "black_belt_up_1": { "frame": {"x":553,"y":67,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "black_belt_up_2": { "frame": {"x":462,"y":89,"w":15,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":15,"h":20}, "sourceSize": {"w":15,"h":20} }, "boat_down_0": { "frame": {"x":1,"y":69,"w":20,"h":29}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":20,"h":29}, "sourceSize": {"w":20,"h":29} }, "boat_left_0": { "frame": {"x":1,"y":1,"w":32,"h":29}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":32,"h":29}, "sourceSize": {"w":32,"h":29} }, "boat_right_0": { "frame": {"x":1,"y":35,"w":32,"h":29}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":32,"h":29}, "sourceSize": {"w":32,"h":29} }, "boat_up_0": { "frame": {"x":23,"y":69,"w":20,"h":29}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":20,"h":29}, "sourceSize": {"w":20,"h":29} }, "brawly_down_0": { "frame": {"x":236,"y":69,"w":16,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "brawly_left_0": { "frame": {"x":985,"y":45,"w":13,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":13,"h":20}, "sourceSize": {"w":13,"h":20} }, "brawly_right_0": { "frame": {"x":989,"y":23,"w":13,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":13,"h":20}, "sourceSize": {"w":13,"h":20} }, "brawly_up_0": { "frame": {"x":246,"y":91,"w":16,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "bug_catcher_down_0": { "frame": {"x":224,"y":24,"w":16,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "bug_catcher_down_1": { "frame": {"x":238,"y":46,"w":16,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "bug_catcher_down_2": { "frame": {"x":254,"y":68,"w":16,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "bug_catcher_left_0": { "frame": {"x":264,"y":90,"w":16,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "bug_catcher_left_1": { "frame": {"x":227,"y":1,"w":16,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "bug_catcher_left_2": { "frame": {"x":242,"y":23,"w":16,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "bug_catcher_right_0": { "frame": {"x":245,"y":1,"w":16,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "bug_catcher_right_1": { "frame": {"x":256,"y":45,"w":16,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "bug_catcher_right_2": { "frame": {"x":260,"y":23,"w":16,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "bug_catcher_up_0": { "frame": {"x":263,"y":1,"w":16,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "bug_catcher_up_1": { "frame": {"x":272,"y":67,"w":16,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "bug_catcher_up_2": { "frame": {"x":274,"y":45,"w":16,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "elder_f_down_0": { "frame": {"x":32,"y":49,"w":16,"h":18}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":18}, "sourceSize": {"w":16,"h":18} }, "elder_f_down_1": { "frame": {"x":50,"y":49,"w":16,"h":18}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":18}, "sourceSize": {"w":16,"h":18} }, "elder_f_down_2": { "frame": {"x":68,"y":73,"w":16,"h":18}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":18}, "sourceSize": {"w":16,"h":18} }, "elder_f_left_0": { "frame": {"x":1291,"y":109,"w":14,"h":18}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":18}, "sourceSize": {"w":14,"h":18} }, "elder_f_left_1": { "frame": {"x":1407,"y":85,"w":14,"h":18}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":18}, "sourceSize": {"w":14,"h":18} }, "elder_f_left_2": { "frame": {"x":1416,"y":105,"w":14,"h":18}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":18}, "sourceSize": {"w":14,"h":18} }, "elder_f_right_0": { "frame": {"x":1410,"y":43,"w":14,"h":18}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":18}, "sourceSize": {"w":14,"h":18} }, "elder_f_right_1": { "frame": {"x":1414,"y":22,"w":14,"h":18}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":18}, "sourceSize": {"w":14,"h":18} }, "elder_f_right_2": { "frame": {"x":1417,"y":1,"w":14,"h":18}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":18}, "sourceSize": {"w":14,"h":18} }, "elder_f_up_0": { "frame": {"x":86,"y":73,"w":16,"h":18}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":18}, "sourceSize": {"w":16,"h":18} }, "elder_f_up_1": { "frame": {"x":812,"y":111,"w":16,"h":18}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":18}, "sourceSize": {"w":16,"h":18} }, "elder_f_up_2": { "frame": {"x":832,"y":111,"w":16,"h":18}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":18}, "sourceSize": {"w":16,"h":18} }, "elder_m_down_0": { "frame": {"x":476,"y":111,"w":16,"h":19}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":19}, "sourceSize": {"w":16,"h":19} }, "elder_m_left_0": { "frame": {"x":1261,"y":1,"w":14,"h":19}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":19}, "sourceSize": {"w":14,"h":19} }, "elder_m_right_0": { "frame": {"x":1265,"y":89,"w":14,"h":19}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":19}, "sourceSize": {"w":14,"h":19} }, "elder_m_up_0": { "frame": {"x":497,"y":111,"w":16,"h":19}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":19}, "sourceSize": {"w":16,"h":19} }, "expert_f_down_0": { "frame": {"x":1410,"y":63,"w":14,"h":18}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":18}, "sourceSize": {"w":14,"h":18} }, "expert_f_down_1": { "frame": {"x":1423,"y":83,"w":14,"h":18}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":18}, "sourceSize": {"w":14,"h":18} }, "expert_f_down_2": { "frame": {"x":1432,"y":103,"w":14,"h":18}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":18}, "sourceSize": {"w":14,"h":18} }, "expert_f_left_0": { "frame": {"x":1426,"y":42,"w":14,"h":18}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":18}, "sourceSize": {"w":14,"h":18} }, "expert_f_left_1": { "frame": {"x":1430,"y":21,"w":14,"h":18}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":18}, "sourceSize": {"w":14,"h":18} }, "expert_f_left_2": { "frame": {"x":1433,"y":1,"w":14,"h":18}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":18}, "sourceSize": {"w":14,"h":18} }, "expert_f_right_0": { "frame": {"x":1426,"y":62,"w":14,"h":18}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":18}, "sourceSize": {"w":14,"h":18} }, "expert_f_right_1": { "frame": {"x":1439,"y":82,"w":14,"h":18}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":18}, "sourceSize": {"w":14,"h":18} }, "expert_f_right_2": { "frame": {"x":1448,"y":102,"w":14,"h":18}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":18}, "sourceSize": {"w":14,"h":18} }, "expert_f_up_0": { "frame": {"x":1442,"y":41,"w":14,"h":18}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":18}, "sourceSize": {"w":14,"h":18} }, "expert_f_up_1": { "frame": {"x":1446,"y":21,"w":14,"h":18}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":18}, "sourceSize": {"w":14,"h":18} }, "expert_f_up_2": { "frame": {"x":1449,"y":1,"w":14,"h":18}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":18}, "sourceSize": {"w":14,"h":18} }, "fisher_down_0": { "frame": {"x":425,"y":1,"w":15,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":15,"h":20}, "sourceSize": {"w":15,"h":20} }, "fisher_down_1": { "frame": {"x":440,"y":23,"w":15,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":15,"h":20}, "sourceSize": {"w":15,"h":20} }, "fisher_down_2": { "frame": {"x":453,"y":45,"w":15,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":15,"h":20}, "sourceSize": {"w":15,"h":20} }, "fisher_left_0": { "frame": {"x":563,"y":89,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "fisher_left_1": { "frame": {"x":569,"y":45,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "fisher_left_2": { "frame": {"x":573,"y":23,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "fisher_right_0": { "frame": {"x":574,"y":1,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "fisher_right_1": { "frame": {"x":569,"y":67,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "fisher_right_2": { "frame": {"x":579,"y":89,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "fisher_up_0": { "frame": {"x":469,"y":67,"w":15,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":15,"h":20}, "sourceSize": {"w":15,"h":20} }, "fisher_up_1": { "frame": {"x":585,"y":45,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "fisher_up_2": { "frame": {"x":479,"y":89,"w":15,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":15,"h":20}, "sourceSize": {"w":15,"h":20} }, "generic_c1_down_0": { "frame": {"x":1620,"y":115,"w":12,"h":14}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":14}, "sourceSize": {"w":12,"h":14} }, "generic_c1_down_1": { "frame": {"x":1615,"y":17,"w":12,"h":14}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":14}, "sourceSize": {"w":12,"h":14} }, "generic_c1_down_2": { "frame": {"x":1619,"y":1,"w":12,"h":14}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":14}, "sourceSize": {"w":12,"h":14} }, "generic_c1_left_0": { "frame": {"x":116,"y":116,"w":11,"h":14}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":11,"h":14}, "sourceSize": {"w":11,"h":14} }, "generic_c1_left_1": { "frame": {"x":132,"y":116,"w":11,"h":14}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":11,"h":14}, "sourceSize": {"w":11,"h":14} }, "generic_c1_left_2": { "frame": {"x":148,"y":116,"w":11,"h":14}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":11,"h":14}, "sourceSize": {"w":11,"h":14} }, "generic_c1_right_0": { "frame": {"x":164,"y":116,"w":11,"h":14}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":11,"h":14}, "sourceSize": {"w":11,"h":14} }, "generic_c1_right_1": { "frame": {"x":180,"y":116,"w":11,"h":14}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":11,"h":14}, "sourceSize": {"w":11,"h":14} }, "generic_c1_right_2": { "frame": {"x":196,"y":116,"w":11,"h":14}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":11,"h":14}, "sourceSize": {"w":11,"h":14} }, "generic_c1_up_0": { "frame": {"x":1620,"y":81,"w":12,"h":14}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":14}, "sourceSize": {"w":12,"h":14} }, "generic_c1_up_1": { "frame": {"x":1623,"y":65,"w":12,"h":14}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":14}, "sourceSize": {"w":12,"h":14} }, "generic_c1_up_2": { "frame": {"x":1624,"y":49,"w":12,"h":14}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":14}, "sourceSize": {"w":12,"h":14} }, "generic_c2_down_0": { "frame": {"x":1629,"y":17,"w":12,"h":14}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":14}, "sourceSize": {"w":12,"h":14} }, "generic_c2_down_1": { "frame": {"x":1633,"y":1,"w":12,"h":14}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":14}, "sourceSize": {"w":12,"h":14} }, "generic_c2_down_2": { "frame": {"x":1629,"y":33,"w":12,"h":14}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":14}, "sourceSize": {"w":12,"h":14} }, "generic_c2_left_0": { "frame": {"x":1508,"y":116,"w":11,"h":14}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":11,"h":14}, "sourceSize": {"w":11,"h":14} }, "generic_c2_left_1": { "frame": {"x":1524,"y":116,"w":11,"h":14}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":11,"h":14}, "sourceSize": {"w":11,"h":14} }, "generic_c2_left_2": { "frame": {"x":1604,"y":116,"w":11,"h":14}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":11,"h":14}, "sourceSize": {"w":11,"h":14} }, "generic_c2_right_0": { "frame": {"x":1663,"y":1,"w":11,"h":14}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":11,"h":14}, "sourceSize": {"w":11,"h":14} }, "generic_c2_right_1": { "frame": {"x":1663,"y":17,"w":11,"h":14}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":11,"h":14}, "sourceSize": {"w":11,"h":14} }, "generic_c2_right_2": { "frame": {"x":1662,"y":89,"w":11,"h":14}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":11,"h":14}, "sourceSize": {"w":11,"h":14} }, "generic_c2_up_0": { "frame": {"x":1647,"y":1,"w":12,"h":14}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":14}, "sourceSize": {"w":12,"h":14} }, "generic_c2_up_1": { "frame": {"x":1647,"y":15,"w":12,"h":14}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":14}, "sourceSize": {"w":12,"h":14} }, "generic_c2_up_2": { "frame": {"x":1643,"y":29,"w":12,"h":14}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":14}, "sourceSize": {"w":12,"h":14} }, "generic_c3_down_0": { "frame": {"x":1556,"y":1,"w":14,"h":14}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":14}, "sourceSize": {"w":14,"h":14} }, "generic_c3_down_1": { "frame": {"x":1556,"y":107,"w":14,"h":14}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":14}, "sourceSize": {"w":14,"h":14} }, "generic_c3_down_2": { "frame": {"x":1557,"y":88,"w":14,"h":14}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":14}, "sourceSize": {"w":14,"h":14} }, "generic_c3_left_0": { "frame": {"x":1659,"y":33,"w":12,"h":14}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":14}, "sourceSize": {"w":12,"h":14} }, "generic_c3_left_1": { "frame": {"x":1643,"y":43,"w":12,"h":14}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":14}, "sourceSize": {"w":12,"h":14} }, "generic_c3_left_2": { "frame": {"x":1659,"y":47,"w":12,"h":14}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":14}, "sourceSize": {"w":12,"h":14} }, "generic_c3_right_0": { "frame": {"x":1638,"y":57,"w":12,"h":14}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":14}, "sourceSize": {"w":12,"h":14} }, "generic_c3_right_1": { "frame": {"x":1654,"y":61,"w":12,"h":14}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":14}, "sourceSize": {"w":12,"h":14} }, "generic_c3_right_2": { "frame": {"x":1637,"y":71,"w":12,"h":14}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":14}, "sourceSize": {"w":12,"h":14} }, "generic_c3_up_0": { "frame": {"x":1560,"y":69,"w":14,"h":14}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":14}, "sourceSize": {"w":14,"h":14} }, "generic_c3_up_1": { "frame": {"x":1561,"y":52,"w":14,"h":14}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":14}, "sourceSize": {"w":14,"h":14} }, "generic_c3_up_2": { "frame": {"x":1566,"y":35,"w":14,"h":14}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":14}, "sourceSize": {"w":14,"h":14} }, "generic_f1_down_0": { "frame": {"x":518,"y":111,"w":16,"h":19}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":19}, "sourceSize": {"w":16,"h":19} }, "generic_f1_down_1": { "frame": {"x":991,"y":111,"w":15,"h":19}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":15,"h":19}, "sourceSize": {"w":15,"h":19} }, "generic_f1_down_2": { "frame": {"x":1012,"y":111,"w":15,"h":19}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":15,"h":19}, "sourceSize": {"w":15,"h":19} }, "generic_f1_left_0": { "frame": {"x":1269,"y":67,"w":14,"h":19}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":19}, "sourceSize": {"w":14,"h":19} }, "generic_f1_left_1": { "frame": {"x":1281,"y":88,"w":14,"h":19}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":19}, "sourceSize": {"w":14,"h":19} }, "generic_f1_left_2": { "frame": {"x":1270,"y":45,"w":14,"h":19}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":19}, "sourceSize": {"w":14,"h":19} }, "generic_f1_right_0": { "frame": {"x":1285,"y":66,"w":14,"h":19}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":19}, "sourceSize": {"w":14,"h":19} }, "generic_f1_right_1": { "frame": {"x":1297,"y":87,"w":14,"h":19}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":19}, "sourceSize": {"w":14,"h":19} }, "generic_f1_right_2": { "frame": {"x":1307,"y":108,"w":14,"h":19}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":19}, "sourceSize": {"w":14,"h":19} }, "generic_f1_up_0": { "frame": {"x":539,"y":111,"w":16,"h":19}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":19}, "sourceSize": {"w":16,"h":19} }, "generic_f1_up_1": { "frame": {"x":1033,"y":111,"w":15,"h":19}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":15,"h":19}, "sourceSize": {"w":15,"h":19} }, "generic_f1_up_2": { "frame": {"x":1054,"y":111,"w":15,"h":19}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":15,"h":19}, "sourceSize": {"w":15,"h":19} }, "generic_f2_down_0": { "frame": {"x":278,"y":23,"w":16,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "generic_f2_down_1": { "frame": {"x":281,"y":1,"w":16,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "generic_f2_down_2": { "frame": {"x":282,"y":89,"w":16,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "generic_f2_left_0": { "frame": {"x":589,"y":23,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "generic_f2_left_1": { "frame": {"x":590,"y":1,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "generic_f2_left_2": { "frame": {"x":585,"y":67,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "generic_f2_right_0": { "frame": {"x":595,"y":89,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "generic_f2_right_1": { "frame": {"x":601,"y":45,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "generic_f2_right_2": { "frame": {"x":605,"y":23,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "generic_f2_up_0": { "frame": {"x":290,"y":67,"w":16,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "generic_f2_up_1": { "frame": {"x":292,"y":45,"w":16,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "generic_f2_up_2": { "frame": {"x":296,"y":23,"w":16,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "generic_f3_down_0": { "frame": {"x":299,"y":1,"w":16,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "generic_f3_down_1": { "frame": {"x":300,"y":89,"w":16,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "generic_f3_down_2": { "frame": {"x":308,"y":67,"w":16,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "generic_f3_left_0": { "frame": {"x":606,"y":1,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "generic_f3_left_1": { "frame": {"x":601,"y":67,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "generic_f3_left_2": { "frame": {"x":611,"y":89,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "generic_f3_right_0": { "frame": {"x":617,"y":45,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "generic_f3_right_1": { "frame": {"x":621,"y":23,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "generic_f3_right_2": { "frame": {"x":622,"y":1,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "generic_f3_up_0": { "frame": {"x":310,"y":45,"w":16,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "generic_f3_up_1": { "frame": {"x":314,"y":23,"w":16,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "generic_f3_up_2": { "frame": {"x":317,"y":1,"w":16,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "generic_f4_down_0": { "frame": {"x":300,"y":111,"w":16,"h":20}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "generic_f4_down_1": { "frame": {"x":318,"y":89,"w":16,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "generic_f4_down_2": { "frame": {"x":326,"y":67,"w":16,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "generic_f4_left_0": { "frame": {"x":990,"y":1,"w":13,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":13,"h":20}, "sourceSize": {"w":13,"h":20} }, "generic_f4_left_1": { "frame": {"x":994,"y":89,"w":13,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":13,"h":20}, "sourceSize": {"w":13,"h":20} }, "generic_f4_left_2": { "frame": {"x":999,"y":67,"w":13,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":13,"h":20}, "sourceSize": {"w":13,"h":20} }, "generic_f4_right_0": { "frame": {"x":1009,"y":89,"w":13,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":13,"h":20}, "sourceSize": {"w":13,"h":20} }, "generic_f4_right_1": { "frame": {"x":1000,"y":45,"w":13,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":13,"h":20}, "sourceSize": {"w":13,"h":20} }, "generic_f4_right_2": { "frame": {"x":1014,"y":67,"w":13,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":13,"h":20}, "sourceSize": {"w":13,"h":20} }, "generic_f4_up_0": { "frame": {"x":328,"y":45,"w":16,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "generic_f4_up_1": { "frame": {"x":332,"y":23,"w":16,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "generic_f4_up_2": { "frame": {"x":335,"y":1,"w":16,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "generic_f5_down_0": { "frame": {"x":322,"y":111,"w":16,"h":20}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "generic_f5_down_1": { "frame": {"x":442,"y":1,"w":15,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":15,"h":20}, "sourceSize": {"w":15,"h":20} }, "generic_f5_down_2": { "frame": {"x":457,"y":23,"w":15,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":15,"h":20}, "sourceSize": {"w":15,"h":20} }, "generic_f5_left_0": { "frame": {"x":617,"y":67,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "generic_f5_left_1": { "frame": {"x":627,"y":89,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "generic_f5_left_2": { "frame": {"x":633,"y":45,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "generic_f5_right_0": { "frame": {"x":617,"y":67,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "generic_f5_right_1": { "frame": {"x":637,"y":23,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "generic_f5_right_2": { "frame": {"x":638,"y":1,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "generic_f5_up_0": { "frame": {"x":336,"y":89,"w":16,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "generic_f5_up_1": { "frame": {"x":470,"y":45,"w":15,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":15,"h":20}, "sourceSize": {"w":15,"h":20} }, "generic_f5_up_2": { "frame": {"x":486,"y":67,"w":15,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":15,"h":20}, "sourceSize": {"w":15,"h":20} }, "generic_m1_down_0": { "frame": {"x":1442,"y":61,"w":14,"h":18}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":18}, "sourceSize": {"w":14,"h":18} }, "generic_m1_down_1": { "frame": {"x":1274,"y":22,"w":14,"h":19}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":19}, "sourceSize": {"w":14,"h":19} }, "generic_m1_down_2": { "frame": {"x":1455,"y":81,"w":14,"h":18}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":18}, "sourceSize": {"w":14,"h":18} }, "generic_m1_left_0": { "frame": {"x":1462,"y":21,"w":12,"h":18}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":18}, "sourceSize": {"w":12,"h":18} }, "generic_m1_left_1": { "frame": {"x":1465,"y":1,"w":12,"h":18}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":18}, "sourceSize": {"w":12,"h":18} }, "generic_m1_left_2": { "frame": {"x":1458,"y":61,"w":12,"h":18}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":18}, "sourceSize": {"w":12,"h":18} }, "generic_m1_right_0": { "frame": {"x":1471,"y":81,"w":12,"h":18}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":18}, "sourceSize": {"w":12,"h":18} }, "generic_m1_right_1": { "frame": {"x":1472,"y":61,"w":12,"h":18}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":18}, "sourceSize": {"w":12,"h":18} }, "generic_m1_right_2": { "frame": {"x":1474,"y":41,"w":12,"h":18}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":18}, "sourceSize": {"w":12,"h":18} }, "generic_m1_up_0": { "frame": {"x":1464,"y":101,"w":14,"h":18}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":18}, "sourceSize": {"w":14,"h":18} }, "generic_m1_up_1": { "frame": {"x":1458,"y":41,"w":14,"h":18}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":18}, "sourceSize": {"w":14,"h":18} }, "generic_m2_down_0": { "frame": {"x":344,"y":111,"w":16,"h":20}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "generic_m2_down_1": { "frame": {"x":344,"y":67,"w":16,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "generic_m2_down_2": { "frame": {"x":354,"y":89,"w":16,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "generic_m2_left_0": { "frame": {"x":496,"y":89,"w":15,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":15,"h":20}, "sourceSize": {"w":15,"h":20} }, "generic_m2_left_1": { "frame": {"x":459,"y":1,"w":15,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":15,"h":20}, "sourceSize": {"w":15,"h":20} }, "generic_m2_left_2": { "frame": {"x":474,"y":23,"w":15,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":15,"h":20}, "sourceSize": {"w":15,"h":20} }, "generic_m2_right_0": { "frame": {"x":487,"y":45,"w":15,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":15,"h":20}, "sourceSize": {"w":15,"h":20} }, "generic_m2_right_1": { "frame": {"x":503,"y":67,"w":15,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":15,"h":20}, "sourceSize": {"w":15,"h":20} }, "generic_m2_right_2": { "frame": {"x":513,"y":89,"w":15,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":15,"h":20}, "sourceSize": {"w":15,"h":20} }, "generic_m2_up_0": { "frame": {"x":366,"y":111,"w":16,"h":20}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "generic_m2_up_1": { "frame": {"x":346,"y":45,"w":16,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "generic_m2_up_2": { "frame": {"x":362,"y":67,"w":16,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "generic_m3_down_0": { "frame": {"x":633,"y":67,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "generic_m3_down_1": { "frame": {"x":643,"y":89,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "generic_m3_down_2": { "frame": {"x":649,"y":45,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "generic_m3_left_0": { "frame": {"x":1078,"y":23,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "generic_m3_left_1": { "frame": {"x":1079,"y":1,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "generic_m3_left_2": { "frame": {"x":1083,"y":89,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "generic_m3_right_0": { "frame": {"x":1087,"y":67,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "generic_m3_right_1": { "frame": {"x":1088,"y":45,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "generic_m3_right_2": { "frame": {"x":1092,"y":23,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "generic_m3_up_0": { "frame": {"x":653,"y":23,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "generic_m3_up_1": { "frame": {"x":654,"y":1,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "generic_m3_up_2": { "frame": {"x":649,"y":67,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "generic_m4_down_0": { "frame": {"x":659,"y":89,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "generic_m4_down_1": { "frame": {"x":665,"y":45,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "generic_m4_down_2": { "frame": {"x":669,"y":23,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "generic_m4_left_0": { "frame": {"x":1093,"y":1,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "generic_m4_left_1": { "frame": {"x":1097,"y":89,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "generic_m4_left_2": { "frame": {"x":1101,"y":67,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "generic_m4_right_0": { "frame": {"x":1111,"y":89,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "generic_m4_right_1": { "frame": {"x":1102,"y":45,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "generic_m4_right_2": { "frame": {"x":1115,"y":67,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "generic_m4_up_0": { "frame": {"x":670,"y":1,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "generic_m4_up_1": { "frame": {"x":665,"y":67,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "generic_m4_up_2": { "frame": {"x":675,"y":89,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "generic_m5_down_0": { "frame": {"x":372,"y":89,"w":16,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "generic_m5_down_1": { "frame": {"x":388,"y":111,"w":16,"h":20}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "generic_m5_down_2": { "frame": {"x":350,"y":23,"w":16,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "generic_m5_left_0": { "frame": {"x":1004,"y":23,"w":13,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":13,"h":20}, "sourceSize": {"w":13,"h":20} }, "generic_m5_left_1": { "frame": {"x":1015,"y":45,"w":13,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":13,"h":20}, "sourceSize": {"w":13,"h":20} }, "generic_m5_left_2": { "frame": {"x":1005,"y":1,"w":13,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":13,"h":20}, "sourceSize": {"w":13,"h":20} }, "generic_m5_right_0": { "frame": {"x":1019,"y":23,"w":13,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":13,"h":20}, "sourceSize": {"w":13,"h":20} }, "generic_m5_right_1": { "frame": {"x":1020,"y":1,"w":13,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":13,"h":20}, "sourceSize": {"w":13,"h":20} }, "generic_m5_right_2": { "frame": {"x":1024,"y":89,"w":13,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":13,"h":20}, "sourceSize": {"w":13,"h":20} }, "generic_m5_up_0": { "frame": {"x":364,"y":45,"w":16,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "generic_m5_up_1": { "frame": {"x":380,"y":67,"w":16,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "generic_m5_up_2": { "frame": {"x":390,"y":89,"w":16,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "gentleman_down_0": { "frame": {"x":116,"y":93,"w":14,"h":21}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":21}, "sourceSize": {"w":14,"h":21} }, "gentleman_down_1": { "frame": {"x":126,"y":47,"w":14,"h":21}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":21}, "sourceSize": {"w":14,"h":21} }, "gentleman_down_2": { "frame": {"x":130,"y":24,"w":14,"h":21}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":21}, "sourceSize": {"w":14,"h":21} }, "gentleman_left_0": { "frame": {"x":199,"y":1,"w":12,"h":21}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":21}, "sourceSize": {"w":12,"h":21} }, "gentleman_left_1": { "frame": {"x":196,"y":93,"w":12,"h":21}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":21}, "sourceSize": {"w":12,"h":21} }, "gentleman_left_2": { "frame": {"x":204,"y":70,"w":12,"h":21}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":21}, "sourceSize": {"w":12,"h":21} }, "gentleman_right_0": { "frame": {"x":206,"y":47,"w":12,"h":21}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":21}, "sourceSize": {"w":12,"h":21} }, "gentleman_right_1": { "frame": {"x":210,"y":24,"w":12,"h":21}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":21}, "sourceSize": {"w":12,"h":21} }, "gentleman_right_2": { "frame": {"x":213,"y":1,"w":12,"h":21}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":21}, "sourceSize": {"w":12,"h":21} }, "gentleman_up_0": { "frame": {"x":135,"y":1,"w":14,"h":21}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":21}, "sourceSize": {"w":14,"h":21} }, "gentleman_up_1": { "frame": {"x":132,"y":93,"w":14,"h":21}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":21}, "sourceSize": {"w":14,"h":21} }, "gentleman_up_2": { "frame": {"x":140,"y":70,"w":14,"h":21}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":21}, "sourceSize": {"w":14,"h":21} }, "guitarist_down_0": { "frame": {"x":681,"y":45,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "guitarist_down_1": { "frame": {"x":685,"y":23,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "guitarist_down_2": { "frame": {"x":686,"y":1,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "guitarist_left_0": { "frame": {"x":1106,"y":23,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "guitarist_left_1": { "frame": {"x":1116,"y":45,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "guitarist_left_2": { "frame": {"x":1107,"y":1,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "guitarist_right_0": { "frame": {"x":1120,"y":23,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "guitarist_right_1": { "frame": {"x":1121,"y":1,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "guitarist_right_2": { "frame": {"x":1125,"y":89,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "guitarist_up_0": { "frame": {"x":681,"y":67,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "guitarist_up_1": { "frame": {"x":691,"y":89,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "guitarist_up_2": { "frame": {"x":697,"y":45,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "hiker_down_0": { "frame": {"x":78,"y":25,"w":16,"h":21}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":21}, "sourceSize": {"w":16,"h":21} }, "hiker_down_1": { "frame": {"x":96,"y":25,"w":15,"h":21}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":15,"h":21}, "sourceSize": {"w":15,"h":21} }, "hiker_down_2": { "frame": {"x":142,"y":47,"w":14,"h":21}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":21}, "sourceSize": {"w":14,"h":21} }, "hiker_left_0": { "frame": {"x":146,"y":24,"w":14,"h":21}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":21}, "sourceSize": {"w":14,"h":21} }, "hiker_left_1": { "frame": {"x":151,"y":1,"w":14,"h":21}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":21}, "sourceSize": {"w":14,"h":21} }, "hiker_left_2": { "frame": {"x":148,"y":93,"w":14,"h":21}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":21}, "sourceSize": {"w":14,"h":21} }, "hiker_right_0": { "frame": {"x":156,"y":70,"w":14,"h":21}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":21}, "sourceSize": {"w":14,"h":21} }, "hiker_right_1": { "frame": {"x":158,"y":47,"w":14,"h":21}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":21}, "sourceSize": {"w":14,"h":21} }, "hiker_right_2": { "frame": {"x":162,"y":24,"w":14,"h":21}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":21}, "sourceSize": {"w":14,"h":21} }, "hiker_up_0": { "frame": {"x":91,"y":48,"w":16,"h":21}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":21}, "sourceSize": {"w":16,"h":21} }, "hiker_up_1": { "frame": {"x":109,"y":48,"w":15,"h":21}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":15,"h":21}, "sourceSize": {"w":15,"h":21} }, "hiker_up_2": { "frame": {"x":101,"y":1,"w":15,"h":21}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":15,"h":21}, "sourceSize": {"w":15,"h":21} }, "lass_down_0": { "frame": {"x":353,"y":1,"w":16,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "lass_down_1": { "frame": {"x":368,"y":23,"w":16,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "lass_down_2": { "frame": {"x":476,"y":1,"w":15,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":15,"h":20}, "sourceSize": {"w":15,"h":20} }, "lass_left_0": { "frame": {"x":701,"y":23,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "lass_left_1": { "frame": {"x":1029,"y":67,"w":13,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":13,"h":20}, "sourceSize": {"w":13,"h":20} }, "lass_left_2": { "frame": {"x":1030,"y":45,"w":13,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":13,"h":20}, "sourceSize": {"w":13,"h":20} }, "lass_right_0": { "frame": {"x":702,"y":1,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "lass_right_1": { "frame": {"x":1034,"y":23,"w":13,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":13,"h":20}, "sourceSize": {"w":13,"h":20} }, "lass_right_2": { "frame": {"x":1035,"y":1,"w":13,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":13,"h":20}, "sourceSize": {"w":13,"h":20} }, "lass_up_0": { "frame": {"x":382,"y":45,"w":16,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "lass_up_1": { "frame": {"x":491,"y":23,"w":15,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":15,"h":20}, "sourceSize": {"w":15,"h":20} }, "lass_up_2": { "frame": {"x":398,"y":67,"w":16,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "may_down_0": { "frame": {"x":697,"y":67,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "may_down_1": { "frame": {"x":707,"y":89,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "may_down_2": { "frame": {"x":713,"y":45,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "may_left_0": { "frame": {"x":717,"y":23,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "may_left_1": { "frame": {"x":718,"y":1,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "may_left_2": { "frame": {"x":713,"y":67,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "may_right_0": { "frame": {"x":723,"y":89,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "may_right_1": { "frame": {"x":729,"y":45,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "may_right_2": { "frame": {"x":733,"y":23,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "may_up_0": { "frame": {"x":734,"y":1,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "may_up_1": { "frame": {"x":729,"y":67,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "may_up_2": { "frame": {"x":739,"y":89,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "mom_down_0": { "frame": {"x":408,"y":89,"w":16,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "mom_down_1": { "frame": {"x":745,"y":45,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "mom_down_2": { "frame": {"x":749,"y":23,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "mom_left_0": { "frame": {"x":1129,"y":67,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "mom_left_1": { "frame": {"x":1130,"y":45,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "mom_left_2": { "frame": {"x":1134,"y":23,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "mom_right_0": { "frame": {"x":1135,"y":1,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "mom_right_1": { "frame": {"x":1139,"y":89,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "mom_right_2": { "frame": {"x":1143,"y":67,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "mom_up_0": { "frame": {"x":410,"y":111,"w":16,"h":20}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "mom_up_1": { "frame": {"x":750,"y":1,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "mom_up_2": { "frame": {"x":745,"y":67,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "norman_down_0": { "frame": {"x":755,"y":89,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "norman_down_1": { "frame": {"x":761,"y":45,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "norman_down_2": { "frame": {"x":765,"y":23,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "norman_left_0": { "frame": {"x":1153,"y":89,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "norman_left_1": { "frame": {"x":1144,"y":45,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "norman_left_2": { "frame": {"x":1157,"y":67,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "norman_up_0": { "frame": {"x":766,"y":1,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "norman_up_1": { "frame": {"x":761,"y":67,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "norman_up_2": { "frame": {"x":771,"y":89,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "oups/scientist_down_0": { "frame": {"x":777,"y":45,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "oups/scientist_down_1": { "frame": {"x":781,"y":23,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "oups/scientist_down_2": { "frame": {"x":782,"y":1,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "oups/scientist_left_0": { "frame": {"x":1148,"y":23,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "oups/scientist_left_1": { "frame": {"x":1158,"y":45,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "oups/scientist_left_2": { "frame": {"x":1149,"y":1,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "oups/scientist_right_0": { "frame": {"x":1148,"y":23,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "oups/scientist_right_1": { "frame": {"x":1158,"y":45,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "oups/scientist_right_2": { "frame": {"x":1149,"y":1,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "oups/scientist_up_0": { "frame": {"x":777,"y":67,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "oups/scientist_up_1": { "frame": {"x":787,"y":89,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "oups/scientist_up_2": { "frame": {"x":793,"y":45,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "pokefan_down_0": { "frame": {"x":371,"y":1,"w":16,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "pokefan_down_1": { "frame": {"x":797,"y":23,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "pokefan_down_2": { "frame": {"x":798,"y":1,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "pokefan_left_0": { "frame": {"x":1162,"y":23,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "pokefan_left_1": { "frame": {"x":1163,"y":1,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "pokefan_left_2": { "frame": {"x":1167,"y":89,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "pokefan_right_0": { "frame": {"x":1171,"y":67,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "pokefan_right_1": { "frame": {"x":1172,"y":45,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "pokefan_right_2": { "frame": {"x":1176,"y":23,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "pokefan_up_0": { "frame": {"x":386,"y":23,"w":16,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "pokefan_up_1": { "frame": {"x":793,"y":67,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "pokefan_up_2": { "frame": {"x":803,"y":89,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "pokemaniac_down_0": { "frame": {"x":809,"y":45,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "pokemaniac_down_1": { "frame": {"x":813,"y":23,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "pokemaniac_down_2": { "frame": {"x":814,"y":1,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "pokemaniac_left_0": { "frame": {"x":1177,"y":1,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "pokemaniac_left_1": { "frame": {"x":1181,"y":89,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "pokemaniac_left_2": { "frame": {"x":1185,"y":67,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "pokemaniac_right_0": { "frame": {"x":1195,"y":89,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "pokemaniac_right_1": { "frame": {"x":1186,"y":45,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "pokemaniac_right_2": { "frame": {"x":1199,"y":67,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "pokemaniac_up_0": { "frame": {"x":809,"y":67,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "pokemaniac_up_1": { "frame": {"x":819,"y":89,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "pokemaniac_up_2": { "frame": {"x":825,"y":45,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "psychic_down_0": { "frame": {"x":560,"y":111,"w":16,"h":19}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":19}, "sourceSize": {"w":16,"h":19} }, "psychic_down_1": { "frame": {"x":581,"y":111,"w":16,"h":19}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":19}, "sourceSize": {"w":16,"h":19} }, "psychic_down_2": { "frame": {"x":602,"y":111,"w":16,"h":19}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":19}, "sourceSize": {"w":16,"h":19} }, "psychic_left_0": { "frame": {"x":1277,"y":1,"w":14,"h":19}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":19}, "sourceSize": {"w":14,"h":19} }, "psychic_left_1": { "frame": {"x":1286,"y":43,"w":14,"h":19}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":19}, "sourceSize": {"w":14,"h":19} }, "psychic_left_2": { "frame": {"x":1290,"y":22,"w":14,"h":19}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":19}, "sourceSize": {"w":14,"h":19} }, "psychic_right_0": { "frame": {"x":1293,"y":1,"w":14,"h":19}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":19}, "sourceSize": {"w":14,"h":19} }, "psychic_right_1": { "frame": {"x":1301,"y":64,"w":14,"h":19}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":19}, "sourceSize": {"w":14,"h":19} }, "psychic_right_2": { "frame": {"x":1302,"y":43,"w":14,"h":19}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":19}, "sourceSize": {"w":14,"h":19} }, "psychic_up_0": { "frame": {"x":623,"y":111,"w":16,"h":19}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":19}, "sourceSize": {"w":16,"h":19} }, "psychic_up_1": { "frame": {"x":644,"y":111,"w":16,"h":19}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":19}, "sourceSize": {"w":16,"h":19} }, "psychic_up_2": { "frame": {"x":665,"y":111,"w":16,"h":19}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":19}, "sourceSize": {"w":16,"h":19} }, "ranger_m_down_0": { "frame": {"x":829,"y":23,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "ranger_m_down_1": { "frame": {"x":830,"y":1,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "ranger_m_down_2": { "frame": {"x":825,"y":67,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "ranger_m_left_0": { "frame": {"x":835,"y":89,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "ranger_m_left_1": { "frame": {"x":841,"y":45,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "ranger_m_left_2": { "frame": {"x":845,"y":23,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "ranger_m_right_0": { "frame": {"x":846,"y":1,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "ranger_m_right_1": { "frame": {"x":841,"y":67,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "ranger_m_right_2": { "frame": {"x":851,"y":89,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "ranger_up_0": { "frame": {"x":857,"y":45,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "ranger_up_1": { "frame": {"x":861,"y":23,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "ranger_up_2": { "frame": {"x":862,"y":1,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "rich_boy_2_down_0": { "frame": {"x":857,"y":67,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "rich_boy_2_down_1": { "frame": {"x":867,"y":89,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "rich_boy_2_down_2": { "frame": {"x":873,"y":45,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "rich_boy_2_left_0": { "frame": {"x":1190,"y":23,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "rich_boy_2_left_1": { "frame": {"x":1200,"y":45,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "rich_boy_2_left_2": { "frame": {"x":1191,"y":1,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "rich_boy_2_right_0": { "frame": {"x":1204,"y":23,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "rich_boy_2_right_1": { "frame": {"x":1205,"y":1,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "rich_boy_2_right_2": { "frame": {"x":1209,"y":89,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "rich_boy_2_up_0": { "frame": {"x":877,"y":23,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "rich_boy_2_up_1": { "frame": {"x":878,"y":1,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "rich_boy_2_up_2": { "frame": {"x":873,"y":67,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "rich_boy_down_0": { "frame": {"x":1306,"y":22,"w":14,"h":19}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":19}, "sourceSize": {"w":14,"h":19} }, "rich_boy_down_1": { "frame": {"x":1309,"y":1,"w":14,"h":19}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":19}, "sourceSize": {"w":14,"h":19} }, "rich_boy_down_2": { "frame": {"x":1313,"y":85,"w":14,"h":19}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":19}, "sourceSize": {"w":14,"h":19} }, "rich_boy_left_0": { "frame": {"x":1317,"y":64,"w":14,"h":19}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":19}, "sourceSize": {"w":14,"h":19} }, "rich_boy_left_1": { "frame": {"x":1396,"y":43,"w":12,"h":19}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":19}, "sourceSize": {"w":12,"h":19} }, "rich_boy_left_2": { "frame": {"x":1318,"y":43,"w":14,"h":19}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":19}, "sourceSize": {"w":14,"h":19} }, "rich_boy_right_0": { "frame": {"x":1400,"y":22,"w":12,"h":19}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":19}, "sourceSize": {"w":12,"h":19} }, "rich_boy_right_1": { "frame": {"x":1403,"y":1,"w":12,"h":19}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":19}, "sourceSize": {"w":12,"h":19} }, "rich_boy_right_2": { "frame": {"x":1396,"y":64,"w":12,"h":19}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":19}, "sourceSize": {"w":12,"h":19} }, "rich_boy_up_0": { "frame": {"x":1322,"y":22,"w":14,"h":19}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":19}, "sourceSize": {"w":14,"h":19} }, "rich_boy_up_1": { "frame": {"x":1325,"y":1,"w":14,"h":19}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":19}, "sourceSize": {"w":14,"h":19} }, "rich_boy_up_2": { "frame": {"x":1323,"y":106,"w":14,"h":19}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":19}, "sourceSize": {"w":14,"h":19} }, "roxanne_down_0": { "frame": {"x":686,"y":111,"w":16,"h":19}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":19}, "sourceSize": {"w":16,"h":19} }, "roxanne_left_0": { "frame": {"x":1329,"y":85,"w":14,"h":19}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":19}, "sourceSize": {"w":14,"h":19} }, "roxanne_right_0": { "frame": {"x":1333,"y":64,"w":14,"h":19}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":19}, "sourceSize": {"w":14,"h":19} }, "roxanne_up": { "frame": {"x":707,"y":111,"w":16,"h":19}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":19}, "sourceSize": {"w":16,"h":19} }, "sailor_down_0": { "frame": {"x":400,"y":45,"w":16,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "sailor_down_1": { "frame": {"x":504,"y":45,"w":15,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":15,"h":20}, "sourceSize": {"w":15,"h":20} }, "sailor_down_2": { "frame": {"x":520,"y":67,"w":15,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":15,"h":20}, "sourceSize": {"w":15,"h":20} }, "sailor_left_0": { "frame": {"x":1213,"y":67,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "sailor_left_1": { "frame": {"x":1214,"y":45,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "sailor_left_2": { "frame": {"x":1218,"y":23,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "sailor_right_0": { "frame": {"x":1219,"y":1,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "sailor_right_1": { "frame": {"x":1223,"y":89,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "sailor_right_2": { "frame": {"x":1227,"y":67,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "sailor_up_0": { "frame": {"x":416,"y":67,"w":16,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "sailor_up_1": { "frame": {"x":883,"y":89,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "sailor_up_2": { "frame": {"x":530,"y":89,"w":15,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":15,"h":20}, "sourceSize": {"w":15,"h":20} }, "schoolkid_f_down_0": { "frame": {"x":889,"y":45,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "schoolkid_f_down_1": { "frame": {"x":893,"y":23,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "schoolkid_f_down_2": { "frame": {"x":894,"y":1,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "schoolkid_f_left_0": { "frame": {"x":889,"y":67,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "schoolkid_f_left_1": { "frame": {"x":899,"y":89,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "schoolkid_f_left_2": { "frame": {"x":905,"y":45,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "schoolkid_f_right_0": { "frame": {"x":909,"y":23,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "schoolkid_f_right_1": { "frame": {"x":910,"y":1,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "schoolkid_f_right_2": { "frame": {"x":905,"y":67,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "schoolkid_f_up_0": { "frame": {"x":915,"y":89,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "schoolkid_f_up_1": { "frame": {"x":921,"y":45,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "schoolkid_f_up_2": { "frame": {"x":925,"y":23,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "schoolkid_m_down_0": { "frame": {"x":1075,"y":111,"w":15,"h":19}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":15,"h":19}, "sourceSize": {"w":15,"h":19} }, "schoolkid_m_down_1": { "frame": {"x":1096,"y":111,"w":15,"h":19}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":15,"h":19}, "sourceSize": {"w":15,"h":19} }, "schoolkid_m_down_2": { "frame": {"x":1117,"y":111,"w":15,"h":19}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":15,"h":19}, "sourceSize": {"w":15,"h":19} }, "schoolkid_m_left_0": { "frame": {"x":1370,"y":22,"w":13,"h":19}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":13,"h":19}, "sourceSize": {"w":13,"h":19} }, "schoolkid_m_left_1": { "frame": {"x":1373,"y":1,"w":13,"h":19}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":13,"h":19}, "sourceSize": {"w":13,"h":19} }, "schoolkid_m_left_2": { "frame": {"x":1371,"y":106,"w":13,"h":19}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":13,"h":19}, "sourceSize": {"w":13,"h":19} }, "schoolkid_m_RIGHT_0": { "frame": {"x":1366,"y":43,"w":13,"h":19}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":13,"h":19}, "sourceSize": {"w":13,"h":19} }, "schoolkid_m_right_1": { "frame": {"x":1377,"y":85,"w":13,"h":19}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":13,"h":19}, "sourceSize": {"w":13,"h":19} }, "schoolkid_m_right_2": { "frame": {"x":1386,"y":106,"w":13,"h":19}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":13,"h":19}, "sourceSize": {"w":13,"h":19} }, "schoolkid_m_up_0": { "frame": {"x":1138,"y":111,"w":15,"h":19}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":15,"h":19}, "sourceSize": {"w":15,"h":19} }, "schoolkid_m_up_1": { "frame": {"x":1159,"y":111,"w":15,"h":19}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":15,"h":19}, "sourceSize": {"w":15,"h":19} }, "schoolkid_m_up_2": { "frame": {"x":1180,"y":111,"w":15,"h":19}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":15,"h":19}, "sourceSize": {"w":15,"h":19} }, "scientist_down_0": { "frame": {"x":926,"y":1,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "scientist_down_1": { "frame": {"x":921,"y":67,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "scientist_down_2": { "frame": {"x":926,"y":1,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "scientist_left_0": { "frame": {"x":1237,"y":89,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "scientist_left_1": { "frame": {"x":1228,"y":45,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "scientist_left_2": { "frame": {"x":1241,"y":67,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "scientist_right_0": { "frame": {"x":1232,"y":23,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "scientist_right_1": { "frame": {"x":1242,"y":45,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "scientist_right_2": { "frame": {"x":1233,"y":1,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "scientist_up_0": { "frame": {"x":931,"y":89,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "scientist_up_1": { "frame": {"x":937,"y":45,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "scientist_up_2": { "frame": {"x":931,"y":89,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "seko_down_0": { "frame": {"x":426,"y":89,"w":16,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "seko_down_1": { "frame": {"x":432,"y":111,"w":16,"h":20}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "seko_down_2": { "frame": {"x":493,"y":1,"w":15,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":15,"h":20}, "sourceSize": {"w":15,"h":20} }, "seko_left_0": { "frame": {"x":941,"y":23,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "seko_left_1": { "frame": {"x":942,"y":1,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "seko_left_2": { "frame": {"x":937,"y":67,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "seko_right_0": { "frame": {"x":947,"y":89,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "seko_right_1": { "frame": {"x":953,"y":45,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "seko_right_2": { "frame": {"x":957,"y":23,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "seko_up_0": { "frame": {"x":389,"y":1,"w":16,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "seko_up_1": { "frame": {"x":404,"y":23,"w":16,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "seko_up_2": { "frame": {"x":418,"y":45,"w":16,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "shopkeeper_f_down_0": { "frame": {"x":434,"y":67,"w":16,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "shopkeeper_f_down_1": { "frame": {"x":444,"y":89,"w":16,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "shopkeeper_f_down_2": { "frame": {"x":508,"y":23,"w":15,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":15,"h":20}, "sourceSize": {"w":15,"h":20} }, "shopkeeper_f_left_0": { "frame": {"x":1039,"y":89,"w":13,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":13,"h":20}, "sourceSize": {"w":13,"h":20} }, "shopkeeper_f_left_1": { "frame": {"x":1044,"y":67,"w":13,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":13,"h":20}, "sourceSize": {"w":13,"h":20} }, "shopkeeper_f_left_2": { "frame": {"x":1045,"y":45,"w":13,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":13,"h":20}, "sourceSize": {"w":13,"h":20} }, "shopkeeper_f_right_0": { "frame": {"x":1049,"y":23,"w":13,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":13,"h":20}, "sourceSize": {"w":13,"h":20} }, "shopkeeper_f_right_1": { "frame": {"x":1050,"y":1,"w":13,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":13,"h":20}, "sourceSize": {"w":13,"h":20} }, "shopkeeper_f_right_2": { "frame": {"x":1054,"y":89,"w":13,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":13,"h":20}, "sourceSize": {"w":13,"h":20} }, "shopkeeper_f_up_0": { "frame": {"x":454,"y":111,"w":16,"h":20}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "shopkeeper_f_up_1": { "frame": {"x":407,"y":1,"w":16,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "shopkeeper_f_up_2": { "frame": {"x":422,"y":23,"w":16,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":20}, "sourceSize": {"w":16,"h":20} }, "shopkeeper_m_down_0": { "frame": {"x":958,"y":1,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "shopkeeper_m_down_1": { "frame": {"x":953,"y":67,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "shopkeeper_m_down_2": { "frame": {"x":963,"y":89,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "shopkeeper_m_left_0": { "frame": {"x":1246,"y":23,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "shopkeeper_m_left_1": { "frame": {"x":1247,"y":1,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "shopkeeper_m_left_2": { "frame": {"x":1251,"y":89,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "shopkeeper_m_right_0": { "frame": {"x":1255,"y":67,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "shopkeeper_m_right_1": { "frame": {"x":1256,"y":45,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "shopkeeper_m_right_2": { "frame": {"x":1260,"y":23,"w":12,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":20}, "sourceSize": {"w":12,"h":20} }, "shopkeeper_m_up_0": { "frame": {"x":969,"y":45,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "shopkeeper_m_up_1": { "frame": {"x":973,"y":23,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "shopkeeper_m_up_2": { "frame": {"x":974,"y":1,"w":14,"h":20}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":20}, "sourceSize": {"w":14,"h":20} }, "swimmer_f_down_0": { "frame": {"x":852,"y":111,"w":16,"h":14}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":14}, "sourceSize": {"w":16,"h":14} }, "swimmer_f_down_1": { "frame": {"x":868,"y":111,"w":16,"h":14}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":14}, "sourceSize": {"w":16,"h":14} }, "swimmer_f_down_2": { "frame": {"x":1537,"y":18,"w":15,"h":14}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":15,"h":14}, "sourceSize": {"w":15,"h":14} }, "swimmer_f_left_0": { "frame": {"x":1600,"y":17,"w":14,"h":13}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":13}, "sourceSize": {"w":14,"h":13} }, "swimmer_f_left_1": { "frame": {"x":1604,"y":1,"w":14,"h":13}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":13}, "sourceSize": {"w":14,"h":13} }, "swimmer_f_left_2": { "frame": {"x":1545,"y":71,"w":15,"h":13}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":15,"h":13}, "sourceSize": {"w":15,"h":13} }, "swimmer_f_right_0": { "frame": {"x":1604,"y":100,"w":14,"h":13}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":13}, "sourceSize": {"w":14,"h":13} }, "swimmer_f_right_1": { "frame": {"x":1605,"y":83,"w":14,"h":13}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":13}, "sourceSize": {"w":14,"h":13} }, "swimmer_f_right_2": { "frame": {"x":1546,"y":52,"w":15,"h":13}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":15,"h":13}, "sourceSize": {"w":15,"h":13} }, "swimmer_f_up_0": { "frame": {"x":916,"y":111,"w":16,"h":13}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":13}, "sourceSize": {"w":16,"h":13} }, "swimmer_f_up_1": { "frame": {"x":884,"y":111,"w":16,"h":14}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":14}, "sourceSize": {"w":16,"h":14} }, "swimmer_f_up_2": { "frame": {"x":900,"y":111,"w":16,"h":14}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":14}, "sourceSize": {"w":16,"h":14} }, "swimmer_m_down_0": { "frame": {"x":1568,"y":17,"w":14,"h":14}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":14}, "sourceSize": {"w":14,"h":14} }, "swimmer_m_down_1": { "frame": {"x":1243,"y":111,"w":15,"h":15}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":15,"h":15}, "sourceSize": {"w":15,"h":15} }, "swimmer_m_down_2": { "frame": {"x":1260,"y":111,"w":15,"h":15}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":15,"h":15}, "sourceSize": {"w":15,"h":15} }, "swimmer_m_left_0": { "frame": {"x":1653,"y":75,"w":12,"h":14}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":14}, "sourceSize": {"w":12,"h":14} }, "swimmer_m_left_1": { "frame": {"x":1636,"y":85,"w":12,"h":14}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":14}, "sourceSize": {"w":12,"h":14} }, "swimmer_m_left_2": { "frame": {"x":1634,"y":99,"w":12,"h":14}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":14}, "sourceSize": {"w":12,"h":14} }, "swimmer_m_right_0": { "frame": {"x":1636,"y":115,"w":12,"h":14}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":14}, "sourceSize": {"w":12,"h":14} }, "swimmer_m_right_1": { "frame": {"x":1648,"y":99,"w":12,"h":14}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":14}, "sourceSize": {"w":12,"h":14} }, "swimmer_m_right_2": { "frame": {"x":1652,"y":115,"w":12,"h":14}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":14}, "sourceSize": {"w":12,"h":14} }, "swimmer_m_up_0": { "frame": {"x":1572,"y":1,"w":14,"h":14}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":14}, "sourceSize": {"w":14,"h":14} }, "swimmer_m_up_1": { "frame": {"x":1502,"y":39,"w":15,"h":15}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":15,"h":15}, "sourceSize": {"w":15,"h":15} }, "swimmer_m_up_2": { "frame": {"x":1504,"y":20,"w":15,"h":15}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":15,"h":15}, "sourceSize": {"w":15,"h":15} }, "triathlete_f_down_0": { "frame": {"x":167,"y":1,"w":14,"h":21}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":21}, "sourceSize": {"w":14,"h":21} }, "triathlete_f_down_1": { "frame": {"x":113,"y":24,"w":15,"h":21}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":15,"h":21}, "sourceSize": {"w":15,"h":21} }, "triathlete_f_down_2": { "frame": {"x":164,"y":93,"w":14,"h":21}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":21}, "sourceSize": {"w":14,"h":21} }, "triathlete_f_left_0": { "frame": {"x":1,"y":100,"w":22,"h":21}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":22,"h":21}, "sourceSize": {"w":22,"h":21} }, "triathlete_f_left_1": { "frame": {"x":24,"y":100,"w":22,"h":21}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":22,"h":21}, "sourceSize": {"w":22,"h":21} }, "triathlete_f_left_2": { "frame": {"x":32,"y":1,"w":22,"h":21}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":22,"h":21}, "sourceSize": {"w":22,"h":21} }, "triathlete_f_right_0": { "frame": {"x":32,"y":25,"w":22,"h":21}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":22,"h":21}, "sourceSize": {"w":22,"h":21} }, "triathlete_f_right_1": { "frame": {"x":45,"y":69,"w":22,"h":21}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":22,"h":21}, "sourceSize": {"w":22,"h":21} }, "triathlete_f_right_2": { "frame": {"x":47,"y":93,"w":22,"h":21}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":22,"h":21}, "sourceSize": {"w":22,"h":21} }, "triathlete_f_up_0": { "frame": {"x":172,"y":70,"w":14,"h":21}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":21}, "sourceSize": {"w":14,"h":21} }, "triathlete_f_up_1": { "frame": {"x":174,"y":47,"w":14,"h":21}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":21}, "sourceSize": {"w":14,"h":21} }, "triathlete_f_up_2": { "frame": {"x":178,"y":24,"w":14,"h":21}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":21}, "sourceSize": {"w":14,"h":21} }, "triathlete_m_down_0": { "frame": {"x":183,"y":1,"w":14,"h":21}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":21}, "sourceSize": {"w":14,"h":21} }, "triathlete_m_down_1": { "frame": {"x":118,"y":1,"w":15,"h":21}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":15,"h":21}, "sourceSize": {"w":15,"h":21} }, "triathlete_m_down_2": { "frame": {"x":180,"y":93,"w":14,"h":21}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":21}, "sourceSize": {"w":14,"h":21} }, "triathlete_m_left_0": { "frame": {"x":55,"y":1,"w":22,"h":21}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":22,"h":21}, "sourceSize": {"w":22,"h":21} }, "triathlete_m_left_1": { "frame": {"x":55,"y":25,"w":22,"h":21}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":22,"h":21}, "sourceSize": {"w":22,"h":21} }, "triathlete_m_left_2": { "frame": {"x":68,"y":49,"w":22,"h":21}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":22,"h":21}, "sourceSize": {"w":22,"h":21} }, "triathlete_m_right_0": { "frame": {"x":70,"y":93,"w":22,"h":21}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":22,"h":21}, "sourceSize": {"w":22,"h":21} }, "triathlete_m_right_1": { "frame": {"x":93,"y":93,"w":22,"h":21}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":22,"h":21}, "sourceSize": {"w":22,"h":21} }, "triathlete_m_right_2": { "frame": {"x":78,"y":1,"w":22,"h":21}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":22,"h":21}, "sourceSize": {"w":22,"h":21} }, "triathlete_m_up_0": { "frame": {"x":188,"y":70,"w":14,"h":21}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":21}, "sourceSize": {"w":14,"h":21} }, "triathlete_m_up_1": { "frame": {"x":190,"y":47,"w":14,"h":21}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":21}, "sourceSize": {"w":14,"h":21} }, "triathlete_m_up_2": { "frame": {"x":194,"y":24,"w":14,"h":21}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":21}, "sourceSize": {"w":14,"h":21} }, "tuber_down_0": { "frame": {"x":1619,"y":99,"w":14,"h":13}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":13}, "sourceSize": {"w":14,"h":13} }, "tuber_down_1": { "frame": {"x":931,"y":111,"w":16,"h":13}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":13}, "sourceSize": {"w":16,"h":13} }, "tuber_down_2": { "frame": {"x":946,"y":111,"w":16,"h":13}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":13}, "sourceSize": {"w":16,"h":13} }, "tuber_f_down_0": { "frame": {"x":1513,"y":78,"w":14,"h":15}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":15}, "sourceSize": {"w":14,"h":15} }, "tuber_f_down_1": { "frame": {"x":1507,"y":1,"w":15,"h":15}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":15,"h":15}, "sourceSize": {"w":15,"h":15} }, "tuber_f_down_2": { "frame": {"x":1525,"y":95,"w":14,"h":15}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":15}, "sourceSize": {"w":14,"h":15} }, "tuber_f_left_0": { "frame": {"x":1540,"y":112,"w":14,"h":15}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":15}, "sourceSize": {"w":14,"h":15} }, "tuber_f_left_1": { "frame": {"x":1514,"y":56,"w":14,"h":15}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":15}, "sourceSize": {"w":14,"h":15} }, "tuber_f_left_2": { "frame": {"x":1519,"y":37,"w":14,"h":15}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":15}, "sourceSize": {"w":14,"h":15} }, "tuber_f_right_0": { "frame": {"x":1521,"y":18,"w":14,"h":15}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":15}, "sourceSize": {"w":14,"h":15} }, "tuber_f_right_1": { "frame": {"x":1524,"y":1,"w":14,"h":15}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":15}, "sourceSize": {"w":14,"h":15} }, "tuber_f_right_2": { "frame": {"x":1529,"y":73,"w":14,"h":15}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":15}, "sourceSize": {"w":14,"h":15} }, "tuber_f_up_0": { "frame": {"x":1530,"y":54,"w":14,"h":15}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":15}, "sourceSize": {"w":14,"h":15} }, "tuber_f_up_1": { "frame": {"x":1535,"y":35,"w":14,"h":15}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":15}, "sourceSize": {"w":14,"h":15} }, "tuber_f_up_2": { "frame": {"x":1508,"y":99,"w":15,"h":15}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":15,"h":15}, "sourceSize": {"w":15,"h":15} }, "tuber_left_0": { "frame": {"x":1608,"y":65,"w":14,"h":13}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":13}, "sourceSize": {"w":14,"h":13} }, "tuber_left_1": { "frame": {"x":1551,"y":35,"w":15,"h":13}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":15,"h":13}, "sourceSize": {"w":15,"h":13} }, "tuber_left_2": { "frame": {"x":1540,"y":1,"w":15,"h":14}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":15,"h":14}, "sourceSize": {"w":15,"h":14} }, "tuber_m_down_0": { "frame": {"x":1572,"y":104,"w":14,"h":14}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":14}, "sourceSize": {"w":14,"h":14} }, "tuber_m_down_1": { "frame": {"x":1573,"y":85,"w":14,"h":14}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":14}, "sourceSize": {"w":14,"h":14} }, "tuber_m_down_2": { "frame": {"x":1576,"y":68,"w":14,"h":14}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":14}, "sourceSize": {"w":14,"h":14} }, "tuber_m_left_0": { "frame": {"x":1577,"y":51,"w":14,"h":14}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":14}, "sourceSize": {"w":14,"h":14} }, "tuber_m_left_1": { "frame": {"x":1582,"y":33,"w":14,"h":14}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":14}, "sourceSize": {"w":14,"h":14} }, "tuber_m_left_2": { "frame": {"x":1584,"y":17,"w":14,"h":14}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":14}, "sourceSize": {"w":14,"h":14} }, "tuber_m_right_0": { "frame": {"x":1588,"y":1,"w":14,"h":14}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":14}, "sourceSize": {"w":14,"h":14} }, "tuber_m_right_1": { "frame": {"x":1588,"y":101,"w":14,"h":14}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":14}, "sourceSize": {"w":14,"h":14} }, "tuber_m_right_2": { "frame": {"x":1589,"y":84,"w":14,"h":14}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":14}, "sourceSize": {"w":14,"h":14} }, "tuber_m_up_0": { "frame": {"x":1592,"y":67,"w":14,"h":14}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":14}, "sourceSize": {"w":14,"h":14} }, "tuber_m_up_1": { "frame": {"x":1593,"y":49,"w":14,"h":14}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":14}, "sourceSize": {"w":14,"h":14} }, "tuber_m_up_2": { "frame": {"x":1598,"y":33,"w":14,"h":14}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":14}, "sourceSize": {"w":14,"h":14} }, "tuber_right_0": { "frame": {"x":1609,"y":49,"w":14,"h":13}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":13}, "sourceSize": {"w":14,"h":13} }, "tuber_right_1": { "frame": {"x":1553,"y":18,"w":15,"h":13}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":15,"h":13}, "sourceSize": {"w":15,"h":13} }, "tuber_right_2": { "frame": {"x":1541,"y":90,"w":15,"h":14}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":15,"h":14}, "sourceSize": {"w":15,"h":14} }, "tuber_up_0": { "frame": {"x":1614,"y":33,"w":14,"h":13}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":13}, "sourceSize": {"w":14,"h":13} }, "tuber_up_1": { "frame": {"x":961,"y":111,"w":16,"h":13}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":13}, "sourceSize": {"w":16,"h":13} }, "tuber_up_2": { "frame": {"x":976,"y":111,"w":16,"h":13}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":13}, "sourceSize": {"w":16,"h":13} }, "twin_down_0": { "frame": {"x":1277,"y":110,"w":12,"h":17}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":17}, "sourceSize": {"w":12,"h":17} }, "twin_down_1": { "frame": {"x":1476,"y":21,"w":12,"h":17}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":17}, "sourceSize": {"w":12,"h":17} }, "twin_down_2": { "frame": {"x":1479,"y":1,"w":12,"h":17}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":17}, "sourceSize": {"w":12,"h":17} }, "twin_left_0": { "frame": {"x":1480,"y":101,"w":12,"h":17}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":17}, "sourceSize": {"w":12,"h":17} }, "twin_left_1": { "frame": {"x":1485,"y":81,"w":12,"h":17}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":17}, "sourceSize": {"w":12,"h":17} }, "twin_left_2": { "frame": {"x":1486,"y":61,"w":12,"h":17}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":17}, "sourceSize": {"w":12,"h":17} }, "twin_right_0": { "frame": {"x":1488,"y":40,"w":12,"h":17}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":17}, "sourceSize": {"w":12,"h":17} }, "twin_right_1": { "frame": {"x":1490,"y":20,"w":12,"h":17}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":17}, "sourceSize": {"w":12,"h":17} }, "twin_right_2": { "frame": {"x":1493,"y":1,"w":12,"h":17}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":17}, "sourceSize": {"w":12,"h":17} }, "twin_up_0": { "frame": {"x":1494,"y":100,"w":12,"h":17}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":17}, "sourceSize": {"w":12,"h":17} }, "twin_up_1": { "frame": {"x":1499,"y":80,"w":12,"h":17}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":17}, "sourceSize": {"w":12,"h":17} }, "twin_up_2": { "frame": {"x":1500,"y":59,"w":12,"h":17}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":12,"h":17}, "sourceSize": {"w":12,"h":17} }, "wally_down_0": { "frame": {"x":728,"y":111,"w":16,"h":19}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":19}, "sourceSize": {"w":16,"h":19} }, "wally_down_1": { "frame": {"x":749,"y":111,"w":16,"h":19}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":19}, "sourceSize": {"w":16,"h":19} }, "wally_down_2": { "frame": {"x":1201,"y":111,"w":15,"h":19}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":15,"h":19}, "sourceSize": {"w":15,"h":19} }, "wally_left_0": { "frame": {"x":1381,"y":43,"w":13,"h":19}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":13,"h":19}, "sourceSize": {"w":13,"h":19} }, "wally_left_1": { "frame": {"x":1385,"y":22,"w":13,"h":19}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":13,"h":19}, "sourceSize": {"w":13,"h":19} }, "wally_left_2": { "frame": {"x":1388,"y":1,"w":13,"h":19}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":13,"h":19}, "sourceSize": {"w":13,"h":19} }, "wally_right_0": { "frame": {"x":1381,"y":64,"w":13,"h":19}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":13,"h":19}, "sourceSize": {"w":13,"h":19} }, "wally_right_1": { "frame": {"x":1392,"y":85,"w":13,"h":19}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":13,"h":19}, "sourceSize": {"w":13,"h":19} }, "wally_right_2": { "frame": {"x":1401,"y":106,"w":13,"h":19}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":13,"h":19}, "sourceSize": {"w":13,"h":19} }, "wally_up_0": { "frame": {"x":770,"y":111,"w":16,"h":19}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":19}, "sourceSize": {"w":16,"h":19} }, "wally_up_1": { "frame": {"x":791,"y":111,"w":16,"h":19}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":19}, "sourceSize": {"w":16,"h":19} }, "wally_up_2": { "frame": {"x":1222,"y":111,"w":15,"h":19}, "rotated": true, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":15,"h":19}, "sourceSize": {"w":15,"h":19} }, "youngster_down_0": { "frame": {"x":1334,"y":43,"w":14,"h":19}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":19}, "sourceSize": {"w":14,"h":19} }, "youngster_down_1": { "frame": {"x":1338,"y":22,"w":14,"h":19}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":19}, "sourceSize": {"w":14,"h":19} }, "youngster_down_2": { "frame": {"x":1341,"y":1,"w":14,"h":19}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":19}, "sourceSize": {"w":14,"h":19} }, "youngster_left_0": { "frame": {"x":1339,"y":106,"w":14,"h":19}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":19}, "sourceSize": {"w":14,"h":19} }, "youngster_left_1": { "frame": {"x":1345,"y":85,"w":14,"h":19}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":19}, "sourceSize": {"w":14,"h":19} }, "youngster_left_2": { "frame": {"x":1349,"y":64,"w":14,"h":19}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":19}, "sourceSize": {"w":14,"h":19} }, "youngster_right_0": { "frame": {"x":1350,"y":43,"w":14,"h":19}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":19}, "sourceSize": {"w":14,"h":19} }, "youngster_right_1": { "frame": {"x":1354,"y":22,"w":14,"h":19}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":19}, "sourceSize": {"w":14,"h":19} }, "youngster_right_2": { "frame": {"x":1357,"y":1,"w":14,"h":19}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":19}, "sourceSize": {"w":14,"h":19} }, "youngster_up_0": { "frame": {"x":1355,"y":106,"w":14,"h":19}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":19}, "sourceSize": {"w":14,"h":19} }, "youngster_up_1": { "frame": {"x":1361,"y":85,"w":14,"h":19}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":19}, "sourceSize": {"w":14,"h":19} }, "youngster_up_2": { "frame": {"x":1365,"y":64,"w":14,"h":19}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":14,"h":19}, "sourceSize": {"w":14,"h":19} }}, "animations": { "ace_trainer_down": ["ace_trainer_down_0","ace_trainer_down_1","ace_trainer_down_2"], "ace_trainer_left": ["ace_trainer_left_0","ace_trainer_left_1","ace_trainer_left_2"], "ace_trainer_right": ["ace_trainer_right_0","ace_trainer_right_1","ace_trainer_right_2"], "ace_trainer_up": ["ace_trainer_up_0","ace_trainer_up_1","ace_trainer_up_2"], "aroma_down": ["aroma_down_0","aroma_down_1","aroma_down_2"], "aroma_left": ["aroma_left_0","aroma_left_1","aroma_left_2"], "aroma_right": ["aroma_right_0","aroma_right_1","aroma_right_2"], "aroma_up": ["aroma_up_0","aroma_up_1","aroma_up_2"], "black_belt_down": ["black_belt_down_0","black_belt_down_1","black_belt_down_2"], "black_belt_left": ["black_belt_left_0","black_belt_left_1","black_belt_left_2"], "black_belt_right": ["black_belt_right_0","black_belt_right_1","black_belt_right_2"], "black_belt_up": ["black_belt_up_0","black_belt_up_1","black_belt_up_2"], "bug_catcher_down": ["bug_catcher_down_0","bug_catcher_down_1","bug_catcher_down_2"], "bug_catcher_left": ["bug_catcher_left_0","bug_catcher_left_1","bug_catcher_left_2"], "bug_catcher_right": ["bug_catcher_right_0","bug_catcher_right_1","bug_catcher_right_2"], "bug_catcher_up": ["bug_catcher_up_0","bug_catcher_up_1","bug_catcher_up_2"], "elder_f_down": ["elder_f_down_0","elder_f_down_1","elder_f_down_2"], "elder_f_left": ["elder_f_left_0","elder_f_left_1","elder_f_left_2"], "elder_f_right": ["elder_f_right_0","elder_f_right_1","elder_f_right_2"], "elder_f_up": ["elder_f_up_0","elder_f_up_1","elder_f_up_2"], "expert_f_down": ["expert_f_down_0","expert_f_down_1","expert_f_down_2"], "expert_f_left": ["expert_f_left_0","expert_f_left_1","expert_f_left_2"], "expert_f_right": ["expert_f_right_0","expert_f_right_1","expert_f_right_2"], "expert_f_up": ["expert_f_up_0","expert_f_up_1","expert_f_up_2"], "fisher_down": ["fisher_down_0","fisher_down_1","fisher_down_2"], "fisher_left": ["fisher_left_0","fisher_left_1","fisher_left_2"], "fisher_right": ["fisher_right_0","fisher_right_1","fisher_right_2"], "fisher_up": ["fisher_up_0","fisher_up_1","fisher_up_2"], "generic_c1_down": ["generic_c1_down_0","generic_c1_down_1","generic_c1_down_2"], "generic_c1_left": ["generic_c1_left_0","generic_c1_left_1","generic_c1_left_2"], "generic_c1_right": ["generic_c1_right_0","generic_c1_right_1","generic_c1_right_2"], "generic_c1_up": ["generic_c1_up_0","generic_c1_up_1","generic_c1_up_2"], "generic_c2_down": ["generic_c2_down_0","generic_c2_down_1","generic_c2_down_2"], "generic_c2_left": ["generic_c2_left_0","generic_c2_left_1","generic_c2_left_2"], "generic_c2_right": ["generic_c2_right_0","generic_c2_right_1","generic_c2_right_2"], "generic_c2_up": ["generic_c2_up_0","generic_c2_up_1","generic_c2_up_2"], "generic_c3_down": ["generic_c3_down_0","generic_c3_down_1","generic_c3_down_2"], "generic_c3_left": ["generic_c3_left_0","generic_c3_left_1","generic_c3_left_2"], "generic_c3_right": ["generic_c3_right_0","generic_c3_right_1","generic_c3_right_2"], "generic_c3_up": ["generic_c3_up_0","generic_c3_up_1","generic_c3_up_2"], "generic_f1_down": ["generic_f1_down_0","generic_f1_down_1","generic_f1_down_2"], "generic_f1_left": ["generic_f1_left_0","generic_f1_left_1","generic_f1_left_2"], "generic_f1_right": ["generic_f1_right_0","generic_f1_right_1","generic_f1_right_2"], "generic_f1_up": ["generic_f1_up_0","generic_f1_up_1","generic_f1_up_2"], "generic_f2_down": ["generic_f2_down_0","generic_f2_down_1","generic_f2_down_2"], "generic_f2_left": ["generic_f2_left_0","generic_f2_left_1","generic_f2_left_2"], "generic_f2_right": ["generic_f2_right_0","generic_f2_right_1","generic_f2_right_2"], "generic_f2_up": ["generic_f2_up_0","generic_f2_up_1","generic_f2_up_2"], "generic_f3_down": ["generic_f3_down_0","generic_f3_down_1","generic_f3_down_2"], "generic_f3_left": ["generic_f3_left_0","generic_f3_left_1","generic_f3_left_2"], "generic_f3_right": ["generic_f3_right_0","generic_f3_right_1","generic_f3_right_2"], "generic_f3_up": ["generic_f3_up_0","generic_f3_up_1","generic_f3_up_2"], "generic_f4_down": ["generic_f4_down_0","generic_f4_down_1","generic_f4_down_2"], "generic_f4_left": ["generic_f4_left_0","generic_f4_left_1","generic_f4_left_2"], "generic_f4_right": ["generic_f4_right_0","generic_f4_right_1","generic_f4_right_2"], "generic_f4_up": ["generic_f4_up_0","generic_f4_up_1","generic_f4_up_2"], "generic_f5_down": ["generic_f5_down_0","generic_f5_down_1","generic_f5_down_2"], "generic_f5_left": ["generic_f5_left_0","generic_f5_left_1","generic_f5_left_2"], "generic_f5_right": ["generic_f5_right_0","generic_f5_right_1","generic_f5_right_2"], "generic_f5_up": ["generic_f5_up_0","generic_f5_up_1","generic_f5_up_2"], "generic_m1_down": ["generic_m1_down_0","generic_m1_down_1","generic_m1_down_2"], "generic_m1_left": ["generic_m1_left_0","generic_m1_left_1","generic_m1_left_2"], "generic_m1_right": ["generic_m1_right_0","generic_m1_right_1","generic_m1_right_2"], "generic_m1_up": ["generic_m1_up_0","generic_m1_up_1"], "generic_m2_down": ["generic_m2_down_0","generic_m2_down_1","generic_m2_down_2"], "generic_m2_left": ["generic_m2_left_0","generic_m2_left_1","generic_m2_left_2"], "generic_m2_right": ["generic_m2_right_0","generic_m2_right_1","generic_m2_right_2"], "generic_m2_up": ["generic_m2_up_0","generic_m2_up_1","generic_m2_up_2"], "generic_m3_down": ["generic_m3_down_0","generic_m3_down_1","generic_m3_down_2"], "generic_m3_left": ["generic_m3_left_0","generic_m3_left_1","generic_m3_left_2"], "generic_m3_right": ["generic_m3_right_0","generic_m3_right_1","generic_m3_right_2"], "generic_m3_up": ["generic_m3_up_0","generic_m3_up_1","generic_m3_up_2"], "generic_m4_down": ["generic_m4_down_0","generic_m4_down_1","generic_m4_down_2"], "generic_m4_left": ["generic_m4_left_0","generic_m4_left_1","generic_m4_left_2"], "generic_m4_right": ["generic_m4_right_0","generic_m4_right_1","generic_m4_right_2"], "generic_m4_up": ["generic_m4_up_0","generic_m4_up_1","generic_m4_up_2"], "generic_m5_down": ["generic_m5_down_0","generic_m5_down_1","generic_m5_down_2"], "generic_m5_left": ["generic_m5_left_0","generic_m5_left_1","generic_m5_left_2"], "generic_m5_right": ["generic_m5_right_0","generic_m5_right_1","generic_m5_right_2"], "generic_m5_up": ["generic_m5_up_0","generic_m5_up_1","generic_m5_up_2"], "gentleman_down": ["gentleman_down_0","gentleman_down_1","gentleman_down_2"], "gentleman_left": ["gentleman_left_0","gentleman_left_1","gentleman_left_2"], "gentleman_right": ["gentleman_right_0","gentleman_right_1","gentleman_right_2"], "gentleman_up": ["gentleman_up_0","gentleman_up_1","gentleman_up_2"], "guitarist_down": ["guitarist_down_0","guitarist_down_1","guitarist_down_2"], "guitarist_left": ["guitarist_left_0","guitarist_left_1","guitarist_left_2"], "guitarist_right": ["guitarist_right_0","guitarist_right_1","guitarist_right_2"], "guitarist_up": ["guitarist_up_0","guitarist_up_1","guitarist_up_2"], "hiker_down": ["hiker_down_0","hiker_down_1","hiker_down_2"], "hiker_left": ["hiker_left_0","hiker_left_1","hiker_left_2"], "hiker_right": ["hiker_right_0","hiker_right_1","hiker_right_2"], "hiker_up": ["hiker_up_0","hiker_up_1","hiker_up_2"], "lass_down": ["lass_down_0","lass_down_1","lass_down_2"], "lass_left": ["lass_left_0","lass_left_1","lass_left_2"], "lass_right": ["lass_right_0","lass_right_1","lass_right_2"], "lass_up": ["lass_up_0","lass_up_1","lass_up_2"], "may_down": ["may_down_0","may_down_1","may_down_2"], "may_left": ["may_left_0","may_left_1","may_left_2"], "may_right": ["may_right_0","may_right_1","may_right_2"], "may_up": ["may_up_0","may_up_1","may_up_2"], "mom_down": ["mom_down_0","mom_down_1","mom_down_2"], "mom_left": ["mom_left_0","mom_left_1","mom_left_2"], "mom_right": ["mom_right_0","mom_right_1","mom_right_2"], "mom_up": ["mom_up_0","mom_up_1","mom_up_2"], "norman_down": ["norman_down_0","norman_down_1","norman_down_2"], "norman_left": ["norman_left_0","norman_left_1","norman_left_2"], "norman_up": ["norman_up_0","norman_up_1","norman_up_2"], "oups/scientist_down": ["oups/scientist_down_0","oups/scientist_down_1","oups/scientist_down_2"], "oups/scientist_left": ["oups/scientist_left_0","oups/scientist_left_1","oups/scientist_left_2"], "oups/scientist_right": ["oups/scientist_right_0","oups/scientist_right_1","oups/scientist_right_2"], "oups/scientist_up": ["oups/scientist_up_0","oups/scientist_up_1","oups/scientist_up_2"], "pokefan_down": ["pokefan_down_0","pokefan_down_1","pokefan_down_2"], "pokefan_left": ["pokefan_left_0","pokefan_left_1","pokefan_left_2"], "pokefan_right": ["pokefan_right_0","pokefan_right_1","pokefan_right_2"], "pokefan_up": ["pokefan_up_0","pokefan_up_1","pokefan_up_2"], "pokemaniac_down": ["pokemaniac_down_0","pokemaniac_down_1","pokemaniac_down_2"], "pokemaniac_left": ["pokemaniac_left_0","pokemaniac_left_1","pokemaniac_left_2"], "pokemaniac_right": ["pokemaniac_right_0","pokemaniac_right_1","pokemaniac_right_2"], "pokemaniac_up": ["pokemaniac_up_0","pokemaniac_up_1","pokemaniac_up_2"], "psychic_down": ["psychic_down_0","psychic_down_1","psychic_down_2"], "psychic_left": ["psychic_left_0","psychic_left_1","psychic_left_2"], "psychic_right": ["psychic_right_0","psychic_right_1","psychic_right_2"], "psychic_up": ["psychic_up_0","psychic_up_1","psychic_up_2"], "ranger_m_down": ["ranger_m_down_0","ranger_m_down_1","ranger_m_down_2"], "ranger_m_left": ["ranger_m_left_0","ranger_m_left_1","ranger_m_left_2"], "ranger_m_right": ["ranger_m_right_0","ranger_m_right_1","ranger_m_right_2"], "ranger_up": ["ranger_up_0","ranger_up_1","ranger_up_2"], "rich_boy_2_down": ["rich_boy_2_down_0","rich_boy_2_down_1","rich_boy_2_down_2"], "rich_boy_2_left": ["rich_boy_2_left_0","rich_boy_2_left_1","rich_boy_2_left_2"], "rich_boy_2_right": ["rich_boy_2_right_0","rich_boy_2_right_1","rich_boy_2_right_2"], "rich_boy_2_up": ["rich_boy_2_up_0","rich_boy_2_up_1","rich_boy_2_up_2"], "rich_boy_down": ["rich_boy_down_0","rich_boy_down_1","rich_boy_down_2"], "rich_boy_left": ["rich_boy_left_0","rich_boy_left_1","rich_boy_left_2"], "rich_boy_right": ["rich_boy_right_0","rich_boy_right_1","rich_boy_right_2"], "rich_boy_up": ["rich_boy_up_0","rich_boy_up_1","rich_boy_up_2"], "sailor_down": ["sailor_down_0","sailor_down_1","sailor_down_2"], "sailor_left": ["sailor_left_0","sailor_left_1","sailor_left_2"], "sailor_right": ["sailor_right_0","sailor_right_1","sailor_right_2"], "sailor_up": ["sailor_up_0","sailor_up_1","sailor_up_2"], "schoolkid_f_down": ["schoolkid_f_down_0","schoolkid_f_down_1","schoolkid_f_down_2"], "schoolkid_f_left": ["schoolkid_f_left_0","schoolkid_f_left_1","schoolkid_f_left_2"], "schoolkid_f_right": ["schoolkid_f_right_0","schoolkid_f_right_1","schoolkid_f_right_2"], "schoolkid_f_up": ["schoolkid_f_up_0","schoolkid_f_up_1","schoolkid_f_up_2"], "schoolkid_m_down": ["schoolkid_m_down_0","schoolkid_m_down_1","schoolkid_m_down_2"], "schoolkid_m_left": ["schoolkid_m_left_0","schoolkid_m_left_1","schoolkid_m_left_2"], "schoolkid_m_right": ["schoolkid_m_right_1","schoolkid_m_right_2"], "schoolkid_m_up": ["schoolkid_m_up_0","schoolkid_m_up_1","schoolkid_m_up_2"], "scientist_down": ["scientist_down_0","scientist_down_1","scientist_down_2"], "scientist_left": ["scientist_left_0","scientist_left_1","scientist_left_2"], "scientist_right": ["scientist_right_0","scientist_right_1","scientist_right_2"], "scientist_up": ["scientist_up_0","scientist_up_1","scientist_up_2"], "seko_down": ["seko_down_0","seko_down_1","seko_down_2"], "seko_left": ["seko_left_0","seko_left_1","seko_left_2"], "seko_right": ["seko_right_0","seko_right_1","seko_right_2"], "seko_up": ["seko_up_0","seko_up_1","seko_up_2"], "shopkeeper_f_down": ["shopkeeper_f_down_0","shopkeeper_f_down_1","shopkeeper_f_down_2"], "shopkeeper_f_left": ["shopkeeper_f_left_0","shopkeeper_f_left_1","shopkeeper_f_left_2"], "shopkeeper_f_right": ["shopkeeper_f_right_0","shopkeeper_f_right_1","shopkeeper_f_right_2"], "shopkeeper_f_up": ["shopkeeper_f_up_0","shopkeeper_f_up_1","shopkeeper_f_up_2"], "shopkeeper_m_down": ["shopkeeper_m_down_0","shopkeeper_m_down_1","shopkeeper_m_down_2"], "shopkeeper_m_left": ["shopkeeper_m_left_0","shopkeeper_m_left_1","shopkeeper_m_left_2"], "shopkeeper_m_right": ["shopkeeper_m_right_0","shopkeeper_m_right_1","shopkeeper_m_right_2"], "shopkeeper_m_up": ["shopkeeper_m_up_0","shopkeeper_m_up_1","shopkeeper_m_up_2"], "swimmer_f_down": ["swimmer_f_down_0","swimmer_f_down_1","swimmer_f_down_2"], "swimmer_f_left": ["swimmer_f_left_0","swimmer_f_left_1","swimmer_f_left_2"], "swimmer_f_right": ["swimmer_f_right_0","swimmer_f_right_1","swimmer_f_right_2"], "swimmer_f_up": ["swimmer_f_up_0","swimmer_f_up_1","swimmer_f_up_2"], "swimmer_m_down": ["swimmer_m_down_0","swimmer_m_down_1","swimmer_m_down_2"], "swimmer_m_left": ["swimmer_m_left_0","swimmer_m_left_1","swimmer_m_left_2"], "swimmer_m_right": ["swimmer_m_right_0","swimmer_m_right_1","swimmer_m_right_2"], "swimmer_m_up": ["swimmer_m_up_0","swimmer_m_up_1","swimmer_m_up_2"], "triathlete_f_down": ["triathlete_f_down_0","triathlete_f_down_1","triathlete_f_down_2"], "triathlete_f_left": ["triathlete_f_left_0","triathlete_f_left_1","triathlete_f_left_2"], "triathlete_f_right": ["triathlete_f_right_0","triathlete_f_right_1","triathlete_f_right_2"], "triathlete_f_up": ["triathlete_f_up_0","triathlete_f_up_1","triathlete_f_up_2"], "triathlete_m_down": ["triathlete_m_down_0","triathlete_m_down_1","triathlete_m_down_2"], "triathlete_m_left": ["triathlete_m_left_0","triathlete_m_left_1","triathlete_m_left_2"], "triathlete_m_right": ["triathlete_m_right_0","triathlete_m_right_1","triathlete_m_right_2"], "triathlete_m_up": ["triathlete_m_up_0","triathlete_m_up_1","triathlete_m_up_2"], "tuber_down": ["tuber_down_0","tuber_down_1","tuber_down_2"], "tuber_f_down": ["tuber_f_down_0","tuber_f_down_1","tuber_f_down_2"], "tuber_f_left": ["tuber_f_left_0","tuber_f_left_1","tuber_f_left_2"], "tuber_f_right": ["tuber_f_right_0","tuber_f_right_1","tuber_f_right_2"], "tuber_f_up": ["tuber_f_up_0","tuber_f_up_1","tuber_f_up_2"], "tuber_left": ["tuber_left_0","tuber_left_1","tuber_left_2"], "tuber_m_down": ["tuber_m_down_0","tuber_m_down_1","tuber_m_down_2"], "tuber_m_left": ["tuber_m_left_0","tuber_m_left_1","tuber_m_left_2"], "tuber_m_right": ["tuber_m_right_0","tuber_m_right_1","tuber_m_right_2"], "tuber_m_up": ["tuber_m_up_0","tuber_m_up_1","tuber_m_up_2"], "tuber_right": ["tuber_right_0","tuber_right_1","tuber_right_2"], "tuber_up": ["tuber_up_0","tuber_up_1","tuber_up_2"], "twin_down": ["twin_down_0","twin_down_1","twin_down_2"], "twin_left": ["twin_left_0","twin_left_1","twin_left_2"], "twin_right": ["twin_right_0","twin_right_1","twin_right_2"], "twin_up": ["twin_up_0","twin_up_1","twin_up_2"], "wally_down": ["wally_down_0","wally_down_1","wally_down_2"], "wally_left": ["wally_left_0","wally_left_1","wally_left_2"], "wally_right": ["wally_right_0","wally_right_1","wally_right_2"], "wally_up": ["wally_up_0","wally_up_1","wally_up_2"], "youngster_down": ["youngster_down_0","youngster_down_1","youngster_down_2"], "youngster_left": ["youngster_left_0","youngster_left_1","youngster_left_2"], "youngster_right": ["youngster_right_0","youngster_right_1","youngster_right_2"], "youngster_up": ["youngster_up_0","youngster_up_1","youngster_up_2"] }, "meta": { "app": "https://www.codeandweb.com/texturepacker", "version": "1.0", "image": "npcs.webp", "format": "RGBA8888", "size": {"w":1675,"h":128}, "scale": "1", "smartupdate": "$TexturePacker:SmartUpdate:a038c1e70dff6984250ff78f32430d6d:48ab2f40a49aa9d7b4745e272e7d36af:5cb4355ecf8d83a9e136fb1276dcd72c$" } } ================================================ FILE: copyrighted/textures/rse/tileset.json ================================================ {"frames": { "0": { "frame": {"x":1,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1": { "frame": {"x":19,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2": { "frame": {"x":37,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3": { "frame": {"x":55,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4": { "frame": {"x":73,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5": { "frame": {"x":91,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6": { "frame": {"x":109,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "7": { "frame": {"x":127,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "8": { "frame": {"x":145,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "9": { "frame": {"x":163,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "10": { "frame": {"x":181,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "11": { "frame": {"x":199,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "12": { "frame": {"x":217,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "13": { "frame": {"x":235,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "14": { "frame": {"x":253,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "15": { "frame": {"x":271,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "16": { "frame": {"x":289,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "17": { "frame": {"x":307,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "18": { "frame": {"x":325,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "19": { "frame": {"x":343,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "20": { "frame": {"x":361,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "21": { "frame": {"x":379,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "22": { "frame": {"x":397,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "23": { "frame": {"x":415,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "24": { "frame": {"x":433,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "25": { "frame": {"x":451,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "26": { "frame": {"x":469,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "27": { "frame": {"x":487,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "28": { "frame": {"x":505,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "29": { "frame": {"x":523,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "30": { "frame": {"x":541,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "31": { "frame": {"x":559,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "32": { "frame": {"x":577,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "33": { "frame": {"x":595,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "34": { "frame": {"x":613,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "35": { "frame": {"x":631,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "36": { "frame": {"x":649,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "37": { "frame": {"x":667,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "38": { "frame": {"x":685,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "39": { "frame": {"x":703,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "40": { "frame": {"x":721,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "41": { "frame": {"x":739,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "42": { "frame": {"x":757,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "43": { "frame": {"x":775,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "44": { "frame": {"x":793,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "45": { "frame": {"x":811,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "46": { "frame": {"x":829,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "47": { "frame": {"x":847,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "48": { "frame": {"x":865,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "49": { "frame": {"x":883,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "50": { "frame": {"x":901,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "51": { "frame": {"x":919,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "52": { "frame": {"x":937,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "53": { "frame": {"x":955,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "54": { "frame": {"x":973,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "55": { "frame": {"x":991,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "56": { "frame": {"x":1009,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "57": { "frame": {"x":1027,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "58": { "frame": {"x":1045,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "59": { "frame": {"x":1063,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "60": { "frame": {"x":1081,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "61": { "frame": {"x":1099,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "62": { "frame": {"x":1117,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "63": { "frame": {"x":1135,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "64": { "frame": {"x":1153,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "65": { "frame": {"x":1171,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "66": { "frame": {"x":1189,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "67": { "frame": {"x":1207,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "68": { "frame": {"x":1225,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "69": { "frame": {"x":1243,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "70": { "frame": {"x":1261,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "71": { "frame": {"x":1279,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "72": { "frame": {"x":1297,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "73": { "frame": {"x":1315,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "74": { "frame": {"x":1333,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "75": { "frame": {"x":1351,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "76": { "frame": {"x":1369,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "77": { "frame": {"x":1387,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "78": { "frame": {"x":1405,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "79": { "frame": {"x":1423,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "80": { "frame": {"x":1441,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "81": { "frame": {"x":1459,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "82": { "frame": {"x":1477,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "83": { "frame": {"x":1495,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "84": { "frame": {"x":1513,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "85": { "frame": {"x":1531,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "86": { "frame": {"x":1549,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "87": { "frame": {"x":1567,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "88": { "frame": {"x":1585,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "89": { "frame": {"x":1603,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "90": { "frame": {"x":1621,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "91": { "frame": {"x":1639,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "92": { "frame": {"x":1657,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "93": { "frame": {"x":1675,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "94": { "frame": {"x":1693,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "95": { "frame": {"x":1711,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "96": { "frame": {"x":1729,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "97": { "frame": {"x":1747,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "98": { "frame": {"x":1765,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "99": { "frame": {"x":1783,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "100": { "frame": {"x":1801,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "101": { "frame": {"x":1819,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "102": { "frame": {"x":1837,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "103": { "frame": {"x":1855,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "104": { "frame": {"x":1873,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "105": { "frame": {"x":1891,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "106": { "frame": {"x":1909,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "107": { "frame": {"x":1927,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "108": { "frame": {"x":1945,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "109": { "frame": {"x":1963,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "110": { "frame": {"x":1981,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "111": { "frame": {"x":1999,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "112": { "frame": {"x":2017,"y":1,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "113": { "frame": {"x":1,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "114": { "frame": {"x":19,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "115": { "frame": {"x":37,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "116": { "frame": {"x":55,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "117": { "frame": {"x":73,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "118": { "frame": {"x":91,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "119": { "frame": {"x":109,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "120": { "frame": {"x":127,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "121": { "frame": {"x":145,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "122": { "frame": {"x":163,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "123": { "frame": {"x":181,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "124": { "frame": {"x":199,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "125": { "frame": {"x":217,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "126": { "frame": {"x":235,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "127": { "frame": {"x":253,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "128": { "frame": {"x":271,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "129": { "frame": {"x":289,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "130": { "frame": {"x":307,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "131": { "frame": {"x":325,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "132": { "frame": {"x":343,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "133": { "frame": {"x":361,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "134": { "frame": {"x":379,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "135": { "frame": {"x":397,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "136": { "frame": {"x":415,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "137": { "frame": {"x":433,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "138": { "frame": {"x":451,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "139": { "frame": {"x":469,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "140": { "frame": {"x":487,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "141": { "frame": {"x":505,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "142": { "frame": {"x":523,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "143": { "frame": {"x":541,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "144": { "frame": {"x":559,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "145": { "frame": {"x":577,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "146": { "frame": {"x":595,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "147": { "frame": {"x":613,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "148": { "frame": {"x":631,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "149": { "frame": {"x":649,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "150": { "frame": {"x":667,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "151": { "frame": {"x":685,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "152": { "frame": {"x":703,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "153": { "frame": {"x":721,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "154": { "frame": {"x":739,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "155": { "frame": {"x":757,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "156": { "frame": {"x":775,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "157": { "frame": {"x":793,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "158": { "frame": {"x":811,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "159": { "frame": {"x":829,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "160": { "frame": {"x":847,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "161": { "frame": {"x":865,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "162": { "frame": {"x":883,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "163": { "frame": {"x":901,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "164": { "frame": {"x":919,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "165": { "frame": {"x":937,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "166": { "frame": {"x":955,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "167": { "frame": {"x":973,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "168": { "frame": {"x":991,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "169": { "frame": {"x":1009,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "170": { "frame": {"x":1027,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "171": { "frame": {"x":1045,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "172": { "frame": {"x":1063,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "173": { "frame": {"x":1081,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "174": { "frame": {"x":1099,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "175": { "frame": {"x":1117,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "176": { "frame": {"x":1135,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "177": { "frame": {"x":1153,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "178": { "frame": {"x":1171,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "179": { "frame": {"x":1189,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "180": { "frame": {"x":1207,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "181": { "frame": {"x":1225,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "182": { "frame": {"x":1243,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "183": { "frame": {"x":1261,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "184": { "frame": {"x":1279,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "185": { "frame": {"x":1297,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "186": { "frame": {"x":1315,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "187": { "frame": {"x":1333,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "188": { "frame": {"x":1351,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "189": { "frame": {"x":1369,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "190": { "frame": {"x":1387,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "191": { "frame": {"x":1405,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "192": { "frame": {"x":1423,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "193": { "frame": {"x":1441,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "194": { "frame": {"x":1459,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "195": { "frame": {"x":1477,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "196": { "frame": {"x":1495,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "197": { "frame": {"x":1513,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "198": { "frame": {"x":1531,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "199": { "frame": {"x":1549,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "200": { "frame": {"x":1567,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "201": { "frame": {"x":1585,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "202": { "frame": {"x":1603,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "203": { "frame": {"x":1621,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "204": { "frame": {"x":1639,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "205": { "frame": {"x":1657,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "206": { "frame": {"x":1675,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "207": { "frame": {"x":1693,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "208": { "frame": {"x":1711,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "209": { "frame": {"x":1729,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "210": { "frame": {"x":1747,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "211": { "frame": {"x":1765,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "212": { "frame": {"x":1783,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "213": { "frame": {"x":1801,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "214": { "frame": {"x":1819,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "215": { "frame": {"x":1837,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "216": { "frame": {"x":1855,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "217": { "frame": {"x":1873,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "218": { "frame": {"x":1891,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "219": { "frame": {"x":1909,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "220": { "frame": {"x":1927,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "221": { "frame": {"x":1945,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "222": { "frame": {"x":1963,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "223": { "frame": {"x":1981,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "224": { "frame": {"x":1999,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "225": { "frame": {"x":2017,"y":19,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "226": { "frame": {"x":1,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "227": { "frame": {"x":19,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "228": { "frame": {"x":37,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "229": { "frame": {"x":55,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "230": { "frame": {"x":73,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "231": { "frame": {"x":91,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "232": { "frame": {"x":109,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "233": { "frame": {"x":127,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "234": { "frame": {"x":145,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "235": { "frame": {"x":163,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "236": { "frame": {"x":181,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "237": { "frame": {"x":199,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "238": { "frame": {"x":217,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "239": { "frame": {"x":235,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "240": { "frame": {"x":253,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "241": { "frame": {"x":271,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "242": { "frame": {"x":289,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "243": { "frame": {"x":307,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "244": { "frame": {"x":325,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "245": { "frame": {"x":343,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "246": { "frame": {"x":361,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "247": { "frame": {"x":379,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "248": { "frame": {"x":397,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "249": { "frame": {"x":415,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "250": { "frame": {"x":433,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "251": { "frame": {"x":451,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "252": { "frame": {"x":469,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "253": { "frame": {"x":487,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "254": { "frame": {"x":505,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "255": { "frame": {"x":523,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "256": { "frame": {"x":541,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "257": { "frame": {"x":559,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "258": { "frame": {"x":577,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "259": { "frame": {"x":595,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "260": { "frame": {"x":613,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "261": { "frame": {"x":631,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "262": { "frame": {"x":649,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "263": { "frame": {"x":667,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "264": { "frame": {"x":685,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "265": { "frame": {"x":703,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "266": { "frame": {"x":721,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "267": { "frame": {"x":739,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "268": { "frame": {"x":757,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "269": { "frame": {"x":775,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "270": { "frame": {"x":793,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "271": { "frame": {"x":811,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "272": { "frame": {"x":829,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "273": { "frame": {"x":847,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "274": { "frame": {"x":865,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "275": { "frame": {"x":883,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "276": { "frame": {"x":901,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "277": { "frame": {"x":919,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "278": { "frame": {"x":937,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "279": { "frame": {"x":955,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "280": { "frame": {"x":973,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "281": { "frame": {"x":991,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "282": { "frame": {"x":1009,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "283": { "frame": {"x":1027,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "284": { "frame": {"x":1045,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "285": { "frame": {"x":1063,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "286": { "frame": {"x":1081,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "287": { "frame": {"x":1099,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "288": { "frame": {"x":1117,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "289": { "frame": {"x":1135,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "290": { "frame": {"x":1153,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "291": { "frame": {"x":1171,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "292": { "frame": {"x":1189,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "293": { "frame": {"x":1207,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "294": { "frame": {"x":1225,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "295": { "frame": {"x":1243,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "296": { "frame": {"x":1261,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "297": { "frame": {"x":1279,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "298": { "frame": {"x":1297,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "299": { "frame": {"x":1315,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "300": { "frame": {"x":1333,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "301": { "frame": {"x":1351,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "302": { "frame": {"x":1369,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "303": { "frame": {"x":1387,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "304": { "frame": {"x":1405,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "305": { "frame": {"x":1423,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "306": { "frame": {"x":1441,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "307": { "frame": {"x":1459,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "308": { "frame": {"x":1477,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "309": { "frame": {"x":1495,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "310": { "frame": {"x":1513,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "311": { "frame": {"x":1531,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "312": { "frame": {"x":1549,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "313": { "frame": {"x":1567,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "314": { "frame": {"x":1585,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "315": { "frame": {"x":1603,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "316": { "frame": {"x":1621,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "317": { "frame": {"x":1639,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "318": { "frame": {"x":1657,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "319": { "frame": {"x":1675,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "320": { "frame": {"x":1693,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "321": { "frame": {"x":1711,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "322": { "frame": {"x":1729,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "323": { "frame": {"x":1747,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "324": { "frame": {"x":1765,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "325": { "frame": {"x":1783,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "326": { "frame": {"x":1801,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "327": { "frame": {"x":1819,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "328": { "frame": {"x":1837,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "329": { "frame": {"x":1855,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "330": { "frame": {"x":1873,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "331": { "frame": {"x":1891,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "332": { "frame": {"x":1909,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "333": { "frame": {"x":1927,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "334": { "frame": {"x":1945,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "335": { "frame": {"x":1963,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "336": { "frame": {"x":1981,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "337": { "frame": {"x":1999,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "338": { "frame": {"x":2017,"y":37,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "339": { "frame": {"x":1,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "340": { "frame": {"x":19,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "341": { "frame": {"x":37,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "342": { "frame": {"x":55,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "343": { "frame": {"x":73,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "344": { "frame": {"x":91,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "345": { "frame": {"x":109,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "346": { "frame": {"x":127,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "347": { "frame": {"x":145,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "348": { "frame": {"x":163,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "349": { "frame": {"x":181,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "350": { "frame": {"x":199,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "351": { "frame": {"x":217,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "352": { "frame": {"x":235,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "353": { "frame": {"x":253,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "354": { "frame": {"x":271,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "355": { "frame": {"x":289,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "356": { "frame": {"x":307,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "357": { "frame": {"x":325,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "358": { "frame": {"x":343,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "359": { "frame": {"x":361,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "360": { "frame": {"x":379,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "361": { "frame": {"x":397,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "362": { "frame": {"x":415,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "363": { "frame": {"x":433,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "364": { "frame": {"x":451,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "365": { "frame": {"x":469,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "366": { "frame": {"x":487,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "367": { "frame": {"x":505,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "368": { "frame": {"x":523,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "369": { "frame": {"x":541,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "370": { "frame": {"x":559,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "371": { "frame": {"x":577,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "372": { "frame": {"x":595,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "373": { "frame": {"x":613,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "374": { "frame": {"x":631,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "375": { "frame": {"x":649,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "376": { "frame": {"x":667,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "377": { "frame": {"x":685,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "378": { "frame": {"x":703,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "379": { "frame": {"x":721,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "380": { "frame": {"x":739,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "381": { "frame": {"x":757,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "382": { "frame": {"x":775,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "383": { "frame": {"x":793,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "384": { "frame": {"x":811,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "385": { "frame": {"x":829,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "386": { "frame": {"x":847,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "387": { "frame": {"x":865,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "388": { "frame": {"x":883,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "389": { "frame": {"x":901,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "390": { "frame": {"x":919,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "391": { "frame": {"x":937,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "392": { "frame": {"x":955,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "393": { "frame": {"x":973,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "394": { "frame": {"x":991,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "395": { "frame": {"x":1009,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "396": { "frame": {"x":1027,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "397": { "frame": {"x":1045,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "398": { "frame": {"x":1063,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "399": { "frame": {"x":1081,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "400": { "frame": {"x":1099,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "401": { "frame": {"x":1117,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "402": { "frame": {"x":1135,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "403": { "frame": {"x":1153,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "404": { "frame": {"x":1171,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "405": { "frame": {"x":1189,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "406": { "frame": {"x":1207,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "407": { "frame": {"x":1225,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "408": { "frame": {"x":1243,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "409": { "frame": {"x":1261,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "410": { "frame": {"x":1279,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "411": { "frame": {"x":1297,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "412": { "frame": {"x":1315,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "413": { "frame": {"x":1333,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "414": { "frame": {"x":1351,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "415": { "frame": {"x":1369,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "416": { "frame": {"x":1387,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "417": { "frame": {"x":1405,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "418": { "frame": {"x":1423,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "419": { "frame": {"x":1441,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "420": { "frame": {"x":1459,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "421": { "frame": {"x":1477,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "422": { "frame": {"x":1495,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "423": { "frame": {"x":1513,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "424": { "frame": {"x":1531,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "425": { "frame": {"x":1549,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "426": { "frame": {"x":1567,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "427": { "frame": {"x":1585,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "428": { "frame": {"x":1603,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "429": { "frame": {"x":1621,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "430": { "frame": {"x":1639,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "431": { "frame": {"x":1657,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "432": { "frame": {"x":1675,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "433": { "frame": {"x":1693,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "434": { "frame": {"x":1711,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "435": { "frame": {"x":1729,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "436": { "frame": {"x":1747,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "437": { "frame": {"x":1765,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "438": { "frame": {"x":1783,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "439": { "frame": {"x":1801,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "440": { "frame": {"x":1819,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "441": { "frame": {"x":1837,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "442": { "frame": {"x":1855,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "443": { "frame": {"x":1873,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "444": { "frame": {"x":1891,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "445": { "frame": {"x":1909,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "446": { "frame": {"x":1927,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "447": { "frame": {"x":1945,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "448": { "frame": {"x":1963,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "449": { "frame": {"x":1981,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "450": { "frame": {"x":1999,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "451": { "frame": {"x":2017,"y":55,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "452": { "frame": {"x":1,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "453": { "frame": {"x":19,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "454": { "frame": {"x":37,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "455": { "frame": {"x":55,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "456": { "frame": {"x":73,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "457": { "frame": {"x":91,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "458": { "frame": {"x":109,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "459": { "frame": {"x":127,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "460": { "frame": {"x":145,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "461": { "frame": {"x":163,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "462": { "frame": {"x":181,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "463": { "frame": {"x":199,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "464": { "frame": {"x":217,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "465": { "frame": {"x":235,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "466": { "frame": {"x":253,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "467": { "frame": {"x":271,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "468": { "frame": {"x":289,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "469": { "frame": {"x":307,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "470": { "frame": {"x":325,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "471": { "frame": {"x":343,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "472": { "frame": {"x":361,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "473": { "frame": {"x":379,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "474": { "frame": {"x":397,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "475": { "frame": {"x":415,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "476": { "frame": {"x":433,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "477": { "frame": {"x":451,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "478": { "frame": {"x":469,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "479": { "frame": {"x":487,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "480": { "frame": {"x":505,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "481": { "frame": {"x":523,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "482": { "frame": {"x":541,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "483": { "frame": {"x":559,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "484": { "frame": {"x":577,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "485": { "frame": {"x":595,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "486": { "frame": {"x":613,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "487": { "frame": {"x":631,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "488": { "frame": {"x":649,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "489": { "frame": {"x":667,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "490": { "frame": {"x":685,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "491": { "frame": {"x":703,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "492": { "frame": {"x":721,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "493": { "frame": {"x":739,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "494": { "frame": {"x":757,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "495": { "frame": {"x":775,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "496": { "frame": {"x":793,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "497": { "frame": {"x":811,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "498": { "frame": {"x":829,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "499": { "frame": {"x":847,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "500": { "frame": {"x":865,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "501": { "frame": {"x":883,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "502": { "frame": {"x":901,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "503": { "frame": {"x":919,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "504": { "frame": {"x":937,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "505": { "frame": {"x":955,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "506": { "frame": {"x":973,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "507": { "frame": {"x":991,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "508": { "frame": {"x":1009,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "509": { "frame": {"x":1027,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "510": { "frame": {"x":1045,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "511": { "frame": {"x":1063,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "512": { "frame": {"x":1081,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "513": { "frame": {"x":1099,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "514": { "frame": {"x":1117,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "515": { "frame": {"x":1135,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "516": { "frame": {"x":1153,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "517": { "frame": {"x":1171,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "518": { "frame": {"x":1189,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "519": { "frame": {"x":1207,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "520": { "frame": {"x":1225,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "521": { "frame": {"x":1243,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "522": { "frame": {"x":1261,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "523": { "frame": {"x":1279,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "524": { "frame": {"x":1297,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "525": { "frame": {"x":1315,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "526": { "frame": {"x":1333,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "527": { "frame": {"x":1351,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "528": { "frame": {"x":1369,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "529": { "frame": {"x":1387,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "530": { "frame": {"x":1405,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "531": { "frame": {"x":1423,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "532": { "frame": {"x":1441,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "533": { "frame": {"x":1459,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "534": { "frame": {"x":1477,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "535": { "frame": {"x":1495,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "536": { "frame": {"x":1513,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "537": { "frame": {"x":1531,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "538": { "frame": {"x":1549,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "539": { "frame": {"x":1567,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "540": { "frame": {"x":1585,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "541": { "frame": {"x":1603,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "542": { "frame": {"x":1621,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "543": { "frame": {"x":1639,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "544": { "frame": {"x":1657,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "545": { "frame": {"x":1675,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "546": { "frame": {"x":1693,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "547": { "frame": {"x":1711,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "548": { "frame": {"x":1729,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "549": { "frame": {"x":1747,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "550": { "frame": {"x":1765,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "551": { "frame": {"x":1783,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "552": { "frame": {"x":1801,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "553": { "frame": {"x":1819,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "554": { "frame": {"x":1837,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "555": { "frame": {"x":1855,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "556": { "frame": {"x":1873,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "557": { "frame": {"x":1891,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "558": { "frame": {"x":1909,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "559": { "frame": {"x":1927,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "560": { "frame": {"x":1945,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "561": { "frame": {"x":1963,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "562": { "frame": {"x":1981,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "563": { "frame": {"x":1999,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "564": { "frame": {"x":2017,"y":73,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "565": { "frame": {"x":1,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "566": { "frame": {"x":19,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "567": { "frame": {"x":37,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "568": { "frame": {"x":55,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "569": { "frame": {"x":73,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "570": { "frame": {"x":91,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "571": { "frame": {"x":109,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "572": { "frame": {"x":127,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "573": { "frame": {"x":145,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "574": { "frame": {"x":163,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "575": { "frame": {"x":181,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "576": { "frame": {"x":199,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "577": { "frame": {"x":217,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "578": { "frame": {"x":235,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "579": { "frame": {"x":253,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "580": { "frame": {"x":271,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "581": { "frame": {"x":289,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "582": { "frame": {"x":307,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "583": { "frame": {"x":325,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "584": { "frame": {"x":343,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "585": { "frame": {"x":361,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "586": { "frame": {"x":379,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "587": { "frame": {"x":397,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "588": { "frame": {"x":415,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "589": { "frame": {"x":433,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "590": { "frame": {"x":451,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "591": { "frame": {"x":469,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "592": { "frame": {"x":487,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "593": { "frame": {"x":505,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "594": { "frame": {"x":523,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "595": { "frame": {"x":541,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "596": { "frame": {"x":559,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "597": { "frame": {"x":577,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "598": { "frame": {"x":595,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "599": { "frame": {"x":613,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "600": { "frame": {"x":631,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "601": { "frame": {"x":649,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "602": { "frame": {"x":667,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "603": { "frame": {"x":685,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "604": { "frame": {"x":703,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "605": { "frame": {"x":721,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "606": { "frame": {"x":739,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "607": { "frame": {"x":757,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "608": { "frame": {"x":775,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "609": { "frame": {"x":793,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "610": { "frame": {"x":811,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "611": { "frame": {"x":829,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "612": { "frame": {"x":847,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "613": { "frame": {"x":865,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "614": { "frame": {"x":883,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "615": { "frame": {"x":901,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "616": { "frame": {"x":919,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "617": { "frame": {"x":937,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "618": { "frame": {"x":955,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "619": { "frame": {"x":973,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "620": { "frame": {"x":991,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "621": { "frame": {"x":1009,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "622": { "frame": {"x":1027,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "623": { "frame": {"x":1045,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "624": { "frame": {"x":1063,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "625": { "frame": {"x":1081,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "626": { "frame": {"x":1099,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "627": { "frame": {"x":1117,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "628": { "frame": {"x":1135,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "629": { "frame": {"x":1153,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "630": { "frame": {"x":1171,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "631": { "frame": {"x":1189,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "632": { "frame": {"x":1207,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "633": { "frame": {"x":1225,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "634": { "frame": {"x":1243,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "635": { "frame": {"x":1261,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "636": { "frame": {"x":1279,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "637": { "frame": {"x":1297,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "638": { "frame": {"x":1315,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "639": { "frame": {"x":1333,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "640": { "frame": {"x":1351,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "641": { "frame": {"x":1369,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "642": { "frame": {"x":1387,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "643": { "frame": {"x":1405,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "644": { "frame": {"x":1423,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "645": { "frame": {"x":1441,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "646": { "frame": {"x":1459,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "647": { "frame": {"x":1477,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "648": { "frame": {"x":1495,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "649": { "frame": {"x":1513,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "650": { "frame": {"x":1531,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "651": { "frame": {"x":1549,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "652": { "frame": {"x":1567,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "653": { "frame": {"x":1585,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "654": { "frame": {"x":1603,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "655": { "frame": {"x":1621,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "656": { "frame": {"x":1639,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "657": { "frame": {"x":1657,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "658": { "frame": {"x":1675,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "659": { "frame": {"x":1693,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "660": { "frame": {"x":1711,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "661": { "frame": {"x":1729,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "662": { "frame": {"x":1747,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "663": { "frame": {"x":1765,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "664": { "frame": {"x":1783,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "665": { "frame": {"x":1801,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "666": { "frame": {"x":1819,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "667": { "frame": {"x":1837,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "668": { "frame": {"x":1855,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "669": { "frame": {"x":1873,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "670": { "frame": {"x":1891,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "671": { "frame": {"x":1909,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "672": { "frame": {"x":1927,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "673": { "frame": {"x":1945,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "674": { "frame": {"x":1963,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "675": { "frame": {"x":1981,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "676": { "frame": {"x":1999,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "677": { "frame": {"x":2017,"y":91,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "678": { "frame": {"x":1,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "679": { "frame": {"x":19,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "680": { "frame": {"x":37,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "681": { "frame": {"x":55,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "682": { "frame": {"x":73,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "683": { "frame": {"x":91,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "684": { "frame": {"x":109,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "685": { "frame": {"x":127,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "686": { "frame": {"x":145,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "687": { "frame": {"x":163,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "688": { "frame": {"x":181,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "689": { "frame": {"x":199,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "690": { "frame": {"x":217,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "691": { "frame": {"x":235,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "692": { "frame": {"x":253,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "693": { "frame": {"x":271,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "694": { "frame": {"x":289,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "695": { "frame": {"x":307,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "696": { "frame": {"x":325,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "697": { "frame": {"x":343,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "698": { "frame": {"x":361,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "699": { "frame": {"x":379,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "700": { "frame": {"x":397,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "701": { "frame": {"x":415,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "702": { "frame": {"x":433,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "703": { "frame": {"x":451,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "704": { "frame": {"x":469,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "705": { "frame": {"x":487,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "706": { "frame": {"x":505,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "707": { "frame": {"x":523,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "708": { "frame": {"x":541,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "709": { "frame": {"x":559,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "710": { "frame": {"x":577,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "711": { "frame": {"x":595,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "712": { "frame": {"x":613,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "713": { "frame": {"x":631,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "714": { "frame": {"x":649,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "715": { "frame": {"x":667,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "716": { "frame": {"x":685,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "717": { "frame": {"x":703,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "718": { "frame": {"x":721,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "719": { "frame": {"x":739,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "720": { "frame": {"x":757,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "721": { "frame": {"x":775,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "722": { "frame": {"x":793,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "723": { "frame": {"x":811,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "724": { "frame": {"x":829,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "725": { "frame": {"x":847,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "726": { "frame": {"x":865,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "727": { "frame": {"x":883,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "728": { "frame": {"x":901,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "729": { "frame": {"x":919,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "730": { "frame": {"x":937,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "731": { "frame": {"x":955,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "732": { "frame": {"x":973,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "733": { "frame": {"x":991,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "734": { "frame": {"x":1009,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "735": { "frame": {"x":1027,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "736": { "frame": {"x":1045,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "737": { "frame": {"x":1063,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "738": { "frame": {"x":1081,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "739": { "frame": {"x":1099,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "740": { "frame": {"x":1117,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "741": { "frame": {"x":1135,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "742": { "frame": {"x":1153,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "743": { "frame": {"x":1171,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "744": { "frame": {"x":1189,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "745": { "frame": {"x":1207,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "746": { "frame": {"x":1225,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "747": { "frame": {"x":1243,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "748": { "frame": {"x":1261,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "749": { "frame": {"x":1279,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "750": { "frame": {"x":1297,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "751": { "frame": {"x":1315,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "752": { "frame": {"x":1333,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "753": { "frame": {"x":1351,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "754": { "frame": {"x":1369,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "755": { "frame": {"x":1387,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "756": { "frame": {"x":1405,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "757": { "frame": {"x":1423,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "758": { "frame": {"x":1441,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "759": { "frame": {"x":1459,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "760": { "frame": {"x":1477,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "761": { "frame": {"x":1495,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "762": { "frame": {"x":1513,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "763": { "frame": {"x":1531,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "764": { "frame": {"x":1549,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "765": { "frame": {"x":1567,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "766": { "frame": {"x":1585,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "767": { "frame": {"x":1603,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "768": { "frame": {"x":1621,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "769": { "frame": {"x":1639,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "770": { "frame": {"x":1657,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "771": { "frame": {"x":1675,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "772": { "frame": {"x":1693,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "773": { "frame": {"x":1711,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "774": { "frame": {"x":1729,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "775": { "frame": {"x":1747,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "776": { "frame": {"x":1765,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "777": { "frame": {"x":1783,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "778": { "frame": {"x":1801,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "779": { "frame": {"x":1819,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "780": { "frame": {"x":1837,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "781": { "frame": {"x":1855,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "782": { "frame": {"x":1873,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "783": { "frame": {"x":1891,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "784": { "frame": {"x":1909,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "785": { "frame": {"x":1927,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "786": { "frame": {"x":1945,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "787": { "frame": {"x":1963,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "788": { "frame": {"x":1981,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "789": { "frame": {"x":1999,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "790": { "frame": {"x":2017,"y":109,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "791": { "frame": {"x":1,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "792": { "frame": {"x":19,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "793": { "frame": {"x":37,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "794": { "frame": {"x":55,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "795": { "frame": {"x":73,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "796": { "frame": {"x":91,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "797": { "frame": {"x":109,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "798": { "frame": {"x":127,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "799": { "frame": {"x":145,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "800": { "frame": {"x":163,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "801": { "frame": {"x":181,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "802": { "frame": {"x":199,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "803": { "frame": {"x":217,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "804": { "frame": {"x":235,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "805": { "frame": {"x":253,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "806": { "frame": {"x":271,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "807": { "frame": {"x":289,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "808": { "frame": {"x":307,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "809": { "frame": {"x":325,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "810": { "frame": {"x":343,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "811": { "frame": {"x":361,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "812": { "frame": {"x":379,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "813": { "frame": {"x":397,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "814": { "frame": {"x":415,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "815": { "frame": {"x":433,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "816": { "frame": {"x":451,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "817": { "frame": {"x":469,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "818": { "frame": {"x":487,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "819": { "frame": {"x":505,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "820": { "frame": {"x":523,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "821": { "frame": {"x":541,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "822": { "frame": {"x":559,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "823": { "frame": {"x":577,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "824": { "frame": {"x":595,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "825": { "frame": {"x":613,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "826": { "frame": {"x":631,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "827": { "frame": {"x":649,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "828": { "frame": {"x":667,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "829": { "frame": {"x":685,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "830": { "frame": {"x":703,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "831": { "frame": {"x":721,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "832": { "frame": {"x":739,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "833": { "frame": {"x":757,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "834": { "frame": {"x":775,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "835": { "frame": {"x":793,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "836": { "frame": {"x":811,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "837": { "frame": {"x":829,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "838": { "frame": {"x":847,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "839": { "frame": {"x":865,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "840": { "frame": {"x":883,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "841": { "frame": {"x":901,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "842": { "frame": {"x":919,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "843": { "frame": {"x":937,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "844": { "frame": {"x":955,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "845": { "frame": {"x":973,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "846": { "frame": {"x":991,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "847": { "frame": {"x":1009,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "848": { "frame": {"x":1027,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "849": { "frame": {"x":1045,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "850": { "frame": {"x":1063,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "851": { "frame": {"x":1081,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "852": { "frame": {"x":1099,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "853": { "frame": {"x":1117,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "854": { "frame": {"x":1135,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "855": { "frame": {"x":1153,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "856": { "frame": {"x":1171,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "857": { "frame": {"x":1189,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "858": { "frame": {"x":1207,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "859": { "frame": {"x":1225,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "860": { "frame": {"x":1243,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "861": { "frame": {"x":1261,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "862": { "frame": {"x":1279,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "863": { "frame": {"x":1297,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "864": { "frame": {"x":1315,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "865": { "frame": {"x":1333,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "866": { "frame": {"x":1351,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "867": { "frame": {"x":1369,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "868": { "frame": {"x":1387,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "869": { "frame": {"x":1405,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "870": { "frame": {"x":1423,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "871": { "frame": {"x":1441,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "872": { "frame": {"x":1459,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "873": { "frame": {"x":1477,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "874": { "frame": {"x":1495,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "875": { "frame": {"x":1513,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "876": { "frame": {"x":1531,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "877": { "frame": {"x":1549,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "878": { "frame": {"x":1567,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "879": { "frame": {"x":1585,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "880": { "frame": {"x":1603,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "881": { "frame": {"x":1621,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "882": { "frame": {"x":1639,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "883": { "frame": {"x":1657,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "884": { "frame": {"x":1675,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "885": { "frame": {"x":1693,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "886": { "frame": {"x":1711,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "887": { "frame": {"x":1729,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "888": { "frame": {"x":1747,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "889": { "frame": {"x":1765,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "890": { "frame": {"x":1783,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "891": { "frame": {"x":1801,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "892": { "frame": {"x":1819,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "893": { "frame": {"x":1837,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "894": { "frame": {"x":1855,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "895": { "frame": {"x":1873,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "896": { "frame": {"x":1891,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "897": { "frame": {"x":1909,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "898": { "frame": {"x":1927,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "899": { "frame": {"x":1945,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "900": { "frame": {"x":1963,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "901": { "frame": {"x":1981,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "902": { "frame": {"x":1999,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "903": { "frame": {"x":2017,"y":127,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "904": { "frame": {"x":1,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "905": { "frame": {"x":19,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "906": { "frame": {"x":37,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "907": { "frame": {"x":55,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "908": { "frame": {"x":73,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "909": { "frame": {"x":91,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "910": { "frame": {"x":109,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "911": { "frame": {"x":127,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "912": { "frame": {"x":145,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "913": { "frame": {"x":163,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "914": { "frame": {"x":181,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "915": { "frame": {"x":199,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "916": { "frame": {"x":217,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "917": { "frame": {"x":235,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "918": { "frame": {"x":253,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "919": { "frame": {"x":271,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "920": { "frame": {"x":289,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "921": { "frame": {"x":307,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "922": { "frame": {"x":325,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "923": { "frame": {"x":343,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "924": { "frame": {"x":361,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "925": { "frame": {"x":379,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "926": { "frame": {"x":397,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "927": { "frame": {"x":415,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "928": { "frame": {"x":433,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "929": { "frame": {"x":451,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "930": { "frame": {"x":469,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "931": { "frame": {"x":487,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "932": { "frame": {"x":505,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "933": { "frame": {"x":523,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "934": { "frame": {"x":541,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "935": { "frame": {"x":559,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "936": { "frame": {"x":577,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "937": { "frame": {"x":595,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "938": { "frame": {"x":613,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "939": { "frame": {"x":631,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "940": { "frame": {"x":649,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "941": { "frame": {"x":667,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "942": { "frame": {"x":685,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "943": { "frame": {"x":703,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "944": { "frame": {"x":721,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "945": { "frame": {"x":739,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "946": { "frame": {"x":757,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "947": { "frame": {"x":775,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "948": { "frame": {"x":793,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "949": { "frame": {"x":811,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "950": { "frame": {"x":829,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "951": { "frame": {"x":847,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "952": { "frame": {"x":865,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "953": { "frame": {"x":883,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "954": { "frame": {"x":901,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "955": { "frame": {"x":919,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "956": { "frame": {"x":937,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "957": { "frame": {"x":955,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "958": { "frame": {"x":973,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "959": { "frame": {"x":991,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "960": { "frame": {"x":1009,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "961": { "frame": {"x":1027,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "962": { "frame": {"x":1045,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "963": { "frame": {"x":1063,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "964": { "frame": {"x":1081,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "965": { "frame": {"x":1099,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "966": { "frame": {"x":1117,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "967": { "frame": {"x":1135,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "968": { "frame": {"x":1153,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "969": { "frame": {"x":1171,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "970": { "frame": {"x":1189,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "971": { "frame": {"x":1207,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "972": { "frame": {"x":1225,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "973": { "frame": {"x":1243,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "974": { "frame": {"x":1261,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "975": { "frame": {"x":1279,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "976": { "frame": {"x":1297,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "977": { "frame": {"x":1315,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "978": { "frame": {"x":1333,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "979": { "frame": {"x":1351,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "980": { "frame": {"x":1369,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "981": { "frame": {"x":1387,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "982": { "frame": {"x":1405,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "983": { "frame": {"x":1423,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "984": { "frame": {"x":1441,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "985": { "frame": {"x":1459,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "986": { "frame": {"x":1477,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "987": { "frame": {"x":1495,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "988": { "frame": {"x":1513,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "989": { "frame": {"x":1531,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "990": { "frame": {"x":1549,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "991": { "frame": {"x":1567,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "992": { "frame": {"x":1585,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "993": { "frame": {"x":1603,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "994": { "frame": {"x":1621,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "995": { "frame": {"x":1639,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "996": { "frame": {"x":1657,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "997": { "frame": {"x":1675,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "998": { "frame": {"x":1693,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "999": { "frame": {"x":1711,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1000": { "frame": {"x":1729,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1001": { "frame": {"x":1747,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1002": { "frame": {"x":1765,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1003": { "frame": {"x":1783,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1004": { "frame": {"x":1801,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1005": { "frame": {"x":1819,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1006": { "frame": {"x":1837,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1007": { "frame": {"x":1855,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1008": { "frame": {"x":1873,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1009": { "frame": {"x":1891,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1010": { "frame": {"x":1909,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1011": { "frame": {"x":1927,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1012": { "frame": {"x":1945,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1013": { "frame": {"x":1963,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1014": { "frame": {"x":1981,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1015": { "frame": {"x":1999,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1016": { "frame": {"x":2017,"y":145,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1017": { "frame": {"x":1,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1018": { "frame": {"x":19,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1019": { "frame": {"x":37,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1020": { "frame": {"x":55,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1021": { "frame": {"x":73,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1022": { "frame": {"x":91,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1023": { "frame": {"x":109,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1024": { "frame": {"x":127,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1025": { "frame": {"x":145,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1026": { "frame": {"x":163,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1027": { "frame": {"x":181,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1028": { "frame": {"x":199,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1029": { "frame": {"x":217,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1030": { "frame": {"x":235,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1031": { "frame": {"x":253,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1032": { "frame": {"x":271,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1033": { "frame": {"x":289,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1034": { "frame": {"x":307,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1035": { "frame": {"x":325,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1036": { "frame": {"x":343,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1037": { "frame": {"x":361,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1038": { "frame": {"x":379,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1039": { "frame": {"x":397,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1040": { "frame": {"x":415,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1041": { "frame": {"x":433,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1042": { "frame": {"x":451,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1043": { "frame": {"x":469,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1044": { "frame": {"x":487,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1045": { "frame": {"x":505,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1046": { "frame": {"x":523,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1047": { "frame": {"x":541,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1048": { "frame": {"x":559,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1049": { "frame": {"x":577,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1050": { "frame": {"x":595,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1051": { "frame": {"x":613,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1052": { "frame": {"x":631,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1053": { "frame": {"x":649,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1054": { "frame": {"x":667,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1055": { "frame": {"x":685,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1056": { "frame": {"x":703,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1057": { "frame": {"x":721,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1058": { "frame": {"x":739,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1059": { "frame": {"x":757,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1060": { "frame": {"x":775,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1061": { "frame": {"x":793,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1062": { "frame": {"x":811,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1063": { "frame": {"x":829,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1064": { "frame": {"x":847,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1065": { "frame": {"x":865,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1066": { "frame": {"x":883,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1067": { "frame": {"x":901,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1068": { "frame": {"x":919,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1069": { "frame": {"x":937,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1070": { "frame": {"x":955,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1071": { "frame": {"x":973,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1072": { "frame": {"x":991,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1073": { "frame": {"x":1009,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1074": { "frame": {"x":1027,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1075": { "frame": {"x":1045,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1076": { "frame": {"x":1063,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1077": { "frame": {"x":1081,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1078": { "frame": {"x":1099,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1079": { "frame": {"x":1117,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1080": { "frame": {"x":1135,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1081": { "frame": {"x":1153,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1082": { "frame": {"x":1171,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1083": { "frame": {"x":1189,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1084": { "frame": {"x":1207,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1085": { "frame": {"x":1225,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1086": { "frame": {"x":1243,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1087": { "frame": {"x":1261,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1088": { "frame": {"x":1279,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1089": { "frame": {"x":1297,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1090": { "frame": {"x":1315,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1091": { "frame": {"x":1333,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1092": { "frame": {"x":1351,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1093": { "frame": {"x":1369,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1094": { "frame": {"x":1387,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1095": { "frame": {"x":1405,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1096": { "frame": {"x":1423,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1097": { "frame": {"x":1441,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1098": { "frame": {"x":1459,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1099": { "frame": {"x":1477,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1100": { "frame": {"x":1495,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1101": { "frame": {"x":1513,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1102": { "frame": {"x":1531,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1103": { "frame": {"x":1549,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1104": { "frame": {"x":1567,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1105": { "frame": {"x":1585,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1106": { "frame": {"x":1603,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1107": { "frame": {"x":1621,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1108": { "frame": {"x":1639,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1109": { "frame": {"x":1657,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1110": { "frame": {"x":1675,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1111": { "frame": {"x":1693,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1112": { "frame": {"x":1711,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1113": { "frame": {"x":1729,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1114": { "frame": {"x":1747,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1115": { "frame": {"x":1765,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1116": { "frame": {"x":1783,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1117": { "frame": {"x":1801,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1118": { "frame": {"x":1819,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1119": { "frame": {"x":1837,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1120": { "frame": {"x":1855,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1121": { "frame": {"x":1873,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1122": { "frame": {"x":1891,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1123": { "frame": {"x":1909,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1124": { "frame": {"x":1927,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1125": { "frame": {"x":1945,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1126": { "frame": {"x":1963,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1127": { "frame": {"x":1981,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1128": { "frame": {"x":1999,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1129": { "frame": {"x":2017,"y":163,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1130": { "frame": {"x":1,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1131": { "frame": {"x":19,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1132": { "frame": {"x":37,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1133": { "frame": {"x":55,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1134": { "frame": {"x":73,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1135": { "frame": {"x":91,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1136": { "frame": {"x":109,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1137": { "frame": {"x":127,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1138": { "frame": {"x":145,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1139": { "frame": {"x":163,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1140": { "frame": {"x":181,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1141": { "frame": {"x":199,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1142": { "frame": {"x":217,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1143": { "frame": {"x":235,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1144": { "frame": {"x":253,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1145": { "frame": {"x":271,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1146": { "frame": {"x":289,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1147": { "frame": {"x":307,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1148": { "frame": {"x":325,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1149": { "frame": {"x":343,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1150": { "frame": {"x":361,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1151": { "frame": {"x":379,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1152": { "frame": {"x":397,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1153": { "frame": {"x":415,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1154": { "frame": {"x":433,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1155": { "frame": {"x":451,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1156": { "frame": {"x":469,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1157": { "frame": {"x":487,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1158": { "frame": {"x":505,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1159": { "frame": {"x":523,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1160": { "frame": {"x":541,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1161": { "frame": {"x":559,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1162": { "frame": {"x":577,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1163": { "frame": {"x":595,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1164": { "frame": {"x":613,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1165": { "frame": {"x":631,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1166": { "frame": {"x":649,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1167": { "frame": {"x":667,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1168": { "frame": {"x":685,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1169": { "frame": {"x":703,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1170": { "frame": {"x":721,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1171": { "frame": {"x":739,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1172": { "frame": {"x":757,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1173": { "frame": {"x":775,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1174": { "frame": {"x":793,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1175": { "frame": {"x":811,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1176": { "frame": {"x":829,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1177": { "frame": {"x":847,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1178": { "frame": {"x":865,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1179": { "frame": {"x":883,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1180": { "frame": {"x":901,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1181": { "frame": {"x":919,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1182": { "frame": {"x":937,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1183": { "frame": {"x":955,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1184": { "frame": {"x":973,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1185": { "frame": {"x":991,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1186": { "frame": {"x":1009,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1187": { "frame": {"x":1027,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1188": { "frame": {"x":1045,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1189": { "frame": {"x":1063,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1190": { "frame": {"x":1081,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1191": { "frame": {"x":1099,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1192": { "frame": {"x":1117,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1193": { "frame": {"x":1135,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1194": { "frame": {"x":1153,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1195": { "frame": {"x":1171,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1196": { "frame": {"x":1189,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1197": { "frame": {"x":1207,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1198": { "frame": {"x":1225,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1199": { "frame": {"x":1243,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1200": { "frame": {"x":1261,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1201": { "frame": {"x":1279,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1202": { "frame": {"x":1297,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1203": { "frame": {"x":1315,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1204": { "frame": {"x":1333,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1205": { "frame": {"x":1351,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1206": { "frame": {"x":1369,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1207": { "frame": {"x":1387,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1208": { "frame": {"x":1405,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1209": { "frame": {"x":1423,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1210": { "frame": {"x":1441,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1211": { "frame": {"x":1459,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1212": { "frame": {"x":1477,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1213": { "frame": {"x":1495,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1214": { "frame": {"x":1513,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1215": { "frame": {"x":1531,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1216": { "frame": {"x":1549,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1217": { "frame": {"x":1567,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1218": { "frame": {"x":1585,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1219": { "frame": {"x":1603,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1220": { "frame": {"x":1621,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1221": { "frame": {"x":1639,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1222": { "frame": {"x":1657,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1223": { "frame": {"x":1675,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1224": { "frame": {"x":1693,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1225": { "frame": {"x":1711,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1226": { "frame": {"x":1729,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1227": { "frame": {"x":1747,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1228": { "frame": {"x":1765,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1229": { "frame": {"x":1783,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1230": { "frame": {"x":1801,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1231": { "frame": {"x":1819,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1232": { "frame": {"x":1837,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1233": { "frame": {"x":1855,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1234": { "frame": {"x":1873,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1235": { "frame": {"x":1891,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1236": { "frame": {"x":1909,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1237": { "frame": {"x":1927,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1238": { "frame": {"x":1945,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1239": { "frame": {"x":1963,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1240": { "frame": {"x":1981,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1241": { "frame": {"x":1999,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1242": { "frame": {"x":2017,"y":181,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1243": { "frame": {"x":1,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1244": { "frame": {"x":19,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1245": { "frame": {"x":37,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1246": { "frame": {"x":55,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1247": { "frame": {"x":73,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1248": { "frame": {"x":91,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1249": { "frame": {"x":109,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1250": { "frame": {"x":127,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1251": { "frame": {"x":145,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1252": { "frame": {"x":163,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1253": { "frame": {"x":181,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1254": { "frame": {"x":199,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1255": { "frame": {"x":217,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1256": { "frame": {"x":235,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1257": { "frame": {"x":253,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1258": { "frame": {"x":271,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1259": { "frame": {"x":289,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1260": { "frame": {"x":307,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1261": { "frame": {"x":325,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1262": { "frame": {"x":343,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1263": { "frame": {"x":361,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1264": { "frame": {"x":379,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1265": { "frame": {"x":397,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1266": { "frame": {"x":415,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1267": { "frame": {"x":433,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1268": { "frame": {"x":451,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1269": { "frame": {"x":469,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1270": { "frame": {"x":487,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1271": { "frame": {"x":505,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1272": { "frame": {"x":523,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1273": { "frame": {"x":541,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1274": { "frame": {"x":559,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1275": { "frame": {"x":577,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1276": { "frame": {"x":595,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1277": { "frame": {"x":613,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1278": { "frame": {"x":631,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1279": { "frame": {"x":649,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1280": { "frame": {"x":667,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1281": { "frame": {"x":685,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1282": { "frame": {"x":703,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1283": { "frame": {"x":721,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1284": { "frame": {"x":739,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1285": { "frame": {"x":757,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1286": { "frame": {"x":775,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1287": { "frame": {"x":793,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1288": { "frame": {"x":811,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1289": { "frame": {"x":829,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1290": { "frame": {"x":847,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1291": { "frame": {"x":865,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1292": { "frame": {"x":883,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1293": { "frame": {"x":901,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1294": { "frame": {"x":919,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1295": { "frame": {"x":937,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1296": { "frame": {"x":955,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1297": { "frame": {"x":973,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1298": { "frame": {"x":991,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1299": { "frame": {"x":1009,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1300": { "frame": {"x":1027,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1301": { "frame": {"x":1045,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1302": { "frame": {"x":1063,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1303": { "frame": {"x":1081,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1304": { "frame": {"x":1099,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1305": { "frame": {"x":1117,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1306": { "frame": {"x":1135,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1307": { "frame": {"x":1153,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1308": { "frame": {"x":1171,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1309": { "frame": {"x":1189,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1310": { "frame": {"x":1207,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1311": { "frame": {"x":1225,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1312": { "frame": {"x":1243,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1313": { "frame": {"x":1261,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1314": { "frame": {"x":1279,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1315": { "frame": {"x":1297,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1316": { "frame": {"x":1315,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1317": { "frame": {"x":1333,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1318": { "frame": {"x":1351,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1319": { "frame": {"x":1369,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1320": { "frame": {"x":1387,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1321": { "frame": {"x":1405,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1322": { "frame": {"x":1423,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1323": { "frame": {"x":1441,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1324": { "frame": {"x":1459,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1325": { "frame": {"x":1477,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1326": { "frame": {"x":1495,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1327": { "frame": {"x":1513,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1328": { "frame": {"x":1531,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1329": { "frame": {"x":1549,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1330": { "frame": {"x":1567,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1331": { "frame": {"x":1585,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1332": { "frame": {"x":1603,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1333": { "frame": {"x":1621,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1334": { "frame": {"x":1639,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1335": { "frame": {"x":1657,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1336": { "frame": {"x":1675,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1337": { "frame": {"x":1693,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1338": { "frame": {"x":1711,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1339": { "frame": {"x":1729,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1340": { "frame": {"x":1747,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1341": { "frame": {"x":1765,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1342": { "frame": {"x":1783,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1343": { "frame": {"x":1801,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1344": { "frame": {"x":1819,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1345": { "frame": {"x":1837,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1346": { "frame": {"x":1855,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1347": { "frame": {"x":1873,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1348": { "frame": {"x":1891,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1349": { "frame": {"x":1909,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1350": { "frame": {"x":1927,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1351": { "frame": {"x":1945,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1352": { "frame": {"x":1963,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1353": { "frame": {"x":1981,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1354": { "frame": {"x":1999,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1355": { "frame": {"x":2017,"y":199,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1356": { "frame": {"x":1,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1357": { "frame": {"x":19,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1358": { "frame": {"x":37,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1359": { "frame": {"x":55,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1360": { "frame": {"x":73,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1361": { "frame": {"x":91,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1362": { "frame": {"x":109,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1363": { "frame": {"x":127,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1364": { "frame": {"x":145,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1365": { "frame": {"x":163,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1366": { "frame": {"x":181,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1367": { "frame": {"x":199,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1368": { "frame": {"x":217,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1369": { "frame": {"x":235,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1370": { "frame": {"x":253,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1371": { "frame": {"x":271,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1372": { "frame": {"x":289,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1373": { "frame": {"x":307,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1374": { "frame": {"x":325,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1375": { "frame": {"x":343,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1376": { "frame": {"x":361,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1377": { "frame": {"x":379,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1378": { "frame": {"x":397,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1379": { "frame": {"x":415,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1380": { "frame": {"x":433,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1381": { "frame": {"x":451,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1382": { "frame": {"x":469,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1383": { "frame": {"x":487,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1384": { "frame": {"x":505,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1385": { "frame": {"x":523,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1386": { "frame": {"x":541,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1387": { "frame": {"x":559,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1388": { "frame": {"x":577,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1389": { "frame": {"x":595,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1390": { "frame": {"x":613,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1391": { "frame": {"x":631,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1392": { "frame": {"x":649,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1393": { "frame": {"x":667,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1394": { "frame": {"x":685,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1395": { "frame": {"x":703,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1396": { "frame": {"x":721,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1397": { "frame": {"x":739,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1398": { "frame": {"x":757,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1399": { "frame": {"x":775,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1400": { "frame": {"x":793,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1401": { "frame": {"x":811,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1402": { "frame": {"x":829,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1403": { "frame": {"x":847,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1404": { "frame": {"x":865,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1405": { "frame": {"x":883,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1406": { "frame": {"x":901,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1407": { "frame": {"x":919,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1408": { "frame": {"x":937,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1409": { "frame": {"x":955,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1410": { "frame": {"x":973,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1411": { "frame": {"x":991,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1412": { "frame": {"x":1009,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1413": { "frame": {"x":1027,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1414": { "frame": {"x":1045,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1415": { "frame": {"x":1063,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1416": { "frame": {"x":1081,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1417": { "frame": {"x":1099,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1418": { "frame": {"x":1117,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1419": { "frame": {"x":1135,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1420": { "frame": {"x":1153,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1421": { "frame": {"x":1171,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1422": { "frame": {"x":1189,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1423": { "frame": {"x":1207,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1424": { "frame": {"x":1225,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1425": { "frame": {"x":1243,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1426": { "frame": {"x":1261,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1427": { "frame": {"x":1279,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1428": { "frame": {"x":1297,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1429": { "frame": {"x":1315,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1430": { "frame": {"x":1333,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1431": { "frame": {"x":1351,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1432": { "frame": {"x":1369,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1433": { "frame": {"x":1387,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1434": { "frame": {"x":1405,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1435": { "frame": {"x":1423,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1436": { "frame": {"x":1441,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1437": { "frame": {"x":1459,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1438": { "frame": {"x":1477,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1439": { "frame": {"x":1495,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1440": { "frame": {"x":1513,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1441": { "frame": {"x":1531,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1442": { "frame": {"x":1549,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1443": { "frame": {"x":1567,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1444": { "frame": {"x":1585,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1445": { "frame": {"x":1603,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1446": { "frame": {"x":1621,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1447": { "frame": {"x":1639,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1448": { "frame": {"x":1657,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1449": { "frame": {"x":1675,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1450": { "frame": {"x":1693,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1451": { "frame": {"x":1711,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1452": { "frame": {"x":1729,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1453": { "frame": {"x":1747,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1454": { "frame": {"x":1765,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1455": { "frame": {"x":1783,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1456": { "frame": {"x":1801,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1457": { "frame": {"x":1819,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1458": { "frame": {"x":1837,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1459": { "frame": {"x":1855,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1460": { "frame": {"x":1873,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1461": { "frame": {"x":1891,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1462": { "frame": {"x":1909,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1463": { "frame": {"x":1927,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1464": { "frame": {"x":1945,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1465": { "frame": {"x":1963,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1466": { "frame": {"x":1981,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1467": { "frame": {"x":1999,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1468": { "frame": {"x":2017,"y":217,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1469": { "frame": {"x":1,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1470": { "frame": {"x":19,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1471": { "frame": {"x":37,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1472": { "frame": {"x":55,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1473": { "frame": {"x":73,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1474": { "frame": {"x":91,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1475": { "frame": {"x":109,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1476": { "frame": {"x":127,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1477": { "frame": {"x":145,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1478": { "frame": {"x":163,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1479": { "frame": {"x":181,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1480": { "frame": {"x":199,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1481": { "frame": {"x":217,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1482": { "frame": {"x":235,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1483": { "frame": {"x":253,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1484": { "frame": {"x":271,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1485": { "frame": {"x":289,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1486": { "frame": {"x":307,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1487": { "frame": {"x":325,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1488": { "frame": {"x":343,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1489": { "frame": {"x":361,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1490": { "frame": {"x":379,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1491": { "frame": {"x":397,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1492": { "frame": {"x":415,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1493": { "frame": {"x":433,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1494": { "frame": {"x":451,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1495": { "frame": {"x":469,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1496": { "frame": {"x":487,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1497": { "frame": {"x":505,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1498": { "frame": {"x":523,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1499": { "frame": {"x":541,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1500": { "frame": {"x":559,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1501": { "frame": {"x":577,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1502": { "frame": {"x":595,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1503": { "frame": {"x":613,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1504": { "frame": {"x":631,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1505": { "frame": {"x":649,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1506": { "frame": {"x":667,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1507": { "frame": {"x":685,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1508": { "frame": {"x":703,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1509": { "frame": {"x":721,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1510": { "frame": {"x":739,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1511": { "frame": {"x":757,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1512": { "frame": {"x":775,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1513": { "frame": {"x":793,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1514": { "frame": {"x":811,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1515": { "frame": {"x":829,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1516": { "frame": {"x":847,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1517": { "frame": {"x":865,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1518": { "frame": {"x":883,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1519": { "frame": {"x":901,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1520": { "frame": {"x":919,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1521": { "frame": {"x":937,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1522": { "frame": {"x":955,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1523": { "frame": {"x":973,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1524": { "frame": {"x":991,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1525": { "frame": {"x":1009,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1526": { "frame": {"x":1027,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1527": { "frame": {"x":1045,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1528": { "frame": {"x":1063,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1529": { "frame": {"x":1081,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1530": { "frame": {"x":1099,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1531": { "frame": {"x":1117,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1532": { "frame": {"x":1135,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1533": { "frame": {"x":1153,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1534": { "frame": {"x":1171,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1535": { "frame": {"x":1189,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1536": { "frame": {"x":1207,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1537": { "frame": {"x":1225,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1538": { "frame": {"x":1243,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1539": { "frame": {"x":1261,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1540": { "frame": {"x":1279,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1541": { "frame": {"x":1297,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1542": { "frame": {"x":1315,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1543": { "frame": {"x":1333,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1544": { "frame": {"x":1351,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1545": { "frame": {"x":1369,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1546": { "frame": {"x":1387,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1547": { "frame": {"x":1405,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1548": { "frame": {"x":1423,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1549": { "frame": {"x":1441,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1550": { "frame": {"x":1459,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1551": { "frame": {"x":1477,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1552": { "frame": {"x":1495,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1553": { "frame": {"x":1513,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1554": { "frame": {"x":1531,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1555": { "frame": {"x":1549,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1556": { "frame": {"x":1567,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1557": { "frame": {"x":1585,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1558": { "frame": {"x":1603,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1559": { "frame": {"x":1621,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1560": { "frame": {"x":1639,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1561": { "frame": {"x":1657,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1562": { "frame": {"x":1675,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1563": { "frame": {"x":1693,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1564": { "frame": {"x":1711,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1565": { "frame": {"x":1729,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1566": { "frame": {"x":1747,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1567": { "frame": {"x":1765,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1568": { "frame": {"x":1783,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1569": { "frame": {"x":1801,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1570": { "frame": {"x":1819,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1571": { "frame": {"x":1837,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1572": { "frame": {"x":1855,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1573": { "frame": {"x":1873,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1574": { "frame": {"x":1891,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1575": { "frame": {"x":1909,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1576": { "frame": {"x":1927,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1577": { "frame": {"x":1945,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1578": { "frame": {"x":1963,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1579": { "frame": {"x":1981,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1580": { "frame": {"x":1999,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1581": { "frame": {"x":2017,"y":235,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1582": { "frame": {"x":1,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1583": { "frame": {"x":19,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1584": { "frame": {"x":37,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1585": { "frame": {"x":55,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1586": { "frame": {"x":73,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1587": { "frame": {"x":91,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1588": { "frame": {"x":109,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1589": { "frame": {"x":127,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1590": { "frame": {"x":145,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1591": { "frame": {"x":163,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1592": { "frame": {"x":181,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1593": { "frame": {"x":199,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1594": { "frame": {"x":217,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1595": { "frame": {"x":235,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1596": { "frame": {"x":253,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1597": { "frame": {"x":271,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1598": { "frame": {"x":289,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1599": { "frame": {"x":307,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1600": { "frame": {"x":325,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1601": { "frame": {"x":343,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1602": { "frame": {"x":361,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1603": { "frame": {"x":379,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1604": { "frame": {"x":397,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1605": { "frame": {"x":415,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1606": { "frame": {"x":433,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1607": { "frame": {"x":451,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1608": { "frame": {"x":469,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1609": { "frame": {"x":487,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1610": { "frame": {"x":505,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1611": { "frame": {"x":523,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1612": { "frame": {"x":541,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1613": { "frame": {"x":559,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1614": { "frame": {"x":577,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1615": { "frame": {"x":595,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1616": { "frame": {"x":613,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1617": { "frame": {"x":631,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1618": { "frame": {"x":649,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1619": { "frame": {"x":667,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1620": { "frame": {"x":685,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1621": { "frame": {"x":703,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1622": { "frame": {"x":721,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1623": { "frame": {"x":739,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1624": { "frame": {"x":757,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1625": { "frame": {"x":775,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1626": { "frame": {"x":793,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1627": { "frame": {"x":811,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1628": { "frame": {"x":829,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1629": { "frame": {"x":847,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1630": { "frame": {"x":865,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1631": { "frame": {"x":883,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1632": { "frame": {"x":901,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1633": { "frame": {"x":919,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1634": { "frame": {"x":937,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1635": { "frame": {"x":955,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1636": { "frame": {"x":973,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1637": { "frame": {"x":991,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1638": { "frame": {"x":1009,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1639": { "frame": {"x":1027,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1640": { "frame": {"x":1045,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1641": { "frame": {"x":1063,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1642": { "frame": {"x":1081,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1643": { "frame": {"x":1099,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1644": { "frame": {"x":1117,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1645": { "frame": {"x":1135,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1646": { "frame": {"x":1153,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1647": { "frame": {"x":1171,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1648": { "frame": {"x":1189,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1649": { "frame": {"x":1207,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1650": { "frame": {"x":1225,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1651": { "frame": {"x":1243,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1652": { "frame": {"x":1261,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1653": { "frame": {"x":1279,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1654": { "frame": {"x":1297,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1655": { "frame": {"x":1315,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1656": { "frame": {"x":1333,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1657": { "frame": {"x":1351,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1658": { "frame": {"x":1369,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1659": { "frame": {"x":1387,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1660": { "frame": {"x":1405,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1661": { "frame": {"x":1423,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1662": { "frame": {"x":1441,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1663": { "frame": {"x":1459,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1664": { "frame": {"x":1477,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1665": { "frame": {"x":1495,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1666": { "frame": {"x":1513,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1667": { "frame": {"x":1531,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1668": { "frame": {"x":1549,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1669": { "frame": {"x":1567,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1670": { "frame": {"x":1585,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1671": { "frame": {"x":1603,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1672": { "frame": {"x":1621,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1673": { "frame": {"x":1639,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1674": { "frame": {"x":1657,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1675": { "frame": {"x":1675,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1676": { "frame": {"x":1693,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1677": { "frame": {"x":1711,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1678": { "frame": {"x":1729,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1679": { "frame": {"x":1747,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1680": { "frame": {"x":1765,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1681": { "frame": {"x":1783,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1682": { "frame": {"x":1801,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1683": { "frame": {"x":1819,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1684": { "frame": {"x":1837,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1685": { "frame": {"x":1855,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1686": { "frame": {"x":1873,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1687": { "frame": {"x":1891,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1688": { "frame": {"x":1909,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1689": { "frame": {"x":1927,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1690": { "frame": {"x":1945,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1691": { "frame": {"x":1963,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1692": { "frame": {"x":1981,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1693": { "frame": {"x":1999,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1694": { "frame": {"x":2017,"y":253,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1695": { "frame": {"x":1,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1696": { "frame": {"x":19,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1697": { "frame": {"x":37,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1698": { "frame": {"x":55,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1699": { "frame": {"x":73,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1700": { "frame": {"x":91,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1701": { "frame": {"x":109,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1702": { "frame": {"x":127,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1703": { "frame": {"x":145,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1704": { "frame": {"x":163,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1705": { "frame": {"x":181,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1706": { "frame": {"x":199,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1707": { "frame": {"x":217,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1708": { "frame": {"x":235,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1709": { "frame": {"x":253,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1710": { "frame": {"x":271,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1711": { "frame": {"x":289,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1712": { "frame": {"x":307,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1713": { "frame": {"x":325,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1714": { "frame": {"x":343,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1715": { "frame": {"x":361,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1716": { "frame": {"x":379,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1717": { "frame": {"x":397,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1718": { "frame": {"x":415,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1719": { "frame": {"x":433,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1720": { "frame": {"x":451,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1721": { "frame": {"x":469,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1722": { "frame": {"x":487,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1723": { "frame": {"x":505,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1724": { "frame": {"x":523,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1725": { "frame": {"x":541,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1726": { "frame": {"x":559,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1727": { "frame": {"x":577,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1728": { "frame": {"x":595,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1729": { "frame": {"x":613,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1730": { "frame": {"x":631,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1731": { "frame": {"x":649,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1732": { "frame": {"x":667,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1733": { "frame": {"x":685,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1734": { "frame": {"x":703,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1735": { "frame": {"x":721,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1736": { "frame": {"x":739,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1737": { "frame": {"x":757,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1738": { "frame": {"x":775,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1739": { "frame": {"x":793,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1740": { "frame": {"x":811,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1741": { "frame": {"x":829,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1742": { "frame": {"x":847,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1743": { "frame": {"x":865,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1744": { "frame": {"x":883,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1745": { "frame": {"x":901,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1746": { "frame": {"x":919,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1747": { "frame": {"x":937,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1748": { "frame": {"x":955,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1749": { "frame": {"x":973,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1750": { "frame": {"x":991,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1751": { "frame": {"x":1009,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1752": { "frame": {"x":1027,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1753": { "frame": {"x":1045,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1754": { "frame": {"x":1063,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1755": { "frame": {"x":1081,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1756": { "frame": {"x":1099,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1757": { "frame": {"x":1117,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1758": { "frame": {"x":1135,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1759": { "frame": {"x":1153,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1760": { "frame": {"x":1171,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1761": { "frame": {"x":1189,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1762": { "frame": {"x":1207,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1763": { "frame": {"x":1225,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1764": { "frame": {"x":1243,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1765": { "frame": {"x":1261,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1766": { "frame": {"x":1279,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1767": { "frame": {"x":1297,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1768": { "frame": {"x":1315,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1769": { "frame": {"x":1333,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1770": { "frame": {"x":1351,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1771": { "frame": {"x":1369,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1772": { "frame": {"x":1387,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1773": { "frame": {"x":1405,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1774": { "frame": {"x":1423,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1775": { "frame": {"x":1441,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1776": { "frame": {"x":1459,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1777": { "frame": {"x":1477,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1778": { "frame": {"x":1495,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1779": { "frame": {"x":1513,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1780": { "frame": {"x":1531,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1781": { "frame": {"x":1549,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1782": { "frame": {"x":1567,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1783": { "frame": {"x":1585,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1784": { "frame": {"x":1603,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1785": { "frame": {"x":1621,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1786": { "frame": {"x":1639,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1787": { "frame": {"x":1657,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1788": { "frame": {"x":1675,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1789": { "frame": {"x":1693,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1790": { "frame": {"x":1711,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1791": { "frame": {"x":1729,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1792": { "frame": {"x":1747,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1793": { "frame": {"x":1765,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1794": { "frame": {"x":1783,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1795": { "frame": {"x":1801,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1796": { "frame": {"x":1819,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1797": { "frame": {"x":1837,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1798": { "frame": {"x":1855,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1799": { "frame": {"x":1873,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1800": { "frame": {"x":1891,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1801": { "frame": {"x":1909,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1802": { "frame": {"x":1927,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1803": { "frame": {"x":1945,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1804": { "frame": {"x":1963,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1805": { "frame": {"x":1981,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1806": { "frame": {"x":1999,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1807": { "frame": {"x":2017,"y":271,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1808": { "frame": {"x":1,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1809": { "frame": {"x":19,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1810": { "frame": {"x":37,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1811": { "frame": {"x":55,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1812": { "frame": {"x":73,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1813": { "frame": {"x":91,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1814": { "frame": {"x":109,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1815": { "frame": {"x":127,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1816": { "frame": {"x":145,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1817": { "frame": {"x":163,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1818": { "frame": {"x":181,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1819": { "frame": {"x":199,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1820": { "frame": {"x":217,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1821": { "frame": {"x":235,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1822": { "frame": {"x":253,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1823": { "frame": {"x":271,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1824": { "frame": {"x":289,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1825": { "frame": {"x":307,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1826": { "frame": {"x":325,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1827": { "frame": {"x":343,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1828": { "frame": {"x":361,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1829": { "frame": {"x":379,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1830": { "frame": {"x":397,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1831": { "frame": {"x":415,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1832": { "frame": {"x":433,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1833": { "frame": {"x":451,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1834": { "frame": {"x":469,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1835": { "frame": {"x":487,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1836": { "frame": {"x":505,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1837": { "frame": {"x":523,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1838": { "frame": {"x":541,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1839": { "frame": {"x":559,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1840": { "frame": {"x":577,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1841": { "frame": {"x":595,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1842": { "frame": {"x":613,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1843": { "frame": {"x":631,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1844": { "frame": {"x":649,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1845": { "frame": {"x":667,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1846": { "frame": {"x":685,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1847": { "frame": {"x":703,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1848": { "frame": {"x":721,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1849": { "frame": {"x":739,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1850": { "frame": {"x":757,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1851": { "frame": {"x":775,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1852": { "frame": {"x":793,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1853": { "frame": {"x":811,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1854": { "frame": {"x":829,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1855": { "frame": {"x":847,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1856": { "frame": {"x":865,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1857": { "frame": {"x":883,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1858": { "frame": {"x":901,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1859": { "frame": {"x":919,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1860": { "frame": {"x":937,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1861": { "frame": {"x":955,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1862": { "frame": {"x":973,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1863": { "frame": {"x":991,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1864": { "frame": {"x":1009,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1865": { "frame": {"x":1027,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1866": { "frame": {"x":1045,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1867": { "frame": {"x":1063,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1868": { "frame": {"x":1081,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1869": { "frame": {"x":1099,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1870": { "frame": {"x":1117,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1871": { "frame": {"x":1135,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1872": { "frame": {"x":1153,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1873": { "frame": {"x":1171,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1874": { "frame": {"x":1189,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1875": { "frame": {"x":1207,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1876": { "frame": {"x":1225,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1877": { "frame": {"x":1243,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1878": { "frame": {"x":1261,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1879": { "frame": {"x":1279,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1880": { "frame": {"x":1297,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1881": { "frame": {"x":1315,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1882": { "frame": {"x":1333,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1883": { "frame": {"x":1351,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1884": { "frame": {"x":1369,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1885": { "frame": {"x":1387,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1886": { "frame": {"x":1405,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1887": { "frame": {"x":1423,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1888": { "frame": {"x":1441,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1889": { "frame": {"x":1459,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1890": { "frame": {"x":1477,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1891": { "frame": {"x":1495,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1892": { "frame": {"x":1513,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1893": { "frame": {"x":1531,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1894": { "frame": {"x":1549,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1895": { "frame": {"x":1567,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1896": { "frame": {"x":1585,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1897": { "frame": {"x":1603,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1898": { "frame": {"x":1621,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1899": { "frame": {"x":1639,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1900": { "frame": {"x":1657,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1901": { "frame": {"x":1675,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1902": { "frame": {"x":1693,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1903": { "frame": {"x":1711,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1904": { "frame": {"x":1729,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1905": { "frame": {"x":1747,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1906": { "frame": {"x":1765,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1907": { "frame": {"x":1783,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1908": { "frame": {"x":1801,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1909": { "frame": {"x":1819,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1910": { "frame": {"x":1837,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1911": { "frame": {"x":1855,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1912": { "frame": {"x":1873,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1913": { "frame": {"x":1891,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1914": { "frame": {"x":1909,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1915": { "frame": {"x":1927,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1916": { "frame": {"x":1945,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1917": { "frame": {"x":1963,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1918": { "frame": {"x":1981,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1919": { "frame": {"x":1999,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1920": { "frame": {"x":2017,"y":289,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1921": { "frame": {"x":1,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1922": { "frame": {"x":19,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1923": { "frame": {"x":37,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1924": { "frame": {"x":55,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1925": { "frame": {"x":73,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1926": { "frame": {"x":91,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1927": { "frame": {"x":109,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1928": { "frame": {"x":127,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1929": { "frame": {"x":145,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1930": { "frame": {"x":163,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1931": { "frame": {"x":181,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1932": { "frame": {"x":199,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1933": { "frame": {"x":217,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1934": { "frame": {"x":235,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1935": { "frame": {"x":253,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1936": { "frame": {"x":271,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1937": { "frame": {"x":289,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1938": { "frame": {"x":307,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1939": { "frame": {"x":325,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1940": { "frame": {"x":343,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1941": { "frame": {"x":361,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1942": { "frame": {"x":379,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1943": { "frame": {"x":397,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1944": { "frame": {"x":415,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1945": { "frame": {"x":433,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1946": { "frame": {"x":451,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1947": { "frame": {"x":469,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1948": { "frame": {"x":487,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1949": { "frame": {"x":505,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1950": { "frame": {"x":523,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1951": { "frame": {"x":541,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1952": { "frame": {"x":559,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1953": { "frame": {"x":577,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1954": { "frame": {"x":595,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1955": { "frame": {"x":613,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1956": { "frame": {"x":631,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1957": { "frame": {"x":649,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1958": { "frame": {"x":667,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1959": { "frame": {"x":685,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1960": { "frame": {"x":703,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1961": { "frame": {"x":721,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1962": { "frame": {"x":739,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1963": { "frame": {"x":757,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1964": { "frame": {"x":775,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1965": { "frame": {"x":793,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1966": { "frame": {"x":811,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1967": { "frame": {"x":829,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1968": { "frame": {"x":847,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1969": { "frame": {"x":865,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1970": { "frame": {"x":883,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1971": { "frame": {"x":901,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1972": { "frame": {"x":919,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1973": { "frame": {"x":937,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1974": { "frame": {"x":955,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1975": { "frame": {"x":973,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1976": { "frame": {"x":991,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1977": { "frame": {"x":1009,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1978": { "frame": {"x":1027,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1979": { "frame": {"x":1045,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1980": { "frame": {"x":1063,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1981": { "frame": {"x":1081,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1982": { "frame": {"x":1099,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1983": { "frame": {"x":1117,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1984": { "frame": {"x":1135,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1985": { "frame": {"x":1153,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1986": { "frame": {"x":1171,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1987": { "frame": {"x":1189,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1988": { "frame": {"x":1207,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1989": { "frame": {"x":1225,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1990": { "frame": {"x":1243,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1991": { "frame": {"x":1261,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1992": { "frame": {"x":1279,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1993": { "frame": {"x":1297,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1994": { "frame": {"x":1315,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1995": { "frame": {"x":1333,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1996": { "frame": {"x":1351,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1997": { "frame": {"x":1369,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1998": { "frame": {"x":1387,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "1999": { "frame": {"x":1405,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2000": { "frame": {"x":1423,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2001": { "frame": {"x":1441,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2002": { "frame": {"x":1459,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2003": { "frame": {"x":1477,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2004": { "frame": {"x":1495,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2005": { "frame": {"x":1513,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2006": { "frame": {"x":1531,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2007": { "frame": {"x":1549,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2008": { "frame": {"x":1567,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2009": { "frame": {"x":1585,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2010": { "frame": {"x":1603,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2011": { "frame": {"x":1621,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2012": { "frame": {"x":1639,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2013": { "frame": {"x":1657,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2014": { "frame": {"x":1675,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2015": { "frame": {"x":1693,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2016": { "frame": {"x":1711,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2017": { "frame": {"x":1729,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2018": { "frame": {"x":1747,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2019": { "frame": {"x":1765,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2020": { "frame": {"x":1783,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2021": { "frame": {"x":1801,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2022": { "frame": {"x":1819,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2023": { "frame": {"x":1837,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2024": { "frame": {"x":1855,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2025": { "frame": {"x":1873,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2026": { "frame": {"x":1891,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2027": { "frame": {"x":1909,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2028": { "frame": {"x":1927,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2029": { "frame": {"x":1945,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2030": { "frame": {"x":1963,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2031": { "frame": {"x":1981,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2032": { "frame": {"x":1999,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2033": { "frame": {"x":2017,"y":307,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2034": { "frame": {"x":1,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2035": { "frame": {"x":19,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2036": { "frame": {"x":37,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2037": { "frame": {"x":55,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2038": { "frame": {"x":73,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2039": { "frame": {"x":91,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2040": { "frame": {"x":109,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2041": { "frame": {"x":127,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2042": { "frame": {"x":145,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2043": { "frame": {"x":163,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2044": { "frame": {"x":181,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2045": { "frame": {"x":199,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2046": { "frame": {"x":217,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2047": { "frame": {"x":235,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2048": { "frame": {"x":253,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2049": { "frame": {"x":271,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2050": { "frame": {"x":289,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2051": { "frame": {"x":307,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2052": { "frame": {"x":325,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2053": { "frame": {"x":343,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2054": { "frame": {"x":361,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2055": { "frame": {"x":379,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2056": { "frame": {"x":397,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2057": { "frame": {"x":415,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2058": { "frame": {"x":433,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2059": { "frame": {"x":451,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2060": { "frame": {"x":469,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2061": { "frame": {"x":487,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2062": { "frame": {"x":505,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2063": { "frame": {"x":523,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2064": { "frame": {"x":541,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2065": { "frame": {"x":559,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2066": { "frame": {"x":577,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2067": { "frame": {"x":595,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2068": { "frame": {"x":613,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2069": { "frame": {"x":631,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2070": { "frame": {"x":649,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2071": { "frame": {"x":667,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2072": { "frame": {"x":685,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2073": { "frame": {"x":703,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2074": { "frame": {"x":721,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2075": { "frame": {"x":739,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2076": { "frame": {"x":757,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2077": { "frame": {"x":775,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2078": { "frame": {"x":793,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2079": { "frame": {"x":811,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2080": { "frame": {"x":829,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2081": { "frame": {"x":847,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2082": { "frame": {"x":865,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2083": { "frame": {"x":883,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2084": { "frame": {"x":901,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2085": { "frame": {"x":919,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2086": { "frame": {"x":937,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2087": { "frame": {"x":955,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2088": { "frame": {"x":973,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2089": { "frame": {"x":991,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2090": { "frame": {"x":1009,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2091": { "frame": {"x":1027,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2092": { "frame": {"x":1045,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2093": { "frame": {"x":1063,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2094": { "frame": {"x":1081,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2095": { "frame": {"x":1099,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2096": { "frame": {"x":1117,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2097": { "frame": {"x":1135,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2098": { "frame": {"x":1153,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2099": { "frame": {"x":1171,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2100": { "frame": {"x":1189,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2101": { "frame": {"x":1207,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2102": { "frame": {"x":1225,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2103": { "frame": {"x":1243,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2104": { "frame": {"x":1261,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2105": { "frame": {"x":1279,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2106": { "frame": {"x":1297,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2107": { "frame": {"x":1315,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2108": { "frame": {"x":1333,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2109": { "frame": {"x":1351,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2110": { "frame": {"x":1369,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2111": { "frame": {"x":1387,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2112": { "frame": {"x":1405,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2113": { "frame": {"x":1423,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2114": { "frame": {"x":1441,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2115": { "frame": {"x":1459,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2116": { "frame": {"x":1477,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2117": { "frame": {"x":1495,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2118": { "frame": {"x":1513,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2119": { "frame": {"x":1531,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2120": { "frame": {"x":1549,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2121": { "frame": {"x":1567,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2122": { "frame": {"x":1585,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2123": { "frame": {"x":1603,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2124": { "frame": {"x":1621,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2125": { "frame": {"x":1639,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2126": { "frame": {"x":1657,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2127": { "frame": {"x":1675,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2128": { "frame": {"x":1693,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2129": { "frame": {"x":1711,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2130": { "frame": {"x":1729,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2131": { "frame": {"x":1747,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2132": { "frame": {"x":1765,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2133": { "frame": {"x":1783,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2134": { "frame": {"x":1801,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2135": { "frame": {"x":1819,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2136": { "frame": {"x":1837,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2137": { "frame": {"x":1855,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2138": { "frame": {"x":1873,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2139": { "frame": {"x":1891,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2140": { "frame": {"x":1909,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2141": { "frame": {"x":1927,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2142": { "frame": {"x":1945,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2143": { "frame": {"x":1963,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2144": { "frame": {"x":1981,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2145": { "frame": {"x":1999,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2146": { "frame": {"x":2017,"y":325,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2147": { "frame": {"x":1,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2148": { "frame": {"x":19,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2149": { "frame": {"x":37,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2150": { "frame": {"x":55,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2151": { "frame": {"x":73,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2152": { "frame": {"x":91,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2153": { "frame": {"x":109,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2154": { "frame": {"x":127,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2155": { "frame": {"x":145,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2156": { "frame": {"x":163,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2157": { "frame": {"x":181,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2158": { "frame": {"x":199,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2159": { "frame": {"x":217,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2160": { "frame": {"x":235,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2161": { "frame": {"x":253,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2162": { "frame": {"x":271,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2163": { "frame": {"x":289,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2164": { "frame": {"x":307,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2165": { "frame": {"x":325,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2166": { "frame": {"x":343,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2167": { "frame": {"x":361,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2168": { "frame": {"x":379,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2169": { "frame": {"x":397,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2170": { "frame": {"x":415,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2171": { "frame": {"x":433,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2172": { "frame": {"x":451,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2173": { "frame": {"x":469,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2174": { "frame": {"x":487,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2175": { "frame": {"x":505,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2176": { "frame": {"x":523,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2177": { "frame": {"x":541,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2178": { "frame": {"x":559,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2179": { "frame": {"x":577,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2180": { "frame": {"x":595,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2181": { "frame": {"x":613,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2182": { "frame": {"x":631,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2183": { "frame": {"x":649,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2184": { "frame": {"x":667,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2185": { "frame": {"x":685,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2186": { "frame": {"x":703,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2187": { "frame": {"x":721,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2188": { "frame": {"x":739,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2189": { "frame": {"x":757,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2190": { "frame": {"x":775,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2191": { "frame": {"x":793,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2192": { "frame": {"x":811,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2193": { "frame": {"x":829,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2194": { "frame": {"x":847,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2195": { "frame": {"x":865,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2196": { "frame": {"x":883,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2197": { "frame": {"x":901,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2198": { "frame": {"x":919,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2199": { "frame": {"x":937,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2200": { "frame": {"x":955,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2201": { "frame": {"x":973,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2202": { "frame": {"x":991,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2203": { "frame": {"x":1009,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2204": { "frame": {"x":1027,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2205": { "frame": {"x":1045,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2206": { "frame": {"x":1063,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2207": { "frame": {"x":1081,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2208": { "frame": {"x":1099,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2209": { "frame": {"x":1117,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2210": { "frame": {"x":1135,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2211": { "frame": {"x":1153,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2212": { "frame": {"x":1171,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2213": { "frame": {"x":1189,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2214": { "frame": {"x":1207,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2215": { "frame": {"x":1225,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2216": { "frame": {"x":1243,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2217": { "frame": {"x":1261,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2218": { "frame": {"x":1279,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2219": { "frame": {"x":1297,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2220": { "frame": {"x":1315,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2221": { "frame": {"x":1333,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2222": { "frame": {"x":1351,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2223": { "frame": {"x":1369,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2224": { "frame": {"x":1387,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2225": { "frame": {"x":1405,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2226": { "frame": {"x":1423,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2227": { "frame": {"x":1441,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2228": { "frame": {"x":1459,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2229": { "frame": {"x":1477,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2230": { "frame": {"x":1495,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2231": { "frame": {"x":1513,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2232": { "frame": {"x":1531,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2233": { "frame": {"x":1549,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2234": { "frame": {"x":1567,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2235": { "frame": {"x":1585,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2236": { "frame": {"x":1603,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2237": { "frame": {"x":1621,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2238": { "frame": {"x":1639,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2239": { "frame": {"x":1657,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2240": { "frame": {"x":1675,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2241": { "frame": {"x":1693,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2242": { "frame": {"x":1711,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2243": { "frame": {"x":1729,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2244": { "frame": {"x":1747,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2245": { "frame": {"x":1765,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2246": { "frame": {"x":1783,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2247": { "frame": {"x":1801,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2248": { "frame": {"x":1819,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2249": { "frame": {"x":1837,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2250": { "frame": {"x":1855,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2251": { "frame": {"x":1873,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2252": { "frame": {"x":1891,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2253": { "frame": {"x":1909,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2254": { "frame": {"x":1927,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2255": { "frame": {"x":1945,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2256": { "frame": {"x":1963,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2257": { "frame": {"x":1981,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2258": { "frame": {"x":1999,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2259": { "frame": {"x":2017,"y":343,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2260": { "frame": {"x":1,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2261": { "frame": {"x":19,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2262": { "frame": {"x":37,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2263": { "frame": {"x":55,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2264": { "frame": {"x":73,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2265": { "frame": {"x":91,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2266": { "frame": {"x":109,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2267": { "frame": {"x":127,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2268": { "frame": {"x":145,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2269": { "frame": {"x":163,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2270": { "frame": {"x":181,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2271": { "frame": {"x":199,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2272": { "frame": {"x":217,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2273": { "frame": {"x":235,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2274": { "frame": {"x":253,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2275": { "frame": {"x":271,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2276": { "frame": {"x":289,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2277": { "frame": {"x":307,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2278": { "frame": {"x":325,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2279": { "frame": {"x":343,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2280": { "frame": {"x":361,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2281": { "frame": {"x":379,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2282": { "frame": {"x":397,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2283": { "frame": {"x":415,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2284": { "frame": {"x":433,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2285": { "frame": {"x":451,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2286": { "frame": {"x":469,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2287": { "frame": {"x":487,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2288": { "frame": {"x":505,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2289": { "frame": {"x":523,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2290": { "frame": {"x":541,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2291": { "frame": {"x":559,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2292": { "frame": {"x":577,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2293": { "frame": {"x":595,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2294": { "frame": {"x":613,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2295": { "frame": {"x":631,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2296": { "frame": {"x":649,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2297": { "frame": {"x":667,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2298": { "frame": {"x":685,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2299": { "frame": {"x":703,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2300": { "frame": {"x":721,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2301": { "frame": {"x":739,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2302": { "frame": {"x":757,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2303": { "frame": {"x":775,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2304": { "frame": {"x":793,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2305": { "frame": {"x":811,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2306": { "frame": {"x":829,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2307": { "frame": {"x":847,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2308": { "frame": {"x":865,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2309": { "frame": {"x":883,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2310": { "frame": {"x":901,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2311": { "frame": {"x":919,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2312": { "frame": {"x":937,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2313": { "frame": {"x":955,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2314": { "frame": {"x":973,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2315": { "frame": {"x":991,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2316": { "frame": {"x":1009,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2317": { "frame": {"x":1027,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2318": { "frame": {"x":1045,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2319": { "frame": {"x":1063,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2320": { "frame": {"x":1081,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2321": { "frame": {"x":1099,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2322": { "frame": {"x":1117,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2323": { "frame": {"x":1135,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2324": { "frame": {"x":1153,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2325": { "frame": {"x":1171,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2326": { "frame": {"x":1189,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2327": { "frame": {"x":1207,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2328": { "frame": {"x":1225,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2329": { "frame": {"x":1243,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2330": { "frame": {"x":1261,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2331": { "frame": {"x":1279,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2332": { "frame": {"x":1297,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2333": { "frame": {"x":1315,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2334": { "frame": {"x":1333,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2335": { "frame": {"x":1351,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2336": { "frame": {"x":1369,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2337": { "frame": {"x":1387,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2338": { "frame": {"x":1405,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2339": { "frame": {"x":1423,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2340": { "frame": {"x":1441,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2341": { "frame": {"x":1459,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2342": { "frame": {"x":1477,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2343": { "frame": {"x":1495,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2344": { "frame": {"x":1513,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2345": { "frame": {"x":1531,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2346": { "frame": {"x":1549,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2347": { "frame": {"x":1567,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2348": { "frame": {"x":1585,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2349": { "frame": {"x":1603,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2350": { "frame": {"x":1621,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2351": { "frame": {"x":1639,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2352": { "frame": {"x":1657,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2353": { "frame": {"x":1675,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2354": { "frame": {"x":1693,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2355": { "frame": {"x":1711,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2356": { "frame": {"x":1729,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2357": { "frame": {"x":1747,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2358": { "frame": {"x":1765,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2359": { "frame": {"x":1783,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2360": { "frame": {"x":1801,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2361": { "frame": {"x":1819,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2362": { "frame": {"x":1837,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2363": { "frame": {"x":1855,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2364": { "frame": {"x":1873,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2365": { "frame": {"x":1891,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2366": { "frame": {"x":1909,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2367": { "frame": {"x":1927,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2368": { "frame": {"x":1945,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2369": { "frame": {"x":1963,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2370": { "frame": {"x":1981,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2371": { "frame": {"x":1999,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2372": { "frame": {"x":2017,"y":361,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2373": { "frame": {"x":1,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2374": { "frame": {"x":19,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2375": { "frame": {"x":37,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2376": { "frame": {"x":55,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2377": { "frame": {"x":73,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2378": { "frame": {"x":91,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2379": { "frame": {"x":109,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2380": { "frame": {"x":127,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2381": { "frame": {"x":145,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2382": { "frame": {"x":163,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2383": { "frame": {"x":181,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2384": { "frame": {"x":199,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2385": { "frame": {"x":217,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2386": { "frame": {"x":235,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2387": { "frame": {"x":253,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2388": { "frame": {"x":271,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2389": { "frame": {"x":289,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2390": { "frame": {"x":307,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2391": { "frame": {"x":325,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2392": { "frame": {"x":343,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2393": { "frame": {"x":361,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2394": { "frame": {"x":379,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2395": { "frame": {"x":397,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2396": { "frame": {"x":415,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2397": { "frame": {"x":433,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2398": { "frame": {"x":451,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2399": { "frame": {"x":469,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2400": { "frame": {"x":487,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2401": { "frame": {"x":505,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2402": { "frame": {"x":523,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2403": { "frame": {"x":541,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2404": { "frame": {"x":559,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2405": { "frame": {"x":577,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2406": { "frame": {"x":595,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2407": { "frame": {"x":613,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2408": { "frame": {"x":631,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2409": { "frame": {"x":649,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2410": { "frame": {"x":667,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2411": { "frame": {"x":685,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2412": { "frame": {"x":703,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2413": { "frame": {"x":721,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2414": { "frame": {"x":739,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2415": { "frame": {"x":757,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2416": { "frame": {"x":775,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2417": { "frame": {"x":793,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2418": { "frame": {"x":811,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2419": { "frame": {"x":829,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2420": { "frame": {"x":847,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2421": { "frame": {"x":865,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2422": { "frame": {"x":883,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2423": { "frame": {"x":901,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2424": { "frame": {"x":919,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2425": { "frame": {"x":937,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2426": { "frame": {"x":955,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2427": { "frame": {"x":973,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2428": { "frame": {"x":991,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2429": { "frame": {"x":1009,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2430": { "frame": {"x":1027,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2431": { "frame": {"x":1045,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2432": { "frame": {"x":1063,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2433": { "frame": {"x":1081,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2434": { "frame": {"x":1099,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2435": { "frame": {"x":1117,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2436": { "frame": {"x":1135,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2437": { "frame": {"x":1153,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2438": { "frame": {"x":1171,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2439": { "frame": {"x":1189,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2440": { "frame": {"x":1207,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2441": { "frame": {"x":1225,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2442": { "frame": {"x":1243,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2443": { "frame": {"x":1261,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2444": { "frame": {"x":1279,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2445": { "frame": {"x":1297,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2446": { "frame": {"x":1315,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2447": { "frame": {"x":1333,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2448": { "frame": {"x":1351,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2449": { "frame": {"x":1369,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2450": { "frame": {"x":1387,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2451": { "frame": {"x":1405,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2452": { "frame": {"x":1423,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2453": { "frame": {"x":1441,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2454": { "frame": {"x":1459,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2455": { "frame": {"x":1477,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2456": { "frame": {"x":1495,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2457": { "frame": {"x":1513,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2458": { "frame": {"x":1531,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2459": { "frame": {"x":1549,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2460": { "frame": {"x":1567,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2461": { "frame": {"x":1585,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2462": { "frame": {"x":1603,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2463": { "frame": {"x":1621,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2464": { "frame": {"x":1639,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2465": { "frame": {"x":1657,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2466": { "frame": {"x":1675,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2467": { "frame": {"x":1693,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2468": { "frame": {"x":1711,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2469": { "frame": {"x":1729,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2470": { "frame": {"x":1747,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2471": { "frame": {"x":1765,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2472": { "frame": {"x":1783,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2473": { "frame": {"x":1801,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2474": { "frame": {"x":1819,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2475": { "frame": {"x":1837,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2476": { "frame": {"x":1855,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2477": { "frame": {"x":1873,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2478": { "frame": {"x":1891,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2479": { "frame": {"x":1909,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2480": { "frame": {"x":1927,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2481": { "frame": {"x":1945,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2482": { "frame": {"x":1963,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2483": { "frame": {"x":1981,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2484": { "frame": {"x":1999,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2485": { "frame": {"x":2017,"y":379,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2486": { "frame": {"x":1,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2487": { "frame": {"x":19,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2488": { "frame": {"x":37,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2489": { "frame": {"x":55,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2490": { "frame": {"x":73,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2491": { "frame": {"x":91,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2492": { "frame": {"x":109,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2493": { "frame": {"x":127,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2494": { "frame": {"x":145,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2495": { "frame": {"x":163,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2496": { "frame": {"x":181,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2497": { "frame": {"x":199,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2498": { "frame": {"x":217,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2499": { "frame": {"x":235,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2500": { "frame": {"x":253,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2501": { "frame": {"x":271,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2502": { "frame": {"x":289,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2503": { "frame": {"x":307,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2504": { "frame": {"x":325,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2505": { "frame": {"x":343,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2506": { "frame": {"x":361,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2507": { "frame": {"x":379,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2508": { "frame": {"x":397,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2509": { "frame": {"x":415,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2510": { "frame": {"x":433,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2511": { "frame": {"x":451,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2512": { "frame": {"x":469,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2513": { "frame": {"x":487,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2514": { "frame": {"x":505,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2515": { "frame": {"x":523,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2516": { "frame": {"x":541,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2517": { "frame": {"x":559,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2518": { "frame": {"x":577,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2519": { "frame": {"x":595,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2520": { "frame": {"x":613,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2521": { "frame": {"x":631,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2522": { "frame": {"x":649,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2523": { "frame": {"x":667,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2524": { "frame": {"x":685,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2525": { "frame": {"x":703,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2526": { "frame": {"x":721,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2527": { "frame": {"x":739,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2528": { "frame": {"x":757,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2529": { "frame": {"x":775,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2530": { "frame": {"x":793,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2531": { "frame": {"x":811,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2532": { "frame": {"x":829,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2533": { "frame": {"x":847,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2534": { "frame": {"x":865,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2535": { "frame": {"x":883,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2536": { "frame": {"x":901,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2537": { "frame": {"x":919,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2538": { "frame": {"x":937,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2539": { "frame": {"x":955,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2540": { "frame": {"x":973,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2541": { "frame": {"x":991,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2542": { "frame": {"x":1009,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2543": { "frame": {"x":1027,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2544": { "frame": {"x":1045,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2545": { "frame": {"x":1063,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2546": { "frame": {"x":1081,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2547": { "frame": {"x":1099,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2548": { "frame": {"x":1117,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2549": { "frame": {"x":1135,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2550": { "frame": {"x":1153,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2551": { "frame": {"x":1171,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2552": { "frame": {"x":1189,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2553": { "frame": {"x":1207,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2554": { "frame": {"x":1225,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2555": { "frame": {"x":1243,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2556": { "frame": {"x":1261,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2557": { "frame": {"x":1279,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2558": { "frame": {"x":1297,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2559": { "frame": {"x":1315,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2560": { "frame": {"x":1333,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2561": { "frame": {"x":1351,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2562": { "frame": {"x":1369,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2563": { "frame": {"x":1387,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2564": { "frame": {"x":1405,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2565": { "frame": {"x":1423,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2566": { "frame": {"x":1441,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2567": { "frame": {"x":1459,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2568": { "frame": {"x":1477,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2569": { "frame": {"x":1495,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2570": { "frame": {"x":1513,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2571": { "frame": {"x":1531,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2572": { "frame": {"x":1549,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2573": { "frame": {"x":1567,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2574": { "frame": {"x":1585,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2575": { "frame": {"x":1603,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2576": { "frame": {"x":1621,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2577": { "frame": {"x":1639,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2578": { "frame": {"x":1657,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2579": { "frame": {"x":1675,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2580": { "frame": {"x":1693,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2581": { "frame": {"x":1711,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2582": { "frame": {"x":1729,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2583": { "frame": {"x":1747,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2584": { "frame": {"x":1765,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2585": { "frame": {"x":1783,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2586": { "frame": {"x":1801,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2587": { "frame": {"x":1819,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2588": { "frame": {"x":1837,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2589": { "frame": {"x":1855,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2590": { "frame": {"x":1873,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2591": { "frame": {"x":1891,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2592": { "frame": {"x":1909,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2593": { "frame": {"x":1927,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2594": { "frame": {"x":1945,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2595": { "frame": {"x":1963,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2596": { "frame": {"x":1981,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2597": { "frame": {"x":1999,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2598": { "frame": {"x":2017,"y":397,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2599": { "frame": {"x":1,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2600": { "frame": {"x":19,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2601": { "frame": {"x":37,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2602": { "frame": {"x":55,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2603": { "frame": {"x":73,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2604": { "frame": {"x":91,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2605": { "frame": {"x":109,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2606": { "frame": {"x":127,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2607": { "frame": {"x":145,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2608": { "frame": {"x":163,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2609": { "frame": {"x":181,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2610": { "frame": {"x":199,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2611": { "frame": {"x":217,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2612": { "frame": {"x":235,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2613": { "frame": {"x":253,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2614": { "frame": {"x":271,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2615": { "frame": {"x":289,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2616": { "frame": {"x":307,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2617": { "frame": {"x":325,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2618": { "frame": {"x":343,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2619": { "frame": {"x":361,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2620": { "frame": {"x":379,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2621": { "frame": {"x":397,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2622": { "frame": {"x":415,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2623": { "frame": {"x":433,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2624": { "frame": {"x":451,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2625": { "frame": {"x":469,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2626": { "frame": {"x":487,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2627": { "frame": {"x":505,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2628": { "frame": {"x":523,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2629": { "frame": {"x":541,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2630": { "frame": {"x":559,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2631": { "frame": {"x":577,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2632": { "frame": {"x":595,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2633": { "frame": {"x":613,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2634": { "frame": {"x":631,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2635": { "frame": {"x":649,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2636": { "frame": {"x":667,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2637": { "frame": {"x":685,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2638": { "frame": {"x":703,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2639": { "frame": {"x":721,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2640": { "frame": {"x":739,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2641": { "frame": {"x":757,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2642": { "frame": {"x":775,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2643": { "frame": {"x":793,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2644": { "frame": {"x":811,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2645": { "frame": {"x":829,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2646": { "frame": {"x":847,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2647": { "frame": {"x":865,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2648": { "frame": {"x":883,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2649": { "frame": {"x":901,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2650": { "frame": {"x":919,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2651": { "frame": {"x":937,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2652": { "frame": {"x":955,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2653": { "frame": {"x":973,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2654": { "frame": {"x":991,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2655": { "frame": {"x":1009,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2656": { "frame": {"x":1027,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2657": { "frame": {"x":1045,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2658": { "frame": {"x":1063,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2659": { "frame": {"x":1081,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2660": { "frame": {"x":1099,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2661": { "frame": {"x":1117,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2662": { "frame": {"x":1135,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2663": { "frame": {"x":1153,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2664": { "frame": {"x":1171,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2665": { "frame": {"x":1189,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2666": { "frame": {"x":1207,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2667": { "frame": {"x":1225,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2668": { "frame": {"x":1243,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2669": { "frame": {"x":1261,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2670": { "frame": {"x":1279,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2671": { "frame": {"x":1297,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2672": { "frame": {"x":1315,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2673": { "frame": {"x":1333,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2674": { "frame": {"x":1351,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2675": { "frame": {"x":1369,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2676": { "frame": {"x":1387,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2677": { "frame": {"x":1405,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2678": { "frame": {"x":1423,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2679": { "frame": {"x":1441,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2680": { "frame": {"x":1459,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2681": { "frame": {"x":1477,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2682": { "frame": {"x":1495,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2683": { "frame": {"x":1513,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2684": { "frame": {"x":1531,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2685": { "frame": {"x":1549,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2686": { "frame": {"x":1567,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2687": { "frame": {"x":1585,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2688": { "frame": {"x":1603,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2689": { "frame": {"x":1621,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2690": { "frame": {"x":1639,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2691": { "frame": {"x":1657,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2692": { "frame": {"x":1675,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2693": { "frame": {"x":1693,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2694": { "frame": {"x":1711,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2695": { "frame": {"x":1729,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2696": { "frame": {"x":1747,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2697": { "frame": {"x":1765,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2698": { "frame": {"x":1783,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2699": { "frame": {"x":1801,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2700": { "frame": {"x":1819,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2701": { "frame": {"x":1837,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2702": { "frame": {"x":1855,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2703": { "frame": {"x":1873,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2704": { "frame": {"x":1891,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2705": { "frame": {"x":1909,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2706": { "frame": {"x":1927,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2707": { "frame": {"x":1945,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2708": { "frame": {"x":1963,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2709": { "frame": {"x":1981,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2710": { "frame": {"x":1999,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2711": { "frame": {"x":2017,"y":415,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2712": { "frame": {"x":1,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2713": { "frame": {"x":19,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2714": { "frame": {"x":37,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2715": { "frame": {"x":55,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2716": { "frame": {"x":73,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2717": { "frame": {"x":91,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2718": { "frame": {"x":109,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2719": { "frame": {"x":127,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2720": { "frame": {"x":145,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2721": { "frame": {"x":163,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2722": { "frame": {"x":181,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2723": { "frame": {"x":199,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2724": { "frame": {"x":217,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2725": { "frame": {"x":235,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2726": { "frame": {"x":253,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2727": { "frame": {"x":271,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2728": { "frame": {"x":289,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2729": { "frame": {"x":307,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2730": { "frame": {"x":325,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2731": { "frame": {"x":343,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2732": { "frame": {"x":361,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2733": { "frame": {"x":379,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2734": { "frame": {"x":397,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2735": { "frame": {"x":415,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2736": { "frame": {"x":433,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2737": { "frame": {"x":451,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2738": { "frame": {"x":469,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2739": { "frame": {"x":487,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2740": { "frame": {"x":505,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2741": { "frame": {"x":523,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2742": { "frame": {"x":541,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2743": { "frame": {"x":559,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2744": { "frame": {"x":577,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2745": { "frame": {"x":595,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2746": { "frame": {"x":613,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2747": { "frame": {"x":631,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2748": { "frame": {"x":649,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2749": { "frame": {"x":667,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2750": { "frame": {"x":685,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2751": { "frame": {"x":703,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2752": { "frame": {"x":721,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2753": { "frame": {"x":739,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2754": { "frame": {"x":757,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2755": { "frame": {"x":775,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2756": { "frame": {"x":793,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2757": { "frame": {"x":811,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2758": { "frame": {"x":829,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2759": { "frame": {"x":847,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2760": { "frame": {"x":865,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2761": { "frame": {"x":883,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2762": { "frame": {"x":901,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2763": { "frame": {"x":919,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2764": { "frame": {"x":937,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2765": { "frame": {"x":955,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2766": { "frame": {"x":973,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2767": { "frame": {"x":991,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2768": { "frame": {"x":1009,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2769": { "frame": {"x":1027,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2770": { "frame": {"x":1045,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2771": { "frame": {"x":1063,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2772": { "frame": {"x":1081,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2773": { "frame": {"x":1099,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2774": { "frame": {"x":1117,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2775": { "frame": {"x":1135,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2776": { "frame": {"x":1153,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2777": { "frame": {"x":1171,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2778": { "frame": {"x":1189,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2779": { "frame": {"x":1207,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2780": { "frame": {"x":1225,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2781": { "frame": {"x":1243,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2782": { "frame": {"x":1261,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2783": { "frame": {"x":1279,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2784": { "frame": {"x":1297,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2785": { "frame": {"x":1315,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2786": { "frame": {"x":1333,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2787": { "frame": {"x":1351,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2788": { "frame": {"x":1369,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2789": { "frame": {"x":1387,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2790": { "frame": {"x":1405,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2791": { "frame": {"x":1423,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2792": { "frame": {"x":1441,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2793": { "frame": {"x":1459,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2794": { "frame": {"x":1477,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2795": { "frame": {"x":1495,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2796": { "frame": {"x":1513,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2797": { "frame": {"x":1531,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2798": { "frame": {"x":1549,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2799": { "frame": {"x":1567,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2800": { "frame": {"x":1585,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2801": { "frame": {"x":1603,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2802": { "frame": {"x":1621,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2803": { "frame": {"x":1639,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2804": { "frame": {"x":1657,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2805": { "frame": {"x":1675,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2806": { "frame": {"x":1693,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2807": { "frame": {"x":1711,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2808": { "frame": {"x":1729,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2809": { "frame": {"x":1747,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2810": { "frame": {"x":1765,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2811": { "frame": {"x":1783,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2812": { "frame": {"x":1801,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2813": { "frame": {"x":1819,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2814": { "frame": {"x":1837,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2815": { "frame": {"x":1855,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2816": { "frame": {"x":1873,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2817": { "frame": {"x":1891,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2818": { "frame": {"x":1909,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2819": { "frame": {"x":1927,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2820": { "frame": {"x":1945,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2821": { "frame": {"x":1963,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2822": { "frame": {"x":1981,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2823": { "frame": {"x":1999,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2824": { "frame": {"x":2017,"y":433,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2825": { "frame": {"x":1,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2826": { "frame": {"x":19,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2827": { "frame": {"x":37,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2828": { "frame": {"x":55,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2829": { "frame": {"x":73,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2830": { "frame": {"x":91,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2831": { "frame": {"x":109,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2832": { "frame": {"x":127,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2833": { "frame": {"x":145,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2834": { "frame": {"x":163,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2835": { "frame": {"x":181,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2836": { "frame": {"x":199,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2837": { "frame": {"x":217,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2838": { "frame": {"x":235,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2839": { "frame": {"x":253,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2840": { "frame": {"x":271,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2841": { "frame": {"x":289,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2842": { "frame": {"x":307,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2843": { "frame": {"x":325,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2844": { "frame": {"x":343,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2845": { "frame": {"x":361,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2846": { "frame": {"x":379,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2847": { "frame": {"x":397,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2848": { "frame": {"x":415,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2849": { "frame": {"x":433,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2850": { "frame": {"x":451,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2851": { "frame": {"x":469,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2852": { "frame": {"x":487,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2853": { "frame": {"x":505,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2854": { "frame": {"x":523,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2855": { "frame": {"x":541,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2856": { "frame": {"x":559,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2857": { "frame": {"x":577,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2858": { "frame": {"x":595,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2859": { "frame": {"x":613,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2860": { "frame": {"x":631,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2861": { "frame": {"x":649,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2862": { "frame": {"x":667,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2863": { "frame": {"x":685,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2864": { "frame": {"x":703,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2865": { "frame": {"x":721,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2866": { "frame": {"x":739,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2867": { "frame": {"x":757,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2868": { "frame": {"x":775,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2869": { "frame": {"x":793,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2870": { "frame": {"x":811,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2871": { "frame": {"x":829,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2872": { "frame": {"x":847,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2873": { "frame": {"x":865,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2874": { "frame": {"x":883,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2875": { "frame": {"x":901,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2876": { "frame": {"x":919,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2877": { "frame": {"x":937,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2878": { "frame": {"x":955,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2879": { "frame": {"x":973,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2880": { "frame": {"x":991,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2881": { "frame": {"x":1009,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2882": { "frame": {"x":1027,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2883": { "frame": {"x":1045,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2884": { "frame": {"x":1063,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2885": { "frame": {"x":1081,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2886": { "frame": {"x":1099,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2887": { "frame": {"x":1117,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2888": { "frame": {"x":1135,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2889": { "frame": {"x":1153,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2890": { "frame": {"x":1171,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2891": { "frame": {"x":1189,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2892": { "frame": {"x":1207,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2893": { "frame": {"x":1225,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2894": { "frame": {"x":1243,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2895": { "frame": {"x":1261,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2896": { "frame": {"x":1279,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2897": { "frame": {"x":1297,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2898": { "frame": {"x":1315,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2899": { "frame": {"x":1333,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2900": { "frame": {"x":1351,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2901": { "frame": {"x":1369,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2902": { "frame": {"x":1387,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2903": { "frame": {"x":1405,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2904": { "frame": {"x":1423,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2905": { "frame": {"x":1441,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2906": { "frame": {"x":1459,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2907": { "frame": {"x":1477,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2908": { "frame": {"x":1495,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2909": { "frame": {"x":1513,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2910": { "frame": {"x":1531,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2911": { "frame": {"x":1549,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2912": { "frame": {"x":1567,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2913": { "frame": {"x":1585,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2914": { "frame": {"x":1603,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2915": { "frame": {"x":1621,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2916": { "frame": {"x":1639,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2917": { "frame": {"x":1657,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2918": { "frame": {"x":1675,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2919": { "frame": {"x":1693,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2920": { "frame": {"x":1711,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2921": { "frame": {"x":1729,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2922": { "frame": {"x":1747,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2923": { "frame": {"x":1765,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2924": { "frame": {"x":1783,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2925": { "frame": {"x":1801,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2926": { "frame": {"x":1819,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2927": { "frame": {"x":1837,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2928": { "frame": {"x":1855,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2929": { "frame": {"x":1873,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2930": { "frame": {"x":1891,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2931": { "frame": {"x":1909,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2932": { "frame": {"x":1927,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2933": { "frame": {"x":1945,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2934": { "frame": {"x":1963,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2935": { "frame": {"x":1981,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2936": { "frame": {"x":1999,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2937": { "frame": {"x":2017,"y":451,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2938": { "frame": {"x":1,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2939": { "frame": {"x":19,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2940": { "frame": {"x":37,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2941": { "frame": {"x":55,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2942": { "frame": {"x":73,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2943": { "frame": {"x":91,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2944": { "frame": {"x":109,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2945": { "frame": {"x":127,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2946": { "frame": {"x":145,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2947": { "frame": {"x":163,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2948": { "frame": {"x":181,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2949": { "frame": {"x":199,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2950": { "frame": {"x":217,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2951": { "frame": {"x":235,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2952": { "frame": {"x":253,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2953": { "frame": {"x":271,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2954": { "frame": {"x":289,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2955": { "frame": {"x":307,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2956": { "frame": {"x":325,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2957": { "frame": {"x":343,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2958": { "frame": {"x":361,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2959": { "frame": {"x":379,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2960": { "frame": {"x":397,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2961": { "frame": {"x":415,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2962": { "frame": {"x":433,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2963": { "frame": {"x":451,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2964": { "frame": {"x":469,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2965": { "frame": {"x":487,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2966": { "frame": {"x":505,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2967": { "frame": {"x":523,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2968": { "frame": {"x":541,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2969": { "frame": {"x":559,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2970": { "frame": {"x":577,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2971": { "frame": {"x":595,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2972": { "frame": {"x":613,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2973": { "frame": {"x":631,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2974": { "frame": {"x":649,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2975": { "frame": {"x":667,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2976": { "frame": {"x":685,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2977": { "frame": {"x":703,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2978": { "frame": {"x":721,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2979": { "frame": {"x":739,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2980": { "frame": {"x":757,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2981": { "frame": {"x":775,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2982": { "frame": {"x":793,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2983": { "frame": {"x":811,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2984": { "frame": {"x":829,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2985": { "frame": {"x":847,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2986": { "frame": {"x":865,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2987": { "frame": {"x":883,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2988": { "frame": {"x":901,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2989": { "frame": {"x":919,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2990": { "frame": {"x":937,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2991": { "frame": {"x":955,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2992": { "frame": {"x":973,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2993": { "frame": {"x":991,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2994": { "frame": {"x":1009,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2995": { "frame": {"x":1027,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2996": { "frame": {"x":1045,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2997": { "frame": {"x":1063,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2998": { "frame": {"x":1081,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "2999": { "frame": {"x":1099,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3000": { "frame": {"x":1117,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3001": { "frame": {"x":1135,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3002": { "frame": {"x":1153,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3003": { "frame": {"x":1171,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3004": { "frame": {"x":1189,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3005": { "frame": {"x":1207,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3006": { "frame": {"x":1225,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3007": { "frame": {"x":1243,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3008": { "frame": {"x":1261,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3009": { "frame": {"x":1279,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3010": { "frame": {"x":1297,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3011": { "frame": {"x":1315,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3012": { "frame": {"x":1333,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3013": { "frame": {"x":1351,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3014": { "frame": {"x":1369,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3015": { "frame": {"x":1387,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3016": { "frame": {"x":1405,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3017": { "frame": {"x":1423,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3018": { "frame": {"x":1441,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3019": { "frame": {"x":1459,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3020": { "frame": {"x":1477,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3021": { "frame": {"x":1495,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3022": { "frame": {"x":1513,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3023": { "frame": {"x":1531,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3024": { "frame": {"x":1549,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3025": { "frame": {"x":1567,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3026": { "frame": {"x":1585,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3027": { "frame": {"x":1603,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3028": { "frame": {"x":1621,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3029": { "frame": {"x":1639,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3030": { "frame": {"x":1657,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3031": { "frame": {"x":1675,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3032": { "frame": {"x":1693,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3033": { "frame": {"x":1711,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3034": { "frame": {"x":1729,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3035": { "frame": {"x":1747,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3036": { "frame": {"x":1765,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3037": { "frame": {"x":1783,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3038": { "frame": {"x":1801,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3039": { "frame": {"x":1819,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3040": { "frame": {"x":1837,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3041": { "frame": {"x":1855,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3042": { "frame": {"x":1873,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3043": { "frame": {"x":1891,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3044": { "frame": {"x":1909,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3045": { "frame": {"x":1927,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3046": { "frame": {"x":1945,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3047": { "frame": {"x":1963,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3048": { "frame": {"x":1981,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3049": { "frame": {"x":1999,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3050": { "frame": {"x":2017,"y":469,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3051": { "frame": {"x":1,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3052": { "frame": {"x":19,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3053": { "frame": {"x":37,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3054": { "frame": {"x":55,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3055": { "frame": {"x":73,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3056": { "frame": {"x":91,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3057": { "frame": {"x":109,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3058": { "frame": {"x":127,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3059": { "frame": {"x":145,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3060": { "frame": {"x":163,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3061": { "frame": {"x":181,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3062": { "frame": {"x":199,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3063": { "frame": {"x":217,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3064": { "frame": {"x":235,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3065": { "frame": {"x":253,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3066": { "frame": {"x":271,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3067": { "frame": {"x":289,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3068": { "frame": {"x":307,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3069": { "frame": {"x":325,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3070": { "frame": {"x":343,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3071": { "frame": {"x":361,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3072": { "frame": {"x":379,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3073": { "frame": {"x":397,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3074": { "frame": {"x":415,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3075": { "frame": {"x":433,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3076": { "frame": {"x":451,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3077": { "frame": {"x":469,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3078": { "frame": {"x":487,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3079": { "frame": {"x":505,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3080": { "frame": {"x":523,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3081": { "frame": {"x":541,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3082": { "frame": {"x":559,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3083": { "frame": {"x":577,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3084": { "frame": {"x":595,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3085": { "frame": {"x":613,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3086": { "frame": {"x":631,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3087": { "frame": {"x":649,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3088": { "frame": {"x":667,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3089": { "frame": {"x":685,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3090": { "frame": {"x":703,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3091": { "frame": {"x":721,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3092": { "frame": {"x":739,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3093": { "frame": {"x":757,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3094": { "frame": {"x":775,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3095": { "frame": {"x":793,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3096": { "frame": {"x":811,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3097": { "frame": {"x":829,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3098": { "frame": {"x":847,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3099": { "frame": {"x":865,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3100": { "frame": {"x":883,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3101": { "frame": {"x":901,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3102": { "frame": {"x":919,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3103": { "frame": {"x":937,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3104": { "frame": {"x":955,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3105": { "frame": {"x":973,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3106": { "frame": {"x":991,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3107": { "frame": {"x":1009,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3108": { "frame": {"x":1027,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3109": { "frame": {"x":1045,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3110": { "frame": {"x":1063,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3111": { "frame": {"x":1081,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3112": { "frame": {"x":1099,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3113": { "frame": {"x":1117,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3114": { "frame": {"x":1135,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3115": { "frame": {"x":1153,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3116": { "frame": {"x":1171,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3117": { "frame": {"x":1189,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3118": { "frame": {"x":1207,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3119": { "frame": {"x":1225,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3120": { "frame": {"x":1243,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3121": { "frame": {"x":1261,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3122": { "frame": {"x":1279,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3123": { "frame": {"x":1297,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3124": { "frame": {"x":1315,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3125": { "frame": {"x":1333,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3126": { "frame": {"x":1351,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3127": { "frame": {"x":1369,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3128": { "frame": {"x":1387,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3129": { "frame": {"x":1405,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3130": { "frame": {"x":1423,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3131": { "frame": {"x":1441,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3132": { "frame": {"x":1459,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3133": { "frame": {"x":1477,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3134": { "frame": {"x":1495,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3135": { "frame": {"x":1513,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3136": { "frame": {"x":1531,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3137": { "frame": {"x":1549,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3138": { "frame": {"x":1567,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3139": { "frame": {"x":1585,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3140": { "frame": {"x":1603,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3141": { "frame": {"x":1621,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3142": { "frame": {"x":1639,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3143": { "frame": {"x":1657,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3144": { "frame": {"x":1675,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3145": { "frame": {"x":1693,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3146": { "frame": {"x":1711,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3147": { "frame": {"x":1729,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3148": { "frame": {"x":1747,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3149": { "frame": {"x":1765,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3150": { "frame": {"x":1783,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3151": { "frame": {"x":1801,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3152": { "frame": {"x":1819,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3153": { "frame": {"x":1837,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3154": { "frame": {"x":1855,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3155": { "frame": {"x":1873,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3156": { "frame": {"x":1891,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3157": { "frame": {"x":1909,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3158": { "frame": {"x":1927,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3159": { "frame": {"x":1945,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3160": { "frame": {"x":1963,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3161": { "frame": {"x":1981,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3162": { "frame": {"x":1999,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3163": { "frame": {"x":2017,"y":487,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3164": { "frame": {"x":1,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3165": { "frame": {"x":19,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3166": { "frame": {"x":37,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3167": { "frame": {"x":55,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3168": { "frame": {"x":73,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3169": { "frame": {"x":91,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3170": { "frame": {"x":109,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3171": { "frame": {"x":127,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3172": { "frame": {"x":145,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3173": { "frame": {"x":163,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3174": { "frame": {"x":181,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3175": { "frame": {"x":199,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3176": { "frame": {"x":217,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3177": { "frame": {"x":235,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3178": { "frame": {"x":253,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3179": { "frame": {"x":271,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3180": { "frame": {"x":289,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3181": { "frame": {"x":307,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3182": { "frame": {"x":325,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3183": { "frame": {"x":343,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3184": { "frame": {"x":361,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3185": { "frame": {"x":379,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3186": { "frame": {"x":397,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3187": { "frame": {"x":415,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3188": { "frame": {"x":433,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3189": { "frame": {"x":451,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3190": { "frame": {"x":469,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3191": { "frame": {"x":487,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3192": { "frame": {"x":505,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3193": { "frame": {"x":523,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3194": { "frame": {"x":541,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3195": { "frame": {"x":559,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3196": { "frame": {"x":577,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3197": { "frame": {"x":595,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3198": { "frame": {"x":613,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3199": { "frame": {"x":631,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3200": { "frame": {"x":649,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3201": { "frame": {"x":667,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3202": { "frame": {"x":685,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3203": { "frame": {"x":703,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3204": { "frame": {"x":721,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3205": { "frame": {"x":739,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3206": { "frame": {"x":757,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3207": { "frame": {"x":775,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3208": { "frame": {"x":793,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3209": { "frame": {"x":811,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3210": { "frame": {"x":829,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3211": { "frame": {"x":847,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3212": { "frame": {"x":865,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3213": { "frame": {"x":883,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3214": { "frame": {"x":901,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3215": { "frame": {"x":919,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3216": { "frame": {"x":937,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3217": { "frame": {"x":955,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3218": { "frame": {"x":973,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3219": { "frame": {"x":991,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3220": { "frame": {"x":1009,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3221": { "frame": {"x":1027,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3222": { "frame": {"x":1045,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3223": { "frame": {"x":1063,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3224": { "frame": {"x":1081,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3225": { "frame": {"x":1099,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3226": { "frame": {"x":1117,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3227": { "frame": {"x":1135,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3228": { "frame": {"x":1153,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3229": { "frame": {"x":1171,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3230": { "frame": {"x":1189,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3231": { "frame": {"x":1207,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3232": { "frame": {"x":1225,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3233": { "frame": {"x":1243,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3234": { "frame": {"x":1261,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3235": { "frame": {"x":1279,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3236": { "frame": {"x":1297,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3237": { "frame": {"x":1315,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3238": { "frame": {"x":1333,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3239": { "frame": {"x":1351,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3240": { "frame": {"x":1369,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3241": { "frame": {"x":1387,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3242": { "frame": {"x":1405,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3243": { "frame": {"x":1423,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3244": { "frame": {"x":1441,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3245": { "frame": {"x":1459,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3246": { "frame": {"x":1477,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3247": { "frame": {"x":1495,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3248": { "frame": {"x":1513,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3249": { "frame": {"x":1531,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3250": { "frame": {"x":1549,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3251": { "frame": {"x":1567,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3252": { "frame": {"x":1585,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3253": { "frame": {"x":1603,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3254": { "frame": {"x":1621,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3255": { "frame": {"x":1639,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3256": { "frame": {"x":1657,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3257": { "frame": {"x":1675,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3258": { "frame": {"x":1693,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3259": { "frame": {"x":1711,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3260": { "frame": {"x":1729,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3261": { "frame": {"x":1747,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3262": { "frame": {"x":1765,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3263": { "frame": {"x":1783,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3264": { "frame": {"x":1801,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3265": { "frame": {"x":1819,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3266": { "frame": {"x":1837,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3267": { "frame": {"x":1855,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3268": { "frame": {"x":1873,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3269": { "frame": {"x":1891,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3270": { "frame": {"x":1909,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3271": { "frame": {"x":1927,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3272": { "frame": {"x":1945,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3273": { "frame": {"x":1963,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3274": { "frame": {"x":1981,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3275": { "frame": {"x":1999,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3276": { "frame": {"x":2017,"y":505,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3277": { "frame": {"x":1,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3278": { "frame": {"x":19,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3279": { "frame": {"x":37,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3280": { "frame": {"x":55,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3281": { "frame": {"x":73,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3282": { "frame": {"x":91,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3283": { "frame": {"x":109,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3284": { "frame": {"x":127,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3285": { "frame": {"x":145,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3286": { "frame": {"x":163,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3287": { "frame": {"x":181,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3288": { "frame": {"x":199,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3289": { "frame": {"x":217,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3290": { "frame": {"x":235,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3291": { "frame": {"x":253,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3292": { "frame": {"x":271,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3293": { "frame": {"x":289,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3294": { "frame": {"x":307,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3295": { "frame": {"x":325,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3296": { "frame": {"x":343,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3297": { "frame": {"x":361,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3298": { "frame": {"x":379,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3299": { "frame": {"x":397,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3300": { "frame": {"x":415,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3301": { "frame": {"x":433,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3302": { "frame": {"x":451,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3303": { "frame": {"x":469,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3304": { "frame": {"x":487,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3305": { "frame": {"x":505,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3306": { "frame": {"x":523,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3307": { "frame": {"x":541,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3308": { "frame": {"x":559,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3309": { "frame": {"x":577,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3310": { "frame": {"x":595,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3311": { "frame": {"x":613,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3312": { "frame": {"x":631,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3313": { "frame": {"x":649,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3314": { "frame": {"x":667,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3315": { "frame": {"x":685,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3316": { "frame": {"x":703,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3317": { "frame": {"x":721,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3318": { "frame": {"x":739,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3319": { "frame": {"x":757,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3320": { "frame": {"x":775,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3321": { "frame": {"x":793,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3322": { "frame": {"x":811,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3323": { "frame": {"x":829,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3324": { "frame": {"x":847,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3325": { "frame": {"x":865,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3326": { "frame": {"x":883,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3327": { "frame": {"x":901,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3328": { "frame": {"x":919,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3329": { "frame": {"x":937,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3330": { "frame": {"x":955,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3331": { "frame": {"x":973,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3332": { "frame": {"x":991,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3333": { "frame": {"x":1009,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3334": { "frame": {"x":1027,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3335": { "frame": {"x":1045,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3336": { "frame": {"x":1063,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3337": { "frame": {"x":1081,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3338": { "frame": {"x":1099,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3339": { "frame": {"x":1117,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3340": { "frame": {"x":1135,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3341": { "frame": {"x":1153,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3342": { "frame": {"x":1171,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3343": { "frame": {"x":1189,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3344": { "frame": {"x":1207,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3345": { "frame": {"x":1225,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3346": { "frame": {"x":1243,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3347": { "frame": {"x":1261,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3348": { "frame": {"x":1279,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3349": { "frame": {"x":1297,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3350": { "frame": {"x":1315,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3351": { "frame": {"x":1333,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3352": { "frame": {"x":1351,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3353": { "frame": {"x":1369,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3354": { "frame": {"x":1387,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3355": { "frame": {"x":1405,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3356": { "frame": {"x":1423,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3357": { "frame": {"x":1441,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3358": { "frame": {"x":1459,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3359": { "frame": {"x":1477,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3360": { "frame": {"x":1495,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3361": { "frame": {"x":1513,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3362": { "frame": {"x":1531,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3363": { "frame": {"x":1549,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3364": { "frame": {"x":1567,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3365": { "frame": {"x":1585,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3366": { "frame": {"x":1603,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3367": { "frame": {"x":1621,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3368": { "frame": {"x":1639,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3369": { "frame": {"x":1657,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3370": { "frame": {"x":1675,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3371": { "frame": {"x":1693,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3372": { "frame": {"x":1711,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3373": { "frame": {"x":1729,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3374": { "frame": {"x":1747,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3375": { "frame": {"x":1765,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3376": { "frame": {"x":1783,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3377": { "frame": {"x":1801,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3378": { "frame": {"x":1819,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3379": { "frame": {"x":1837,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3380": { "frame": {"x":1855,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3381": { "frame": {"x":1873,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3382": { "frame": {"x":1891,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3383": { "frame": {"x":1909,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3384": { "frame": {"x":1927,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3385": { "frame": {"x":1945,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3386": { "frame": {"x":1963,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3387": { "frame": {"x":1981,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3388": { "frame": {"x":1999,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3389": { "frame": {"x":2017,"y":523,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3390": { "frame": {"x":1,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3391": { "frame": {"x":19,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3392": { "frame": {"x":37,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3393": { "frame": {"x":55,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3394": { "frame": {"x":73,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3395": { "frame": {"x":91,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3396": { "frame": {"x":109,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3397": { "frame": {"x":127,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3398": { "frame": {"x":145,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3399": { "frame": {"x":163,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3400": { "frame": {"x":181,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3401": { "frame": {"x":199,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3402": { "frame": {"x":217,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3403": { "frame": {"x":235,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3404": { "frame": {"x":253,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3405": { "frame": {"x":271,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3406": { "frame": {"x":289,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3407": { "frame": {"x":307,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3408": { "frame": {"x":325,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3409": { "frame": {"x":343,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3410": { "frame": {"x":361,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3411": { "frame": {"x":379,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3412": { "frame": {"x":397,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3413": { "frame": {"x":415,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3414": { "frame": {"x":433,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3415": { "frame": {"x":451,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3416": { "frame": {"x":469,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3417": { "frame": {"x":487,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3418": { "frame": {"x":505,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3419": { "frame": {"x":523,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3420": { "frame": {"x":541,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3421": { "frame": {"x":559,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3422": { "frame": {"x":577,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3423": { "frame": {"x":595,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3424": { "frame": {"x":613,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3425": { "frame": {"x":631,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3426": { "frame": {"x":649,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3427": { "frame": {"x":667,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3428": { "frame": {"x":685,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3429": { "frame": {"x":703,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3430": { "frame": {"x":721,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3431": { "frame": {"x":739,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3432": { "frame": {"x":757,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3433": { "frame": {"x":775,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3434": { "frame": {"x":793,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3435": { "frame": {"x":811,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3436": { "frame": {"x":829,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3437": { "frame": {"x":847,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3438": { "frame": {"x":865,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3439": { "frame": {"x":883,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3440": { "frame": {"x":901,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3441": { "frame": {"x":919,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3442": { "frame": {"x":937,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3443": { "frame": {"x":955,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3444": { "frame": {"x":973,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3445": { "frame": {"x":991,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3446": { "frame": {"x":1009,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3447": { "frame": {"x":1027,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3448": { "frame": {"x":1045,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3449": { "frame": {"x":1063,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3450": { "frame": {"x":1081,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3451": { "frame": {"x":1099,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3452": { "frame": {"x":1117,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3453": { "frame": {"x":1135,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3454": { "frame": {"x":1153,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3455": { "frame": {"x":1171,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3456": { "frame": {"x":1189,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3457": { "frame": {"x":1207,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3458": { "frame": {"x":1225,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3459": { "frame": {"x":1243,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3460": { "frame": {"x":1261,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3461": { "frame": {"x":1279,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3462": { "frame": {"x":1297,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3463": { "frame": {"x":1315,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3464": { "frame": {"x":1333,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3465": { "frame": {"x":1351,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3466": { "frame": {"x":1369,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3467": { "frame": {"x":1387,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3468": { "frame": {"x":1405,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3469": { "frame": {"x":1423,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3470": { "frame": {"x":1441,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3471": { "frame": {"x":1459,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3472": { "frame": {"x":1477,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3473": { "frame": {"x":1495,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3474": { "frame": {"x":1513,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3475": { "frame": {"x":1531,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3476": { "frame": {"x":1549,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3477": { "frame": {"x":1567,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3478": { "frame": {"x":1585,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3479": { "frame": {"x":1603,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3480": { "frame": {"x":1621,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3481": { "frame": {"x":1639,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3482": { "frame": {"x":1657,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3483": { "frame": {"x":1675,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3484": { "frame": {"x":1693,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3485": { "frame": {"x":1711,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3486": { "frame": {"x":1729,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3487": { "frame": {"x":1747,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3488": { "frame": {"x":1765,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3489": { "frame": {"x":1783,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3490": { "frame": {"x":1801,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3491": { "frame": {"x":1819,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3492": { "frame": {"x":1837,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3493": { "frame": {"x":1855,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3494": { "frame": {"x":1873,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3495": { "frame": {"x":1891,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3496": { "frame": {"x":1909,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3497": { "frame": {"x":1927,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3498": { "frame": {"x":1945,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3499": { "frame": {"x":1963,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3500": { "frame": {"x":1981,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3501": { "frame": {"x":1999,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3502": { "frame": {"x":2017,"y":541,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3503": { "frame": {"x":1,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3504": { "frame": {"x":19,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3505": { "frame": {"x":37,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3506": { "frame": {"x":55,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3507": { "frame": {"x":73,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3508": { "frame": {"x":91,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3509": { "frame": {"x":109,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3510": { "frame": {"x":127,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3511": { "frame": {"x":145,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3512": { "frame": {"x":163,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3513": { "frame": {"x":181,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3514": { "frame": {"x":199,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3515": { "frame": {"x":217,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3516": { "frame": {"x":235,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3517": { "frame": {"x":253,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3518": { "frame": {"x":271,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3519": { "frame": {"x":289,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3520": { "frame": {"x":307,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3521": { "frame": {"x":325,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3522": { "frame": {"x":343,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3523": { "frame": {"x":361,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3524": { "frame": {"x":379,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3525": { "frame": {"x":397,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3526": { "frame": {"x":415,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3527": { "frame": {"x":433,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3528": { "frame": {"x":451,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3529": { "frame": {"x":469,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3530": { "frame": {"x":487,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3531": { "frame": {"x":505,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3532": { "frame": {"x":523,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3533": { "frame": {"x":541,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3534": { "frame": {"x":559,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3535": { "frame": {"x":577,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3536": { "frame": {"x":595,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3537": { "frame": {"x":613,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3538": { "frame": {"x":631,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3539": { "frame": {"x":649,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3540": { "frame": {"x":667,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3541": { "frame": {"x":685,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3542": { "frame": {"x":703,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3543": { "frame": {"x":721,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3544": { "frame": {"x":739,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3545": { "frame": {"x":757,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3546": { "frame": {"x":775,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3547": { "frame": {"x":793,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3548": { "frame": {"x":811,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3549": { "frame": {"x":829,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3550": { "frame": {"x":847,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3551": { "frame": {"x":865,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3552": { "frame": {"x":883,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3553": { "frame": {"x":901,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3554": { "frame": {"x":919,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3555": { "frame": {"x":937,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3556": { "frame": {"x":955,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3557": { "frame": {"x":973,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3558": { "frame": {"x":991,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3559": { "frame": {"x":1009,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3560": { "frame": {"x":1027,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3561": { "frame": {"x":1045,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3562": { "frame": {"x":1063,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3563": { "frame": {"x":1081,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3564": { "frame": {"x":1099,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3565": { "frame": {"x":1117,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3566": { "frame": {"x":1135,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3567": { "frame": {"x":1153,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3568": { "frame": {"x":1171,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3569": { "frame": {"x":1189,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3570": { "frame": {"x":1207,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3571": { "frame": {"x":1225,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3572": { "frame": {"x":1243,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3573": { "frame": {"x":1261,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3574": { "frame": {"x":1279,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3575": { "frame": {"x":1297,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3576": { "frame": {"x":1315,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3577": { "frame": {"x":1333,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3578": { "frame": {"x":1351,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3579": { "frame": {"x":1369,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3580": { "frame": {"x":1387,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3581": { "frame": {"x":1405,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3582": { "frame": {"x":1423,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3583": { "frame": {"x":1441,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3584": { "frame": {"x":1459,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3585": { "frame": {"x":1477,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3586": { "frame": {"x":1495,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3587": { "frame": {"x":1513,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3588": { "frame": {"x":1531,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3589": { "frame": {"x":1549,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3590": { "frame": {"x":1567,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3591": { "frame": {"x":1585,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3592": { "frame": {"x":1603,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3593": { "frame": {"x":1621,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3594": { "frame": {"x":1639,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3595": { "frame": {"x":1657,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3596": { "frame": {"x":1675,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3597": { "frame": {"x":1693,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3598": { "frame": {"x":1711,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3599": { "frame": {"x":1729,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3600": { "frame": {"x":1747,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3601": { "frame": {"x":1765,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3602": { "frame": {"x":1783,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3603": { "frame": {"x":1801,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3604": { "frame": {"x":1819,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3605": { "frame": {"x":1837,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3606": { "frame": {"x":1855,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3607": { "frame": {"x":1873,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3608": { "frame": {"x":1891,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3609": { "frame": {"x":1909,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3610": { "frame": {"x":1927,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3611": { "frame": {"x":1945,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3612": { "frame": {"x":1963,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3613": { "frame": {"x":1981,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3614": { "frame": {"x":1999,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3615": { "frame": {"x":2017,"y":559,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3616": { "frame": {"x":1,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3617": { "frame": {"x":19,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3618": { "frame": {"x":37,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3619": { "frame": {"x":55,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3620": { "frame": {"x":73,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3621": { "frame": {"x":91,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3622": { "frame": {"x":109,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3623": { "frame": {"x":127,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3624": { "frame": {"x":145,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3625": { "frame": {"x":163,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3626": { "frame": {"x":181,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3627": { "frame": {"x":199,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3628": { "frame": {"x":217,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3629": { "frame": {"x":235,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3630": { "frame": {"x":253,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3631": { "frame": {"x":271,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3632": { "frame": {"x":289,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3633": { "frame": {"x":307,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3634": { "frame": {"x":325,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3635": { "frame": {"x":343,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3636": { "frame": {"x":361,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3637": { "frame": {"x":379,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3638": { "frame": {"x":397,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3639": { "frame": {"x":415,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3640": { "frame": {"x":433,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3641": { "frame": {"x":451,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3642": { "frame": {"x":469,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3643": { "frame": {"x":487,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3644": { "frame": {"x":505,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3645": { "frame": {"x":523,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3646": { "frame": {"x":541,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3647": { "frame": {"x":559,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3648": { "frame": {"x":577,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3649": { "frame": {"x":595,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3650": { "frame": {"x":613,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3651": { "frame": {"x":631,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3652": { "frame": {"x":649,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3653": { "frame": {"x":667,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3654": { "frame": {"x":685,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3655": { "frame": {"x":703,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3656": { "frame": {"x":721,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3657": { "frame": {"x":739,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3658": { "frame": {"x":757,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3659": { "frame": {"x":775,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3660": { "frame": {"x":793,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3661": { "frame": {"x":811,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3662": { "frame": {"x":829,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3663": { "frame": {"x":847,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3664": { "frame": {"x":865,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3665": { "frame": {"x":883,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3666": { "frame": {"x":901,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3667": { "frame": {"x":919,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3668": { "frame": {"x":937,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3669": { "frame": {"x":955,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3670": { "frame": {"x":973,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3671": { "frame": {"x":991,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3672": { "frame": {"x":1009,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3673": { "frame": {"x":1027,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3674": { "frame": {"x":1045,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3675": { "frame": {"x":1063,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3676": { "frame": {"x":1081,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3677": { "frame": {"x":1099,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3678": { "frame": {"x":1117,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3679": { "frame": {"x":1135,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3680": { "frame": {"x":1153,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3681": { "frame": {"x":1171,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3682": { "frame": {"x":1189,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3683": { "frame": {"x":1207,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3684": { "frame": {"x":1225,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3685": { "frame": {"x":1243,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3686": { "frame": {"x":1261,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3687": { "frame": {"x":1279,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3688": { "frame": {"x":1297,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3689": { "frame": {"x":1315,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3690": { "frame": {"x":1333,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3691": { "frame": {"x":1351,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3692": { "frame": {"x":1369,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3693": { "frame": {"x":1387,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3694": { "frame": {"x":1405,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3695": { "frame": {"x":1423,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3696": { "frame": {"x":1441,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3697": { "frame": {"x":1459,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3698": { "frame": {"x":1477,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3699": { "frame": {"x":1495,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3700": { "frame": {"x":1513,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3701": { "frame": {"x":1531,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3702": { "frame": {"x":1549,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3703": { "frame": {"x":1567,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3704": { "frame": {"x":1585,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3705": { "frame": {"x":1603,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3706": { "frame": {"x":1621,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3707": { "frame": {"x":1639,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3708": { "frame": {"x":1657,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3709": { "frame": {"x":1675,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3710": { "frame": {"x":1693,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3711": { "frame": {"x":1711,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3712": { "frame": {"x":1729,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3713": { "frame": {"x":1747,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3714": { "frame": {"x":1765,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3715": { "frame": {"x":1783,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3716": { "frame": {"x":1801,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3717": { "frame": {"x":1819,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3718": { "frame": {"x":1837,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3719": { "frame": {"x":1855,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3720": { "frame": {"x":1873,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3721": { "frame": {"x":1891,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3722": { "frame": {"x":1909,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3723": { "frame": {"x":1927,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3724": { "frame": {"x":1945,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3725": { "frame": {"x":1963,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3726": { "frame": {"x":1981,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3727": { "frame": {"x":1999,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3728": { "frame": {"x":2017,"y":577,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3729": { "frame": {"x":1,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3730": { "frame": {"x":19,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3731": { "frame": {"x":37,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3732": { "frame": {"x":55,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3733": { "frame": {"x":73,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3734": { "frame": {"x":91,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3735": { "frame": {"x":109,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3736": { "frame": {"x":127,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3737": { "frame": {"x":145,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3738": { "frame": {"x":163,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3739": { "frame": {"x":181,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3740": { "frame": {"x":199,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3741": { "frame": {"x":217,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3742": { "frame": {"x":235,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3743": { "frame": {"x":253,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3744": { "frame": {"x":271,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3745": { "frame": {"x":289,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3746": { "frame": {"x":307,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3747": { "frame": {"x":325,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3748": { "frame": {"x":343,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3749": { "frame": {"x":361,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3750": { "frame": {"x":379,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3751": { "frame": {"x":397,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3752": { "frame": {"x":415,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3753": { "frame": {"x":433,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3754": { "frame": {"x":451,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3755": { "frame": {"x":469,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3756": { "frame": {"x":487,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3757": { "frame": {"x":505,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3758": { "frame": {"x":523,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3759": { "frame": {"x":541,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3760": { "frame": {"x":559,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3761": { "frame": {"x":577,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3762": { "frame": {"x":595,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3763": { "frame": {"x":613,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3764": { "frame": {"x":631,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3765": { "frame": {"x":649,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3766": { "frame": {"x":667,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3767": { "frame": {"x":685,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3768": { "frame": {"x":703,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3769": { "frame": {"x":721,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3770": { "frame": {"x":739,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3771": { "frame": {"x":757,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3772": { "frame": {"x":775,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3773": { "frame": {"x":793,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3774": { "frame": {"x":811,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3775": { "frame": {"x":829,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3776": { "frame": {"x":847,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3777": { "frame": {"x":865,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3778": { "frame": {"x":883,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3779": { "frame": {"x":901,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3780": { "frame": {"x":919,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3781": { "frame": {"x":937,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3782": { "frame": {"x":955,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3783": { "frame": {"x":973,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3784": { "frame": {"x":991,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3785": { "frame": {"x":1009,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3786": { "frame": {"x":1027,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3787": { "frame": {"x":1045,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3788": { "frame": {"x":1063,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3789": { "frame": {"x":1081,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3790": { "frame": {"x":1099,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3791": { "frame": {"x":1117,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3792": { "frame": {"x":1135,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3793": { "frame": {"x":1153,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3794": { "frame": {"x":1171,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3795": { "frame": {"x":1189,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3796": { "frame": {"x":1207,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3797": { "frame": {"x":1225,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3798": { "frame": {"x":1243,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3799": { "frame": {"x":1261,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3800": { "frame": {"x":1279,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3801": { "frame": {"x":1297,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3802": { "frame": {"x":1315,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3803": { "frame": {"x":1333,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3804": { "frame": {"x":1351,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3805": { "frame": {"x":1369,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3806": { "frame": {"x":1387,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3807": { "frame": {"x":1405,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3808": { "frame": {"x":1423,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3809": { "frame": {"x":1441,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3810": { "frame": {"x":1459,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3811": { "frame": {"x":1477,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3812": { "frame": {"x":1495,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3813": { "frame": {"x":1513,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3814": { "frame": {"x":1531,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3815": { "frame": {"x":1549,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3816": { "frame": {"x":1567,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3817": { "frame": {"x":1585,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3818": { "frame": {"x":1603,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3819": { "frame": {"x":1621,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3820": { "frame": {"x":1639,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3821": { "frame": {"x":1657,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3822": { "frame": {"x":1675,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3823": { "frame": {"x":1693,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3824": { "frame": {"x":1711,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3825": { "frame": {"x":1729,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3826": { "frame": {"x":1747,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3827": { "frame": {"x":1765,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3828": { "frame": {"x":1783,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3829": { "frame": {"x":1801,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3830": { "frame": {"x":1819,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3831": { "frame": {"x":1837,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3832": { "frame": {"x":1855,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3833": { "frame": {"x":1873,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3834": { "frame": {"x":1891,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3835": { "frame": {"x":1909,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3836": { "frame": {"x":1927,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3837": { "frame": {"x":1945,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3838": { "frame": {"x":1963,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3839": { "frame": {"x":1981,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3840": { "frame": {"x":1999,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3841": { "frame": {"x":2017,"y":595,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3842": { "frame": {"x":1,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3843": { "frame": {"x":19,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3844": { "frame": {"x":37,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3845": { "frame": {"x":55,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3846": { "frame": {"x":73,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3847": { "frame": {"x":91,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3848": { "frame": {"x":109,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3849": { "frame": {"x":127,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3850": { "frame": {"x":145,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3851": { "frame": {"x":163,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3852": { "frame": {"x":181,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3853": { "frame": {"x":199,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3854": { "frame": {"x":217,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3855": { "frame": {"x":235,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3856": { "frame": {"x":253,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3857": { "frame": {"x":271,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3858": { "frame": {"x":289,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3859": { "frame": {"x":307,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3860": { "frame": {"x":325,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3861": { "frame": {"x":343,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3862": { "frame": {"x":361,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3863": { "frame": {"x":379,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3864": { "frame": {"x":397,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3865": { "frame": {"x":415,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3866": { "frame": {"x":433,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3867": { "frame": {"x":451,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3868": { "frame": {"x":469,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3869": { "frame": {"x":487,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3870": { "frame": {"x":505,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3871": { "frame": {"x":523,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3872": { "frame": {"x":541,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3873": { "frame": {"x":559,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3874": { "frame": {"x":577,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3875": { "frame": {"x":595,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3876": { "frame": {"x":613,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3877": { "frame": {"x":631,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3878": { "frame": {"x":649,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3879": { "frame": {"x":667,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3880": { "frame": {"x":685,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3881": { "frame": {"x":703,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3882": { "frame": {"x":721,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3883": { "frame": {"x":739,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3884": { "frame": {"x":757,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3885": { "frame": {"x":775,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3886": { "frame": {"x":793,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3887": { "frame": {"x":811,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3888": { "frame": {"x":829,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3889": { "frame": {"x":847,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3890": { "frame": {"x":865,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3891": { "frame": {"x":883,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3892": { "frame": {"x":901,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3893": { "frame": {"x":919,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3894": { "frame": {"x":937,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3895": { "frame": {"x":955,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3896": { "frame": {"x":973,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3897": { "frame": {"x":991,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3898": { "frame": {"x":1009,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3899": { "frame": {"x":1027,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3900": { "frame": {"x":1045,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3901": { "frame": {"x":1063,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3902": { "frame": {"x":1081,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3903": { "frame": {"x":1099,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3904": { "frame": {"x":1117,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3905": { "frame": {"x":1135,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3906": { "frame": {"x":1153,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3907": { "frame": {"x":1171,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3908": { "frame": {"x":1189,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3909": { "frame": {"x":1207,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3910": { "frame": {"x":1225,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3911": { "frame": {"x":1243,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3912": { "frame": {"x":1261,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3913": { "frame": {"x":1279,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3914": { "frame": {"x":1297,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3915": { "frame": {"x":1315,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3916": { "frame": {"x":1333,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3917": { "frame": {"x":1351,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3918": { "frame": {"x":1369,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3919": { "frame": {"x":1387,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3920": { "frame": {"x":1405,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3921": { "frame": {"x":1423,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3922": { "frame": {"x":1441,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3923": { "frame": {"x":1459,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3924": { "frame": {"x":1477,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3925": { "frame": {"x":1495,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3926": { "frame": {"x":1513,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3927": { "frame": {"x":1531,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3928": { "frame": {"x":1549,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3929": { "frame": {"x":1567,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3930": { "frame": {"x":1585,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3931": { "frame": {"x":1603,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3932": { "frame": {"x":1621,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3933": { "frame": {"x":1639,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3934": { "frame": {"x":1657,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3935": { "frame": {"x":1675,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3936": { "frame": {"x":1693,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3937": { "frame": {"x":1711,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3938": { "frame": {"x":1729,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3939": { "frame": {"x":1747,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3940": { "frame": {"x":1765,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3941": { "frame": {"x":1783,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3942": { "frame": {"x":1801,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3943": { "frame": {"x":1819,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3944": { "frame": {"x":1837,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3945": { "frame": {"x":1855,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3946": { "frame": {"x":1873,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3947": { "frame": {"x":1891,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3948": { "frame": {"x":1909,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3949": { "frame": {"x":1927,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3950": { "frame": {"x":1945,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3951": { "frame": {"x":1963,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3952": { "frame": {"x":1981,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3953": { "frame": {"x":1999,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3954": { "frame": {"x":2017,"y":613,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3955": { "frame": {"x":1,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3956": { "frame": {"x":19,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3957": { "frame": {"x":37,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3958": { "frame": {"x":55,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3959": { "frame": {"x":73,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3960": { "frame": {"x":91,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3961": { "frame": {"x":109,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3962": { "frame": {"x":127,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3963": { "frame": {"x":145,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3964": { "frame": {"x":163,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3965": { "frame": {"x":181,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3966": { "frame": {"x":199,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3967": { "frame": {"x":217,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3968": { "frame": {"x":235,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3969": { "frame": {"x":253,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3970": { "frame": {"x":271,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3971": { "frame": {"x":289,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3972": { "frame": {"x":307,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3973": { "frame": {"x":325,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3974": { "frame": {"x":343,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3975": { "frame": {"x":361,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3976": { "frame": {"x":379,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3977": { "frame": {"x":397,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3978": { "frame": {"x":415,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3979": { "frame": {"x":433,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3980": { "frame": {"x":451,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3981": { "frame": {"x":469,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3982": { "frame": {"x":487,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3983": { "frame": {"x":505,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3984": { "frame": {"x":523,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3985": { "frame": {"x":541,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3986": { "frame": {"x":559,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3987": { "frame": {"x":577,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3988": { "frame": {"x":595,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3989": { "frame": {"x":613,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3990": { "frame": {"x":631,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3991": { "frame": {"x":649,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3992": { "frame": {"x":667,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3993": { "frame": {"x":685,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3994": { "frame": {"x":703,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3995": { "frame": {"x":721,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3996": { "frame": {"x":739,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3997": { "frame": {"x":757,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3998": { "frame": {"x":775,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "3999": { "frame": {"x":793,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4000": { "frame": {"x":811,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4001": { "frame": {"x":829,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4002": { "frame": {"x":847,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4003": { "frame": {"x":865,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4004": { "frame": {"x":883,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4005": { "frame": {"x":901,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4006": { "frame": {"x":919,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4007": { "frame": {"x":937,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4008": { "frame": {"x":955,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4009": { "frame": {"x":973,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4010": { "frame": {"x":991,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4011": { "frame": {"x":1009,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4012": { "frame": {"x":1027,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4013": { "frame": {"x":1045,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4014": { "frame": {"x":1063,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4015": { "frame": {"x":1081,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4016": { "frame": {"x":1099,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4017": { "frame": {"x":1117,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4018": { "frame": {"x":1135,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4019": { "frame": {"x":1153,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4020": { "frame": {"x":1171,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4021": { "frame": {"x":1189,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4022": { "frame": {"x":1207,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4023": { "frame": {"x":1225,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4024": { "frame": {"x":1243,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4025": { "frame": {"x":1261,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4026": { "frame": {"x":1279,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4027": { "frame": {"x":1297,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4028": { "frame": {"x":1315,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4029": { "frame": {"x":1333,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4030": { "frame": {"x":1351,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4031": { "frame": {"x":1369,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4032": { "frame": {"x":1387,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4033": { "frame": {"x":1405,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4034": { "frame": {"x":1423,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4035": { "frame": {"x":1441,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4036": { "frame": {"x":1459,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4037": { "frame": {"x":1477,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4038": { "frame": {"x":1495,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4039": { "frame": {"x":1513,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4040": { "frame": {"x":1531,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4041": { "frame": {"x":1549,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4042": { "frame": {"x":1567,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4043": { "frame": {"x":1585,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4044": { "frame": {"x":1603,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4045": { "frame": {"x":1621,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4046": { "frame": {"x":1639,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4047": { "frame": {"x":1657,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4048": { "frame": {"x":1675,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4049": { "frame": {"x":1693,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4050": { "frame": {"x":1711,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4051": { "frame": {"x":1729,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4052": { "frame": {"x":1747,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4053": { "frame": {"x":1765,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4054": { "frame": {"x":1783,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4055": { "frame": {"x":1801,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4056": { "frame": {"x":1819,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4057": { "frame": {"x":1837,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4058": { "frame": {"x":1855,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4059": { "frame": {"x":1873,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4060": { "frame": {"x":1891,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4061": { "frame": {"x":1909,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4062": { "frame": {"x":1927,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4063": { "frame": {"x":1945,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4064": { "frame": {"x":1963,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4065": { "frame": {"x":1981,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4066": { "frame": {"x":1999,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4067": { "frame": {"x":2017,"y":631,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4068": { "frame": {"x":1,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4069": { "frame": {"x":19,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4070": { "frame": {"x":37,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4071": { "frame": {"x":55,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4072": { "frame": {"x":73,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4073": { "frame": {"x":91,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4074": { "frame": {"x":109,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4075": { "frame": {"x":127,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4076": { "frame": {"x":145,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4077": { "frame": {"x":163,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4078": { "frame": {"x":181,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4079": { "frame": {"x":199,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4080": { "frame": {"x":217,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4081": { "frame": {"x":235,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4082": { "frame": {"x":253,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4083": { "frame": {"x":271,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4084": { "frame": {"x":289,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4085": { "frame": {"x":307,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4086": { "frame": {"x":325,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4087": { "frame": {"x":343,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4088": { "frame": {"x":361,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4089": { "frame": {"x":379,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4090": { "frame": {"x":397,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4091": { "frame": {"x":415,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4092": { "frame": {"x":433,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4093": { "frame": {"x":451,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4094": { "frame": {"x":469,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4095": { "frame": {"x":487,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4096": { "frame": {"x":505,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4097": { "frame": {"x":523,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4098": { "frame": {"x":541,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4099": { "frame": {"x":559,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4100": { "frame": {"x":577,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4101": { "frame": {"x":595,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4102": { "frame": {"x":613,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4103": { "frame": {"x":631,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4104": { "frame": {"x":649,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4105": { "frame": {"x":667,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4106": { "frame": {"x":685,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4107": { "frame": {"x":703,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4108": { "frame": {"x":721,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4109": { "frame": {"x":739,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4110": { "frame": {"x":757,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4111": { "frame": {"x":775,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4112": { "frame": {"x":793,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4113": { "frame": {"x":811,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4114": { "frame": {"x":829,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4115": { "frame": {"x":847,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4116": { "frame": {"x":865,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4117": { "frame": {"x":883,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4118": { "frame": {"x":901,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4119": { "frame": {"x":919,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4120": { "frame": {"x":937,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4121": { "frame": {"x":955,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4122": { "frame": {"x":973,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4123": { "frame": {"x":991,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4124": { "frame": {"x":1009,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4125": { "frame": {"x":1027,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4126": { "frame": {"x":1045,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4127": { "frame": {"x":1063,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4128": { "frame": {"x":1081,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4129": { "frame": {"x":1099,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4130": { "frame": {"x":1117,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4131": { "frame": {"x":1135,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4132": { "frame": {"x":1153,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4133": { "frame": {"x":1171,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4134": { "frame": {"x":1189,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4135": { "frame": {"x":1207,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4136": { "frame": {"x":1225,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4137": { "frame": {"x":1243,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4138": { "frame": {"x":1261,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4139": { "frame": {"x":1279,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4140": { "frame": {"x":1297,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4141": { "frame": {"x":1315,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4142": { "frame": {"x":1333,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4143": { "frame": {"x":1351,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4144": { "frame": {"x":1369,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4145": { "frame": {"x":1387,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4146": { "frame": {"x":1405,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4147": { "frame": {"x":1423,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4148": { "frame": {"x":1441,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4149": { "frame": {"x":1459,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4150": { "frame": {"x":1477,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4151": { "frame": {"x":1495,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4152": { "frame": {"x":1513,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4153": { "frame": {"x":1531,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4154": { "frame": {"x":1549,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4155": { "frame": {"x":1567,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4156": { "frame": {"x":1585,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4157": { "frame": {"x":1603,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4158": { "frame": {"x":1621,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4159": { "frame": {"x":1639,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4160": { "frame": {"x":1657,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4161": { "frame": {"x":1675,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4162": { "frame": {"x":1693,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4163": { "frame": {"x":1711,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4164": { "frame": {"x":1729,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4165": { "frame": {"x":1747,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4166": { "frame": {"x":1765,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4167": { "frame": {"x":1783,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4168": { "frame": {"x":1801,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4169": { "frame": {"x":1819,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4170": { "frame": {"x":1837,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4171": { "frame": {"x":1855,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4172": { "frame": {"x":1873,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4173": { "frame": {"x":1891,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4174": { "frame": {"x":1909,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4175": { "frame": {"x":1927,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4176": { "frame": {"x":1945,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4177": { "frame": {"x":1963,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4178": { "frame": {"x":1981,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4179": { "frame": {"x":1999,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4180": { "frame": {"x":2017,"y":649,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4181": { "frame": {"x":1,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4182": { "frame": {"x":19,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4183": { "frame": {"x":37,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4184": { "frame": {"x":55,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4185": { "frame": {"x":73,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4186": { "frame": {"x":91,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4187": { "frame": {"x":109,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4188": { "frame": {"x":127,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4189": { "frame": {"x":145,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4190": { "frame": {"x":163,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4191": { "frame": {"x":181,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4192": { "frame": {"x":199,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4193": { "frame": {"x":217,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4194": { "frame": {"x":235,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4195": { "frame": {"x":253,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4196": { "frame": {"x":271,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4197": { "frame": {"x":289,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4198": { "frame": {"x":307,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4199": { "frame": {"x":325,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4200": { "frame": {"x":343,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4201": { "frame": {"x":361,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4202": { "frame": {"x":379,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4203": { "frame": {"x":397,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4204": { "frame": {"x":415,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4205": { "frame": {"x":433,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4206": { "frame": {"x":451,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4207": { "frame": {"x":469,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4208": { "frame": {"x":487,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4209": { "frame": {"x":505,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4210": { "frame": {"x":523,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4211": { "frame": {"x":541,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4212": { "frame": {"x":559,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4213": { "frame": {"x":577,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4214": { "frame": {"x":595,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4215": { "frame": {"x":613,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4216": { "frame": {"x":631,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4217": { "frame": {"x":649,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4218": { "frame": {"x":667,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4219": { "frame": {"x":685,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4220": { "frame": {"x":703,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4221": { "frame": {"x":721,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4222": { "frame": {"x":739,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4223": { "frame": {"x":757,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4224": { "frame": {"x":775,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4225": { "frame": {"x":793,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4226": { "frame": {"x":811,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4227": { "frame": {"x":829,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4228": { "frame": {"x":847,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4229": { "frame": {"x":865,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4230": { "frame": {"x":883,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4231": { "frame": {"x":901,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4232": { "frame": {"x":919,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4233": { "frame": {"x":937,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4234": { "frame": {"x":955,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4235": { "frame": {"x":973,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4236": { "frame": {"x":991,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4237": { "frame": {"x":1009,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4238": { "frame": {"x":1027,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4239": { "frame": {"x":1045,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4240": { "frame": {"x":1063,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4241": { "frame": {"x":1081,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4242": { "frame": {"x":1099,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4243": { "frame": {"x":1117,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4244": { "frame": {"x":1135,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4245": { "frame": {"x":1153,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4246": { "frame": {"x":1171,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4247": { "frame": {"x":1189,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4248": { "frame": {"x":1207,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4249": { "frame": {"x":1225,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4250": { "frame": {"x":1243,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4251": { "frame": {"x":1261,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4252": { "frame": {"x":1279,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4253": { "frame": {"x":1297,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4254": { "frame": {"x":1315,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4255": { "frame": {"x":1333,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4256": { "frame": {"x":1351,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4257": { "frame": {"x":1369,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4258": { "frame": {"x":1387,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4259": { "frame": {"x":1405,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4260": { "frame": {"x":1423,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4261": { "frame": {"x":1441,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4262": { "frame": {"x":1459,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4263": { "frame": {"x":1477,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4264": { "frame": {"x":1495,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4265": { "frame": {"x":1513,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4266": { "frame": {"x":1531,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4267": { "frame": {"x":1549,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4268": { "frame": {"x":1567,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4269": { "frame": {"x":1585,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4270": { "frame": {"x":1603,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4271": { "frame": {"x":1621,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4272": { "frame": {"x":1639,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4273": { "frame": {"x":1657,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4274": { "frame": {"x":1675,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4275": { "frame": {"x":1693,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4276": { "frame": {"x":1711,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4277": { "frame": {"x":1729,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4278": { "frame": {"x":1747,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4279": { "frame": {"x":1765,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4280": { "frame": {"x":1783,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4281": { "frame": {"x":1801,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4282": { "frame": {"x":1819,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4283": { "frame": {"x":1837,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4284": { "frame": {"x":1855,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4285": { "frame": {"x":1873,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4286": { "frame": {"x":1891,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4287": { "frame": {"x":1909,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4288": { "frame": {"x":1927,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4289": { "frame": {"x":1945,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4290": { "frame": {"x":1963,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4291": { "frame": {"x":1981,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4292": { "frame": {"x":1999,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4293": { "frame": {"x":2017,"y":667,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4294": { "frame": {"x":1,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4295": { "frame": {"x":19,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4296": { "frame": {"x":37,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4297": { "frame": {"x":55,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4298": { "frame": {"x":73,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4299": { "frame": {"x":91,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4300": { "frame": {"x":109,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4301": { "frame": {"x":127,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4302": { "frame": {"x":145,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4303": { "frame": {"x":163,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4304": { "frame": {"x":181,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4305": { "frame": {"x":199,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4306": { "frame": {"x":217,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4307": { "frame": {"x":235,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4308": { "frame": {"x":253,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4309": { "frame": {"x":271,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4310": { "frame": {"x":289,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4311": { "frame": {"x":307,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4312": { "frame": {"x":325,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4313": { "frame": {"x":343,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4314": { "frame": {"x":361,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4315": { "frame": {"x":379,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4316": { "frame": {"x":397,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4317": { "frame": {"x":415,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4318": { "frame": {"x":433,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4319": { "frame": {"x":451,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4320": { "frame": {"x":469,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4321": { "frame": {"x":487,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4322": { "frame": {"x":505,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4323": { "frame": {"x":523,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4324": { "frame": {"x":541,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4325": { "frame": {"x":559,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4326": { "frame": {"x":577,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4327": { "frame": {"x":595,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4328": { "frame": {"x":613,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4329": { "frame": {"x":631,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4330": { "frame": {"x":649,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4331": { "frame": {"x":667,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4332": { "frame": {"x":685,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4333": { "frame": {"x":703,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4334": { "frame": {"x":721,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4335": { "frame": {"x":739,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4336": { "frame": {"x":757,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4337": { "frame": {"x":775,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4338": { "frame": {"x":793,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4339": { "frame": {"x":811,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4340": { "frame": {"x":829,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4341": { "frame": {"x":847,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4342": { "frame": {"x":865,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4343": { "frame": {"x":883,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4344": { "frame": {"x":901,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4345": { "frame": {"x":919,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4346": { "frame": {"x":937,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4347": { "frame": {"x":955,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4348": { "frame": {"x":973,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4349": { "frame": {"x":991,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4350": { "frame": {"x":1009,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4351": { "frame": {"x":1027,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4352": { "frame": {"x":1045,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4353": { "frame": {"x":1063,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4354": { "frame": {"x":1081,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4355": { "frame": {"x":1099,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4356": { "frame": {"x":1117,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4357": { "frame": {"x":1135,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4358": { "frame": {"x":1153,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4359": { "frame": {"x":1171,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4360": { "frame": {"x":1189,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4361": { "frame": {"x":1207,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4362": { "frame": {"x":1225,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4363": { "frame": {"x":1243,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4364": { "frame": {"x":1261,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4365": { "frame": {"x":1279,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4366": { "frame": {"x":1297,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4367": { "frame": {"x":1315,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4368": { "frame": {"x":1333,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4369": { "frame": {"x":1351,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4370": { "frame": {"x":1369,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4371": { "frame": {"x":1387,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4372": { "frame": {"x":1405,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4373": { "frame": {"x":1423,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4374": { "frame": {"x":1441,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4375": { "frame": {"x":1459,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4376": { "frame": {"x":1477,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4377": { "frame": {"x":1495,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4378": { "frame": {"x":1513,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4379": { "frame": {"x":1531,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4380": { "frame": {"x":1549,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4381": { "frame": {"x":1567,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4382": { "frame": {"x":1585,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4383": { "frame": {"x":1603,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4384": { "frame": {"x":1621,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4385": { "frame": {"x":1639,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4386": { "frame": {"x":1657,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4387": { "frame": {"x":1675,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4388": { "frame": {"x":1693,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4389": { "frame": {"x":1711,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4390": { "frame": {"x":1729,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4391": { "frame": {"x":1747,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4392": { "frame": {"x":1765,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4393": { "frame": {"x":1783,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4394": { "frame": {"x":1801,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4395": { "frame": {"x":1819,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4396": { "frame": {"x":1837,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4397": { "frame": {"x":1855,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4398": { "frame": {"x":1873,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4399": { "frame": {"x":1891,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4400": { "frame": {"x":1909,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4401": { "frame": {"x":1927,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4402": { "frame": {"x":1945,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4403": { "frame": {"x":1963,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4404": { "frame": {"x":1981,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4405": { "frame": {"x":1999,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4406": { "frame": {"x":2017,"y":685,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4407": { "frame": {"x":1,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4408": { "frame": {"x":19,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4409": { "frame": {"x":37,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4410": { "frame": {"x":55,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4411": { "frame": {"x":73,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4412": { "frame": {"x":91,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4413": { "frame": {"x":109,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4414": { "frame": {"x":127,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4415": { "frame": {"x":145,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4416": { "frame": {"x":163,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4417": { "frame": {"x":181,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4418": { "frame": {"x":199,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4419": { "frame": {"x":217,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4420": { "frame": {"x":235,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4421": { "frame": {"x":253,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4422": { "frame": {"x":271,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4423": { "frame": {"x":289,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4424": { "frame": {"x":307,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4425": { "frame": {"x":325,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4426": { "frame": {"x":343,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4427": { "frame": {"x":361,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4428": { "frame": {"x":379,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4429": { "frame": {"x":397,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4430": { "frame": {"x":415,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4431": { "frame": {"x":433,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4432": { "frame": {"x":451,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4433": { "frame": {"x":469,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4434": { "frame": {"x":487,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4435": { "frame": {"x":505,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4436": { "frame": {"x":523,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4437": { "frame": {"x":541,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4438": { "frame": {"x":559,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4439": { "frame": {"x":577,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4440": { "frame": {"x":595,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4441": { "frame": {"x":613,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4442": { "frame": {"x":631,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4443": { "frame": {"x":649,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4444": { "frame": {"x":667,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4445": { "frame": {"x":685,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4446": { "frame": {"x":703,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4447": { "frame": {"x":721,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4448": { "frame": {"x":739,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4449": { "frame": {"x":757,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4450": { "frame": {"x":775,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4451": { "frame": {"x":793,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4452": { "frame": {"x":811,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4453": { "frame": {"x":829,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4454": { "frame": {"x":847,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4455": { "frame": {"x":865,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4456": { "frame": {"x":883,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4457": { "frame": {"x":901,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4458": { "frame": {"x":919,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4459": { "frame": {"x":937,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4460": { "frame": {"x":955,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4461": { "frame": {"x":973,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4462": { "frame": {"x":991,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4463": { "frame": {"x":1009,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4464": { "frame": {"x":1027,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4465": { "frame": {"x":1045,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4466": { "frame": {"x":1063,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4467": { "frame": {"x":1081,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4468": { "frame": {"x":1099,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4469": { "frame": {"x":1117,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4470": { "frame": {"x":1135,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4471": { "frame": {"x":1153,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4472": { "frame": {"x":1171,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4473": { "frame": {"x":1189,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4474": { "frame": {"x":1207,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4475": { "frame": {"x":1225,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4476": { "frame": {"x":1243,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4477": { "frame": {"x":1261,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4478": { "frame": {"x":1279,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4479": { "frame": {"x":1297,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4480": { "frame": {"x":1315,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4481": { "frame": {"x":1333,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4482": { "frame": {"x":1351,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4483": { "frame": {"x":1369,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4484": { "frame": {"x":1387,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4485": { "frame": {"x":1405,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4486": { "frame": {"x":1423,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4487": { "frame": {"x":1441,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4488": { "frame": {"x":1459,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4489": { "frame": {"x":1477,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4490": { "frame": {"x":1495,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4491": { "frame": {"x":1513,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4492": { "frame": {"x":1531,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4493": { "frame": {"x":1549,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4494": { "frame": {"x":1567,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4495": { "frame": {"x":1585,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4496": { "frame": {"x":1603,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4497": { "frame": {"x":1621,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4498": { "frame": {"x":1639,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4499": { "frame": {"x":1657,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4500": { "frame": {"x":1675,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4501": { "frame": {"x":1693,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4502": { "frame": {"x":1711,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4503": { "frame": {"x":1729,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4504": { "frame": {"x":1747,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4505": { "frame": {"x":1765,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4506": { "frame": {"x":1783,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4507": { "frame": {"x":1801,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4508": { "frame": {"x":1819,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4509": { "frame": {"x":1837,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4510": { "frame": {"x":1855,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4511": { "frame": {"x":1873,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4512": { "frame": {"x":1891,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4513": { "frame": {"x":1909,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4514": { "frame": {"x":1927,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4515": { "frame": {"x":1945,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4516": { "frame": {"x":1963,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4517": { "frame": {"x":1981,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4518": { "frame": {"x":1999,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4519": { "frame": {"x":2017,"y":703,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4520": { "frame": {"x":1,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4521": { "frame": {"x":19,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4522": { "frame": {"x":37,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4523": { "frame": {"x":55,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4524": { "frame": {"x":73,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4525": { "frame": {"x":91,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4526": { "frame": {"x":109,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4527": { "frame": {"x":127,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4528": { "frame": {"x":145,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4529": { "frame": {"x":163,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4530": { "frame": {"x":181,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4531": { "frame": {"x":199,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4532": { "frame": {"x":217,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4533": { "frame": {"x":235,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4534": { "frame": {"x":253,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4535": { "frame": {"x":271,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4536": { "frame": {"x":289,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4537": { "frame": {"x":307,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4538": { "frame": {"x":325,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4539": { "frame": {"x":343,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4540": { "frame": {"x":361,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4541": { "frame": {"x":379,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4542": { "frame": {"x":397,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4543": { "frame": {"x":415,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4544": { "frame": {"x":433,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4545": { "frame": {"x":451,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4546": { "frame": {"x":469,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4547": { "frame": {"x":487,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4548": { "frame": {"x":505,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4549": { "frame": {"x":523,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4550": { "frame": {"x":541,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4551": { "frame": {"x":559,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4552": { "frame": {"x":577,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4553": { "frame": {"x":595,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4554": { "frame": {"x":613,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4555": { "frame": {"x":631,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4556": { "frame": {"x":649,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4557": { "frame": {"x":667,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4558": { "frame": {"x":685,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4559": { "frame": {"x":703,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4560": { "frame": {"x":721,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4561": { "frame": {"x":739,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4562": { "frame": {"x":757,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4563": { "frame": {"x":775,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4564": { "frame": {"x":793,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4565": { "frame": {"x":811,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4566": { "frame": {"x":829,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4567": { "frame": {"x":847,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4568": { "frame": {"x":865,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4569": { "frame": {"x":883,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4570": { "frame": {"x":901,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4571": { "frame": {"x":919,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4572": { "frame": {"x":937,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4573": { "frame": {"x":955,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4574": { "frame": {"x":973,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4575": { "frame": {"x":991,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4576": { "frame": {"x":1009,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4577": { "frame": {"x":1027,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4578": { "frame": {"x":1045,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4579": { "frame": {"x":1063,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4580": { "frame": {"x":1081,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4581": { "frame": {"x":1099,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4582": { "frame": {"x":1117,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4583": { "frame": {"x":1135,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4584": { "frame": {"x":1153,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4585": { "frame": {"x":1171,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4586": { "frame": {"x":1189,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4587": { "frame": {"x":1207,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4588": { "frame": {"x":1225,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4589": { "frame": {"x":1243,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4590": { "frame": {"x":1261,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4591": { "frame": {"x":1279,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4592": { "frame": {"x":1297,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4593": { "frame": {"x":1315,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4594": { "frame": {"x":1333,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4595": { "frame": {"x":1351,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4596": { "frame": {"x":1369,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4597": { "frame": {"x":1387,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4598": { "frame": {"x":1405,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4599": { "frame": {"x":1423,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4600": { "frame": {"x":1441,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4601": { "frame": {"x":1459,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4602": { "frame": {"x":1477,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4603": { "frame": {"x":1495,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4604": { "frame": {"x":1513,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4605": { "frame": {"x":1531,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4606": { "frame": {"x":1549,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4607": { "frame": {"x":1567,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4608": { "frame": {"x":1585,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4609": { "frame": {"x":1603,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4610": { "frame": {"x":1621,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4611": { "frame": {"x":1639,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4612": { "frame": {"x":1657,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4613": { "frame": {"x":1675,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4614": { "frame": {"x":1693,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4615": { "frame": {"x":1711,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4616": { "frame": {"x":1729,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4617": { "frame": {"x":1747,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4618": { "frame": {"x":1765,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4619": { "frame": {"x":1783,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4620": { "frame": {"x":1801,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4621": { "frame": {"x":1819,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4622": { "frame": {"x":1837,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4623": { "frame": {"x":1855,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4624": { "frame": {"x":1873,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4625": { "frame": {"x":1891,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4626": { "frame": {"x":1909,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4627": { "frame": {"x":1927,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4628": { "frame": {"x":1945,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4629": { "frame": {"x":1963,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4630": { "frame": {"x":1981,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4631": { "frame": {"x":1999,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4632": { "frame": {"x":2017,"y":721,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4633": { "frame": {"x":1,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4634": { "frame": {"x":19,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4635": { "frame": {"x":37,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4636": { "frame": {"x":55,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4637": { "frame": {"x":73,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4638": { "frame": {"x":91,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4639": { "frame": {"x":109,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4640": { "frame": {"x":127,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4641": { "frame": {"x":145,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4642": { "frame": {"x":163,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4643": { "frame": {"x":181,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4644": { "frame": {"x":199,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4645": { "frame": {"x":217,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4646": { "frame": {"x":235,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4647": { "frame": {"x":253,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4648": { "frame": {"x":271,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4649": { "frame": {"x":289,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4650": { "frame": {"x":307,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4651": { "frame": {"x":325,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4652": { "frame": {"x":343,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4653": { "frame": {"x":361,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4654": { "frame": {"x":379,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4655": { "frame": {"x":397,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4656": { "frame": {"x":415,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4657": { "frame": {"x":433,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4658": { "frame": {"x":451,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4659": { "frame": {"x":469,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4660": { "frame": {"x":487,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4661": { "frame": {"x":505,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4662": { "frame": {"x":523,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4663": { "frame": {"x":541,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4664": { "frame": {"x":559,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4665": { "frame": {"x":577,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4666": { "frame": {"x":595,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4667": { "frame": {"x":613,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4668": { "frame": {"x":631,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4669": { "frame": {"x":649,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4670": { "frame": {"x":667,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4671": { "frame": {"x":685,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4672": { "frame": {"x":703,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4673": { "frame": {"x":721,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4674": { "frame": {"x":739,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4675": { "frame": {"x":757,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4676": { "frame": {"x":775,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4677": { "frame": {"x":793,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4678": { "frame": {"x":811,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4679": { "frame": {"x":829,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4680": { "frame": {"x":847,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4681": { "frame": {"x":865,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4682": { "frame": {"x":883,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4683": { "frame": {"x":901,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4684": { "frame": {"x":919,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4685": { "frame": {"x":937,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4686": { "frame": {"x":955,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4687": { "frame": {"x":973,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4688": { "frame": {"x":991,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4689": { "frame": {"x":1009,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4690": { "frame": {"x":1027,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4691": { "frame": {"x":1045,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4692": { "frame": {"x":1063,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4693": { "frame": {"x":1081,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4694": { "frame": {"x":1099,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4695": { "frame": {"x":1117,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4696": { "frame": {"x":1135,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4697": { "frame": {"x":1153,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4698": { "frame": {"x":1171,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4699": { "frame": {"x":1189,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4700": { "frame": {"x":1207,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4701": { "frame": {"x":1225,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4702": { "frame": {"x":1243,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4703": { "frame": {"x":1261,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4704": { "frame": {"x":1279,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4705": { "frame": {"x":1297,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4706": { "frame": {"x":1315,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4707": { "frame": {"x":1333,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4708": { "frame": {"x":1351,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4709": { "frame": {"x":1369,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4710": { "frame": {"x":1387,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4711": { "frame": {"x":1405,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4712": { "frame": {"x":1423,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4713": { "frame": {"x":1441,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4714": { "frame": {"x":1459,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4715": { "frame": {"x":1477,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4716": { "frame": {"x":1495,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4717": { "frame": {"x":1513,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4718": { "frame": {"x":1531,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4719": { "frame": {"x":1549,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4720": { "frame": {"x":1567,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4721": { "frame": {"x":1585,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4722": { "frame": {"x":1603,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4723": { "frame": {"x":1621,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4724": { "frame": {"x":1639,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4725": { "frame": {"x":1657,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4726": { "frame": {"x":1675,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4727": { "frame": {"x":1693,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4728": { "frame": {"x":1711,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4729": { "frame": {"x":1729,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4730": { "frame": {"x":1747,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4731": { "frame": {"x":1765,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4732": { "frame": {"x":1783,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4733": { "frame": {"x":1801,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4734": { "frame": {"x":1819,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4735": { "frame": {"x":1837,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4736": { "frame": {"x":1855,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4737": { "frame": {"x":1873,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4738": { "frame": {"x":1891,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4739": { "frame": {"x":1909,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4740": { "frame": {"x":1927,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4741": { "frame": {"x":1945,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4742": { "frame": {"x":1963,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4743": { "frame": {"x":1981,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4744": { "frame": {"x":1999,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4745": { "frame": {"x":2017,"y":739,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4746": { "frame": {"x":1,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4747": { "frame": {"x":19,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4748": { "frame": {"x":37,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4749": { "frame": {"x":55,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4750": { "frame": {"x":73,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4751": { "frame": {"x":91,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4752": { "frame": {"x":109,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4753": { "frame": {"x":127,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4754": { "frame": {"x":145,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4755": { "frame": {"x":163,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4756": { "frame": {"x":181,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4757": { "frame": {"x":199,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4758": { "frame": {"x":217,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4759": { "frame": {"x":235,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4760": { "frame": {"x":253,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4761": { "frame": {"x":271,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4762": { "frame": {"x":289,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4763": { "frame": {"x":307,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4764": { "frame": {"x":325,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4765": { "frame": {"x":343,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4766": { "frame": {"x":361,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4767": { "frame": {"x":379,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4768": { "frame": {"x":397,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4769": { "frame": {"x":415,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4770": { "frame": {"x":433,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4771": { "frame": {"x":451,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4772": { "frame": {"x":469,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4773": { "frame": {"x":487,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4774": { "frame": {"x":505,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4775": { "frame": {"x":523,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4776": { "frame": {"x":541,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4777": { "frame": {"x":559,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4778": { "frame": {"x":577,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4779": { "frame": {"x":595,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4780": { "frame": {"x":613,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4781": { "frame": {"x":631,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4782": { "frame": {"x":649,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4783": { "frame": {"x":667,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4784": { "frame": {"x":685,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4785": { "frame": {"x":703,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4786": { "frame": {"x":721,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4787": { "frame": {"x":739,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4788": { "frame": {"x":757,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4789": { "frame": {"x":775,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4790": { "frame": {"x":793,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4791": { "frame": {"x":811,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4792": { "frame": {"x":829,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4793": { "frame": {"x":847,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4794": { "frame": {"x":865,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4795": { "frame": {"x":883,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4796": { "frame": {"x":901,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4797": { "frame": {"x":919,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4798": { "frame": {"x":937,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4799": { "frame": {"x":955,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4800": { "frame": {"x":973,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4801": { "frame": {"x":991,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4802": { "frame": {"x":1009,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4803": { "frame": {"x":1027,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4804": { "frame": {"x":1045,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4805": { "frame": {"x":1063,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4806": { "frame": {"x":1081,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4807": { "frame": {"x":1099,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4808": { "frame": {"x":1117,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4809": { "frame": {"x":1135,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4810": { "frame": {"x":1153,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4811": { "frame": {"x":1171,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4812": { "frame": {"x":1189,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4813": { "frame": {"x":1207,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4814": { "frame": {"x":1225,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4815": { "frame": {"x":1243,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4816": { "frame": {"x":1261,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4817": { "frame": {"x":1279,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4818": { "frame": {"x":1297,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4819": { "frame": {"x":1315,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4820": { "frame": {"x":1333,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4821": { "frame": {"x":1351,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4822": { "frame": {"x":1369,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4823": { "frame": {"x":1387,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4824": { "frame": {"x":1405,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4825": { "frame": {"x":1423,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4826": { "frame": {"x":1441,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4827": { "frame": {"x":1459,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4828": { "frame": {"x":1477,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4829": { "frame": {"x":1495,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4830": { "frame": {"x":1513,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4831": { "frame": {"x":1531,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4832": { "frame": {"x":1549,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4833": { "frame": {"x":1567,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4834": { "frame": {"x":1585,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4835": { "frame": {"x":1603,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4836": { "frame": {"x":1621,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4837": { "frame": {"x":1639,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4838": { "frame": {"x":1657,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4839": { "frame": {"x":1675,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4840": { "frame": {"x":1693,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4841": { "frame": {"x":1711,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4842": { "frame": {"x":1729,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4843": { "frame": {"x":1747,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4844": { "frame": {"x":1765,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4845": { "frame": {"x":1783,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4846": { "frame": {"x":1801,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4847": { "frame": {"x":1819,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4848": { "frame": {"x":1837,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4849": { "frame": {"x":1855,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4850": { "frame": {"x":1873,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4851": { "frame": {"x":1891,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4852": { "frame": {"x":1909,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4853": { "frame": {"x":1927,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4854": { "frame": {"x":1945,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4855": { "frame": {"x":1963,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4856": { "frame": {"x":1981,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4857": { "frame": {"x":1999,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4858": { "frame": {"x":2017,"y":757,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4859": { "frame": {"x":1,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4860": { "frame": {"x":19,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4861": { "frame": {"x":37,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4862": { "frame": {"x":55,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4863": { "frame": {"x":73,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4864": { "frame": {"x":91,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4865": { "frame": {"x":109,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4866": { "frame": {"x":127,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4867": { "frame": {"x":145,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4868": { "frame": {"x":163,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4869": { "frame": {"x":181,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4870": { "frame": {"x":199,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4871": { "frame": {"x":217,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4872": { "frame": {"x":235,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4873": { "frame": {"x":253,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4874": { "frame": {"x":271,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4875": { "frame": {"x":289,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4876": { "frame": {"x":307,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4877": { "frame": {"x":325,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4878": { "frame": {"x":343,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4879": { "frame": {"x":361,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4880": { "frame": {"x":379,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4881": { "frame": {"x":397,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4882": { "frame": {"x":415,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4883": { "frame": {"x":433,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4884": { "frame": {"x":451,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4885": { "frame": {"x":469,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4886": { "frame": {"x":487,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4887": { "frame": {"x":505,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4888": { "frame": {"x":523,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4889": { "frame": {"x":541,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4890": { "frame": {"x":559,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4891": { "frame": {"x":577,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4892": { "frame": {"x":595,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4893": { "frame": {"x":613,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4894": { "frame": {"x":631,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4895": { "frame": {"x":649,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4896": { "frame": {"x":667,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4897": { "frame": {"x":685,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4898": { "frame": {"x":703,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4899": { "frame": {"x":721,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4900": { "frame": {"x":739,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4901": { "frame": {"x":757,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4902": { "frame": {"x":775,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4903": { "frame": {"x":793,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4904": { "frame": {"x":811,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4905": { "frame": {"x":829,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4906": { "frame": {"x":847,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4907": { "frame": {"x":865,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4908": { "frame": {"x":883,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4909": { "frame": {"x":901,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4910": { "frame": {"x":919,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4911": { "frame": {"x":937,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4912": { "frame": {"x":955,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4913": { "frame": {"x":973,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4914": { "frame": {"x":991,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4915": { "frame": {"x":1009,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4916": { "frame": {"x":1027,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4917": { "frame": {"x":1045,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4918": { "frame": {"x":1063,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4919": { "frame": {"x":1081,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4920": { "frame": {"x":1099,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4921": { "frame": {"x":1117,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4922": { "frame": {"x":1135,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4923": { "frame": {"x":1153,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4924": { "frame": {"x":1171,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4925": { "frame": {"x":1189,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4926": { "frame": {"x":1207,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4927": { "frame": {"x":1225,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4928": { "frame": {"x":1243,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4929": { "frame": {"x":1261,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4930": { "frame": {"x":1279,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4931": { "frame": {"x":1297,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4932": { "frame": {"x":1315,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4933": { "frame": {"x":1333,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4934": { "frame": {"x":1351,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4935": { "frame": {"x":1369,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4936": { "frame": {"x":1387,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4937": { "frame": {"x":1405,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4938": { "frame": {"x":1423,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4939": { "frame": {"x":1441,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4940": { "frame": {"x":1459,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4941": { "frame": {"x":1477,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4942": { "frame": {"x":1495,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4943": { "frame": {"x":1513,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4944": { "frame": {"x":1531,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4945": { "frame": {"x":1549,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4946": { "frame": {"x":1567,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4947": { "frame": {"x":1585,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4948": { "frame": {"x":1603,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4949": { "frame": {"x":1621,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4950": { "frame": {"x":1639,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4951": { "frame": {"x":1657,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4952": { "frame": {"x":1675,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4953": { "frame": {"x":1693,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4954": { "frame": {"x":1711,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4955": { "frame": {"x":1729,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4956": { "frame": {"x":1747,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4957": { "frame": {"x":1765,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4958": { "frame": {"x":1783,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4959": { "frame": {"x":1801,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4960": { "frame": {"x":1819,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4961": { "frame": {"x":1837,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4962": { "frame": {"x":1855,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4963": { "frame": {"x":1873,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4964": { "frame": {"x":1891,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4965": { "frame": {"x":1909,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4966": { "frame": {"x":1927,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4967": { "frame": {"x":1945,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4968": { "frame": {"x":1963,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4969": { "frame": {"x":1981,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4970": { "frame": {"x":1999,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4971": { "frame": {"x":2017,"y":775,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4972": { "frame": {"x":1,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4973": { "frame": {"x":19,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4974": { "frame": {"x":37,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4975": { "frame": {"x":55,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4976": { "frame": {"x":73,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4977": { "frame": {"x":91,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4978": { "frame": {"x":109,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4979": { "frame": {"x":127,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4980": { "frame": {"x":145,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4981": { "frame": {"x":163,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4982": { "frame": {"x":181,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4983": { "frame": {"x":199,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4984": { "frame": {"x":217,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4985": { "frame": {"x":235,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4986": { "frame": {"x":253,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4987": { "frame": {"x":271,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4988": { "frame": {"x":289,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4989": { "frame": {"x":307,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4990": { "frame": {"x":325,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4991": { "frame": {"x":343,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4992": { "frame": {"x":361,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4993": { "frame": {"x":379,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4994": { "frame": {"x":397,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4995": { "frame": {"x":415,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4996": { "frame": {"x":433,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4997": { "frame": {"x":451,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4998": { "frame": {"x":469,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "4999": { "frame": {"x":487,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5000": { "frame": {"x":505,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5001": { "frame": {"x":523,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5002": { "frame": {"x":541,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5003": { "frame": {"x":559,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5004": { "frame": {"x":577,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5005": { "frame": {"x":595,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5006": { "frame": {"x":613,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5007": { "frame": {"x":631,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5008": { "frame": {"x":649,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5009": { "frame": {"x":667,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5010": { "frame": {"x":685,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5011": { "frame": {"x":703,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5012": { "frame": {"x":721,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5013": { "frame": {"x":739,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5014": { "frame": {"x":757,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5015": { "frame": {"x":775,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5016": { "frame": {"x":793,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5017": { "frame": {"x":811,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5018": { "frame": {"x":829,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5019": { "frame": {"x":847,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5020": { "frame": {"x":865,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5021": { "frame": {"x":883,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5022": { "frame": {"x":901,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5023": { "frame": {"x":919,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5024": { "frame": {"x":937,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5025": { "frame": {"x":955,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5026": { "frame": {"x":973,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5027": { "frame": {"x":991,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5028": { "frame": {"x":1009,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5029": { "frame": {"x":1027,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5030": { "frame": {"x":1045,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5031": { "frame": {"x":1063,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5032": { "frame": {"x":1081,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5033": { "frame": {"x":1099,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5034": { "frame": {"x":1117,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5035": { "frame": {"x":1135,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5036": { "frame": {"x":1153,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5037": { "frame": {"x":1171,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5038": { "frame": {"x":1189,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5039": { "frame": {"x":1207,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5040": { "frame": {"x":1225,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5041": { "frame": {"x":1243,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5042": { "frame": {"x":1261,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5043": { "frame": {"x":1279,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5044": { "frame": {"x":1297,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5045": { "frame": {"x":1315,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5046": { "frame": {"x":1333,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5047": { "frame": {"x":1351,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5048": { "frame": {"x":1369,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5049": { "frame": {"x":1387,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5050": { "frame": {"x":1405,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5051": { "frame": {"x":1423,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5052": { "frame": {"x":1441,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5053": { "frame": {"x":1459,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5054": { "frame": {"x":1477,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5055": { "frame": {"x":1495,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5056": { "frame": {"x":1513,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5057": { "frame": {"x":1531,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5058": { "frame": {"x":1549,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5059": { "frame": {"x":1567,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5060": { "frame": {"x":1585,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5061": { "frame": {"x":1603,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5062": { "frame": {"x":1621,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5063": { "frame": {"x":1639,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5064": { "frame": {"x":1657,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5065": { "frame": {"x":1675,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5066": { "frame": {"x":1693,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5067": { "frame": {"x":1711,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5068": { "frame": {"x":1729,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5069": { "frame": {"x":1747,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5070": { "frame": {"x":1765,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5071": { "frame": {"x":1783,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5072": { "frame": {"x":1801,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5073": { "frame": {"x":1819,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5074": { "frame": {"x":1837,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5075": { "frame": {"x":1855,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5076": { "frame": {"x":1873,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5077": { "frame": {"x":1891,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5078": { "frame": {"x":1909,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5079": { "frame": {"x":1927,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5080": { "frame": {"x":1945,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5081": { "frame": {"x":1963,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5082": { "frame": {"x":1981,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5083": { "frame": {"x":1999,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5084": { "frame": {"x":2017,"y":793,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5085": { "frame": {"x":1,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5086": { "frame": {"x":19,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5087": { "frame": {"x":37,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5088": { "frame": {"x":55,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5089": { "frame": {"x":73,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5090": { "frame": {"x":91,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5091": { "frame": {"x":109,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5092": { "frame": {"x":127,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5093": { "frame": {"x":145,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5094": { "frame": {"x":163,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5095": { "frame": {"x":181,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5096": { "frame": {"x":199,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5097": { "frame": {"x":217,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5098": { "frame": {"x":235,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5099": { "frame": {"x":253,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5100": { "frame": {"x":271,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5101": { "frame": {"x":289,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5102": { "frame": {"x":307,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5103": { "frame": {"x":325,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5104": { "frame": {"x":343,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5105": { "frame": {"x":361,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5106": { "frame": {"x":379,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5107": { "frame": {"x":397,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5108": { "frame": {"x":415,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5109": { "frame": {"x":433,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5110": { "frame": {"x":451,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5111": { "frame": {"x":469,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5112": { "frame": {"x":487,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5113": { "frame": {"x":505,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5114": { "frame": {"x":523,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5115": { "frame": {"x":541,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5116": { "frame": {"x":559,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5117": { "frame": {"x":577,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5118": { "frame": {"x":595,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5119": { "frame": {"x":613,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5120": { "frame": {"x":631,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5121": { "frame": {"x":649,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5122": { "frame": {"x":667,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5123": { "frame": {"x":685,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5124": { "frame": {"x":703,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5125": { "frame": {"x":721,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5126": { "frame": {"x":739,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5127": { "frame": {"x":757,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5128": { "frame": {"x":775,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5129": { "frame": {"x":793,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5130": { "frame": {"x":811,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5131": { "frame": {"x":829,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5132": { "frame": {"x":847,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5133": { "frame": {"x":865,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5134": { "frame": {"x":883,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5135": { "frame": {"x":901,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5136": { "frame": {"x":919,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5137": { "frame": {"x":937,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5138": { "frame": {"x":955,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5139": { "frame": {"x":973,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5140": { "frame": {"x":991,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5141": { "frame": {"x":1009,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5142": { "frame": {"x":1027,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5143": { "frame": {"x":1045,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5144": { "frame": {"x":1063,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5145": { "frame": {"x":1081,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5146": { "frame": {"x":1099,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5147": { "frame": {"x":1117,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5148": { "frame": {"x":1135,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5149": { "frame": {"x":1153,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5150": { "frame": {"x":1171,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5151": { "frame": {"x":1189,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5152": { "frame": {"x":1207,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5153": { "frame": {"x":1225,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5154": { "frame": {"x":1243,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5155": { "frame": {"x":1261,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5156": { "frame": {"x":1279,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5157": { "frame": {"x":1297,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5158": { "frame": {"x":1315,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5159": { "frame": {"x":1333,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5160": { "frame": {"x":1351,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5161": { "frame": {"x":1369,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5162": { "frame": {"x":1387,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5163": { "frame": {"x":1405,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5164": { "frame": {"x":1423,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5165": { "frame": {"x":1441,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5166": { "frame": {"x":1459,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5167": { "frame": {"x":1477,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5168": { "frame": {"x":1495,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5169": { "frame": {"x":1513,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5170": { "frame": {"x":1531,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5171": { "frame": {"x":1549,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5172": { "frame": {"x":1567,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5173": { "frame": {"x":1585,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5174": { "frame": {"x":1603,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5175": { "frame": {"x":1621,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5176": { "frame": {"x":1639,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5177": { "frame": {"x":1657,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5178": { "frame": {"x":1675,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5179": { "frame": {"x":1693,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5180": { "frame": {"x":1711,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5181": { "frame": {"x":1729,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5182": { "frame": {"x":1747,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5183": { "frame": {"x":1765,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5184": { "frame": {"x":1783,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5185": { "frame": {"x":1801,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5186": { "frame": {"x":1819,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5187": { "frame": {"x":1837,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5188": { "frame": {"x":1855,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5189": { "frame": {"x":1873,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5190": { "frame": {"x":1891,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5191": { "frame": {"x":1909,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5192": { "frame": {"x":1927,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5193": { "frame": {"x":1945,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5194": { "frame": {"x":1963,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5195": { "frame": {"x":1981,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5196": { "frame": {"x":1999,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5197": { "frame": {"x":2017,"y":811,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5198": { "frame": {"x":1,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5199": { "frame": {"x":19,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5200": { "frame": {"x":37,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5201": { "frame": {"x":55,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5202": { "frame": {"x":73,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5203": { "frame": {"x":91,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5204": { "frame": {"x":109,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5205": { "frame": {"x":127,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5206": { "frame": {"x":145,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5207": { "frame": {"x":163,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5208": { "frame": {"x":181,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5209": { "frame": {"x":199,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5210": { "frame": {"x":217,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5211": { "frame": {"x":235,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5212": { "frame": {"x":253,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5213": { "frame": {"x":271,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5214": { "frame": {"x":289,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5215": { "frame": {"x":307,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5216": { "frame": {"x":325,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5217": { "frame": {"x":343,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5218": { "frame": {"x":361,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5219": { "frame": {"x":379,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5220": { "frame": {"x":397,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5221": { "frame": {"x":415,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5222": { "frame": {"x":433,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5223": { "frame": {"x":451,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5224": { "frame": {"x":469,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5225": { "frame": {"x":487,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5226": { "frame": {"x":505,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5227": { "frame": {"x":523,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5228": { "frame": {"x":541,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5229": { "frame": {"x":559,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5230": { "frame": {"x":577,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5231": { "frame": {"x":595,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5232": { "frame": {"x":613,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5233": { "frame": {"x":631,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5234": { "frame": {"x":649,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5235": { "frame": {"x":667,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5236": { "frame": {"x":685,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5237": { "frame": {"x":703,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5238": { "frame": {"x":721,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5239": { "frame": {"x":739,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5240": { "frame": {"x":757,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5241": { "frame": {"x":775,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5242": { "frame": {"x":793,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5243": { "frame": {"x":811,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5244": { "frame": {"x":829,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5245": { "frame": {"x":847,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5246": { "frame": {"x":865,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5247": { "frame": {"x":883,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5248": { "frame": {"x":901,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5249": { "frame": {"x":919,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5250": { "frame": {"x":937,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5251": { "frame": {"x":955,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5252": { "frame": {"x":973,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5253": { "frame": {"x":991,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5254": { "frame": {"x":1009,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5255": { "frame": {"x":1027,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5256": { "frame": {"x":1045,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5257": { "frame": {"x":1063,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5258": { "frame": {"x":1081,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5259": { "frame": {"x":1099,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5260": { "frame": {"x":1117,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5261": { "frame": {"x":1135,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5262": { "frame": {"x":1153,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5263": { "frame": {"x":1171,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5264": { "frame": {"x":1189,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5265": { "frame": {"x":1207,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5266": { "frame": {"x":1225,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5267": { "frame": {"x":1243,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5268": { "frame": {"x":1261,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5269": { "frame": {"x":1279,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5270": { "frame": {"x":1297,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5271": { "frame": {"x":1315,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5272": { "frame": {"x":1333,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5273": { "frame": {"x":1351,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5274": { "frame": {"x":1369,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5275": { "frame": {"x":1387,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5276": { "frame": {"x":1405,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5277": { "frame": {"x":1423,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5278": { "frame": {"x":1441,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5279": { "frame": {"x":1459,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5280": { "frame": {"x":1477,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5281": { "frame": {"x":1495,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5282": { "frame": {"x":1513,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5283": { "frame": {"x":1531,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5284": { "frame": {"x":1549,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5285": { "frame": {"x":1567,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5286": { "frame": {"x":1585,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5287": { "frame": {"x":1603,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5288": { "frame": {"x":1621,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5289": { "frame": {"x":1639,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5290": { "frame": {"x":1657,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5291": { "frame": {"x":1675,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5292": { "frame": {"x":1693,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5293": { "frame": {"x":1711,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5294": { "frame": {"x":1729,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5295": { "frame": {"x":1747,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5296": { "frame": {"x":1765,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5297": { "frame": {"x":1783,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5298": { "frame": {"x":1801,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5299": { "frame": {"x":1819,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5300": { "frame": {"x":1837,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5301": { "frame": {"x":1855,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5302": { "frame": {"x":1873,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5303": { "frame": {"x":1891,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5304": { "frame": {"x":1909,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5305": { "frame": {"x":1927,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5306": { "frame": {"x":1945,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5307": { "frame": {"x":1963,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5308": { "frame": {"x":1981,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5309": { "frame": {"x":1999,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5310": { "frame": {"x":2017,"y":829,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5311": { "frame": {"x":1,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5312": { "frame": {"x":19,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5313": { "frame": {"x":37,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5314": { "frame": {"x":55,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5315": { "frame": {"x":73,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5316": { "frame": {"x":91,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5317": { "frame": {"x":109,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5318": { "frame": {"x":127,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5319": { "frame": {"x":145,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5320": { "frame": {"x":163,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5321": { "frame": {"x":181,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5322": { "frame": {"x":199,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5323": { "frame": {"x":217,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5324": { "frame": {"x":235,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5325": { "frame": {"x":253,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5326": { "frame": {"x":271,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5327": { "frame": {"x":289,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5328": { "frame": {"x":307,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5329": { "frame": {"x":325,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5330": { "frame": {"x":343,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5331": { "frame": {"x":361,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5332": { "frame": {"x":379,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5333": { "frame": {"x":397,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5334": { "frame": {"x":415,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5335": { "frame": {"x":433,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5336": { "frame": {"x":451,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5337": { "frame": {"x":469,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5338": { "frame": {"x":487,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5339": { "frame": {"x":505,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5340": { "frame": {"x":523,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5341": { "frame": {"x":541,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5342": { "frame": {"x":559,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5343": { "frame": {"x":577,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5344": { "frame": {"x":595,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5345": { "frame": {"x":613,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5346": { "frame": {"x":631,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5347": { "frame": {"x":649,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5348": { "frame": {"x":667,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5349": { "frame": {"x":685,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5350": { "frame": {"x":703,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5351": { "frame": {"x":721,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5352": { "frame": {"x":739,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5353": { "frame": {"x":757,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5354": { "frame": {"x":775,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5355": { "frame": {"x":793,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5356": { "frame": {"x":811,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5357": { "frame": {"x":829,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5358": { "frame": {"x":847,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5359": { "frame": {"x":865,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5360": { "frame": {"x":883,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5361": { "frame": {"x":901,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5362": { "frame": {"x":919,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5363": { "frame": {"x":937,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5364": { "frame": {"x":955,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5365": { "frame": {"x":973,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5366": { "frame": {"x":991,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5367": { "frame": {"x":1009,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5368": { "frame": {"x":1027,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5369": { "frame": {"x":1045,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5370": { "frame": {"x":1063,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5371": { "frame": {"x":1081,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5372": { "frame": {"x":1099,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5373": { "frame": {"x":1117,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5374": { "frame": {"x":1135,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5375": { "frame": {"x":1153,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5376": { "frame": {"x":1171,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5377": { "frame": {"x":1189,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5378": { "frame": {"x":1207,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5379": { "frame": {"x":1225,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5380": { "frame": {"x":1243,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5381": { "frame": {"x":1261,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5382": { "frame": {"x":1279,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5383": { "frame": {"x":1297,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5384": { "frame": {"x":1315,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5385": { "frame": {"x":1333,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5386": { "frame": {"x":1351,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5387": { "frame": {"x":1369,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5388": { "frame": {"x":1387,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5389": { "frame": {"x":1405,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5390": { "frame": {"x":1423,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5391": { "frame": {"x":1441,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5392": { "frame": {"x":1459,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5393": { "frame": {"x":1477,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5394": { "frame": {"x":1495,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5395": { "frame": {"x":1513,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5396": { "frame": {"x":1531,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5397": { "frame": {"x":1549,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5398": { "frame": {"x":1567,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5399": { "frame": {"x":1585,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5400": { "frame": {"x":1603,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5401": { "frame": {"x":1621,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5402": { "frame": {"x":1639,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5403": { "frame": {"x":1657,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5404": { "frame": {"x":1675,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5405": { "frame": {"x":1693,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5406": { "frame": {"x":1711,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5407": { "frame": {"x":1729,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5408": { "frame": {"x":1747,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5409": { "frame": {"x":1765,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5410": { "frame": {"x":1783,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5411": { "frame": {"x":1801,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5412": { "frame": {"x":1819,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5413": { "frame": {"x":1837,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5414": { "frame": {"x":1855,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5415": { "frame": {"x":1873,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5416": { "frame": {"x":1891,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5417": { "frame": {"x":1909,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5418": { "frame": {"x":1927,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5419": { "frame": {"x":1945,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5420": { "frame": {"x":1963,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5421": { "frame": {"x":1981,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5422": { "frame": {"x":1999,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5423": { "frame": {"x":2017,"y":847,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5424": { "frame": {"x":1,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5425": { "frame": {"x":19,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5426": { "frame": {"x":37,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5427": { "frame": {"x":55,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5428": { "frame": {"x":73,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5429": { "frame": {"x":91,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5430": { "frame": {"x":109,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5431": { "frame": {"x":127,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5432": { "frame": {"x":145,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5433": { "frame": {"x":163,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5434": { "frame": {"x":181,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5435": { "frame": {"x":199,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5436": { "frame": {"x":217,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5437": { "frame": {"x":235,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5438": { "frame": {"x":253,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5439": { "frame": {"x":271,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5440": { "frame": {"x":289,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5441": { "frame": {"x":307,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5442": { "frame": {"x":325,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5443": { "frame": {"x":343,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5444": { "frame": {"x":361,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5445": { "frame": {"x":379,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5446": { "frame": {"x":397,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5447": { "frame": {"x":415,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5448": { "frame": {"x":433,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5449": { "frame": {"x":451,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5450": { "frame": {"x":469,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5451": { "frame": {"x":487,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5452": { "frame": {"x":505,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5453": { "frame": {"x":523,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5454": { "frame": {"x":541,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5455": { "frame": {"x":559,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5456": { "frame": {"x":577,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5457": { "frame": {"x":595,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5458": { "frame": {"x":613,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5459": { "frame": {"x":631,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5460": { "frame": {"x":649,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5461": { "frame": {"x":667,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5462": { "frame": {"x":685,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5463": { "frame": {"x":703,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5464": { "frame": {"x":721,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5465": { "frame": {"x":739,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5466": { "frame": {"x":757,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5467": { "frame": {"x":775,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5468": { "frame": {"x":793,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5469": { "frame": {"x":811,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5470": { "frame": {"x":829,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5471": { "frame": {"x":847,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5472": { "frame": {"x":865,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5473": { "frame": {"x":883,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5474": { "frame": {"x":901,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5475": { "frame": {"x":919,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5476": { "frame": {"x":937,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5477": { "frame": {"x":955,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5478": { "frame": {"x":973,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5479": { "frame": {"x":991,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5480": { "frame": {"x":1009,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5481": { "frame": {"x":1027,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5482": { "frame": {"x":1045,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5483": { "frame": {"x":1063,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5484": { "frame": {"x":1081,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5485": { "frame": {"x":1099,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5486": { "frame": {"x":1117,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5487": { "frame": {"x":1135,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5488": { "frame": {"x":1153,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5489": { "frame": {"x":1171,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5490": { "frame": {"x":1189,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5491": { "frame": {"x":1207,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5492": { "frame": {"x":1225,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5493": { "frame": {"x":1243,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5494": { "frame": {"x":1261,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5495": { "frame": {"x":1279,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5496": { "frame": {"x":1297,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5497": { "frame": {"x":1315,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5498": { "frame": {"x":1333,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5499": { "frame": {"x":1351,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5500": { "frame": {"x":1369,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5501": { "frame": {"x":1387,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5502": { "frame": {"x":1405,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5503": { "frame": {"x":1423,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5504": { "frame": {"x":1441,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5505": { "frame": {"x":1459,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5506": { "frame": {"x":1477,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5507": { "frame": {"x":1495,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5508": { "frame": {"x":1513,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5509": { "frame": {"x":1531,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5510": { "frame": {"x":1549,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5511": { "frame": {"x":1567,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5512": { "frame": {"x":1585,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5513": { "frame": {"x":1603,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5514": { "frame": {"x":1621,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5515": { "frame": {"x":1639,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5516": { "frame": {"x":1657,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5517": { "frame": {"x":1675,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5518": { "frame": {"x":1693,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5519": { "frame": {"x":1711,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5520": { "frame": {"x":1729,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5521": { "frame": {"x":1747,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5522": { "frame": {"x":1765,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5523": { "frame": {"x":1783,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5524": { "frame": {"x":1801,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5525": { "frame": {"x":1819,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5526": { "frame": {"x":1837,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5527": { "frame": {"x":1855,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5528": { "frame": {"x":1873,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5529": { "frame": {"x":1891,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5530": { "frame": {"x":1909,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5531": { "frame": {"x":1927,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5532": { "frame": {"x":1945,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5533": { "frame": {"x":1963,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5534": { "frame": {"x":1981,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5535": { "frame": {"x":1999,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5536": { "frame": {"x":2017,"y":865,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5537": { "frame": {"x":1,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5538": { "frame": {"x":19,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5539": { "frame": {"x":37,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5540": { "frame": {"x":55,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5541": { "frame": {"x":73,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5542": { "frame": {"x":91,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5543": { "frame": {"x":109,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5544": { "frame": {"x":127,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5545": { "frame": {"x":145,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5546": { "frame": {"x":163,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5547": { "frame": {"x":181,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5548": { "frame": {"x":199,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5549": { "frame": {"x":217,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5550": { "frame": {"x":235,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5551": { "frame": {"x":253,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5552": { "frame": {"x":271,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5553": { "frame": {"x":289,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5554": { "frame": {"x":307,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5555": { "frame": {"x":325,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5556": { "frame": {"x":343,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5557": { "frame": {"x":361,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5558": { "frame": {"x":379,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5559": { "frame": {"x":397,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5560": { "frame": {"x":415,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5561": { "frame": {"x":433,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5562": { "frame": {"x":451,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5563": { "frame": {"x":469,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5564": { "frame": {"x":487,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5565": { "frame": {"x":505,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5566": { "frame": {"x":523,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5567": { "frame": {"x":541,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5568": { "frame": {"x":559,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5569": { "frame": {"x":577,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5570": { "frame": {"x":595,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5571": { "frame": {"x":613,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5572": { "frame": {"x":631,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5573": { "frame": {"x":649,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5574": { "frame": {"x":667,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5575": { "frame": {"x":685,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5576": { "frame": {"x":703,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5577": { "frame": {"x":721,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5578": { "frame": {"x":739,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5579": { "frame": {"x":757,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5580": { "frame": {"x":775,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5581": { "frame": {"x":793,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5582": { "frame": {"x":811,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5583": { "frame": {"x":829,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5584": { "frame": {"x":847,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5585": { "frame": {"x":865,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5586": { "frame": {"x":883,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5587": { "frame": {"x":901,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5588": { "frame": {"x":919,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5589": { "frame": {"x":937,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5590": { "frame": {"x":955,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5591": { "frame": {"x":973,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5592": { "frame": {"x":991,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5593": { "frame": {"x":1009,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5594": { "frame": {"x":1027,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5595": { "frame": {"x":1045,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5596": { "frame": {"x":1063,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5597": { "frame": {"x":1081,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5598": { "frame": {"x":1099,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5599": { "frame": {"x":1117,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5600": { "frame": {"x":1135,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5601": { "frame": {"x":1153,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5602": { "frame": {"x":1171,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5603": { "frame": {"x":1189,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5604": { "frame": {"x":1207,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5605": { "frame": {"x":1225,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5606": { "frame": {"x":1243,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5607": { "frame": {"x":1261,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5608": { "frame": {"x":1279,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5609": { "frame": {"x":1297,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5610": { "frame": {"x":1315,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5611": { "frame": {"x":1333,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5612": { "frame": {"x":1351,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5613": { "frame": {"x":1369,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5614": { "frame": {"x":1387,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5615": { "frame": {"x":1405,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5616": { "frame": {"x":1423,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5617": { "frame": {"x":1441,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5618": { "frame": {"x":1459,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5619": { "frame": {"x":1477,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5620": { "frame": {"x":1495,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5621": { "frame": {"x":1513,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5622": { "frame": {"x":1531,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5623": { "frame": {"x":1549,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5624": { "frame": {"x":1567,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5625": { "frame": {"x":1585,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5626": { "frame": {"x":1603,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5627": { "frame": {"x":1621,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5628": { "frame": {"x":1639,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5629": { "frame": {"x":1657,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5630": { "frame": {"x":1675,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5631": { "frame": {"x":1693,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5632": { "frame": {"x":1711,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5633": { "frame": {"x":1729,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5634": { "frame": {"x":1747,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5635": { "frame": {"x":1765,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5636": { "frame": {"x":1783,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5637": { "frame": {"x":1801,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5638": { "frame": {"x":1819,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5639": { "frame": {"x":1837,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5640": { "frame": {"x":1855,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5641": { "frame": {"x":1873,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5642": { "frame": {"x":1891,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5643": { "frame": {"x":1909,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5644": { "frame": {"x":1927,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5645": { "frame": {"x":1945,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5646": { "frame": {"x":1963,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5647": { "frame": {"x":1981,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5648": { "frame": {"x":1999,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5649": { "frame": {"x":2017,"y":883,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5650": { "frame": {"x":1,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5651": { "frame": {"x":19,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5652": { "frame": {"x":37,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5653": { "frame": {"x":55,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5654": { "frame": {"x":73,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5655": { "frame": {"x":91,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5656": { "frame": {"x":109,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5657": { "frame": {"x":127,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5658": { "frame": {"x":145,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5659": { "frame": {"x":163,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5660": { "frame": {"x":181,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5661": { "frame": {"x":199,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5662": { "frame": {"x":217,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5663": { "frame": {"x":235,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5664": { "frame": {"x":253,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5665": { "frame": {"x":271,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5666": { "frame": {"x":289,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5667": { "frame": {"x":307,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5668": { "frame": {"x":325,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5669": { "frame": {"x":343,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5670": { "frame": {"x":361,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5671": { "frame": {"x":379,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5672": { "frame": {"x":397,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5673": { "frame": {"x":415,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5674": { "frame": {"x":433,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5675": { "frame": {"x":451,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5676": { "frame": {"x":469,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5677": { "frame": {"x":487,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5678": { "frame": {"x":505,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5679": { "frame": {"x":523,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5680": { "frame": {"x":541,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5681": { "frame": {"x":559,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5682": { "frame": {"x":577,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5683": { "frame": {"x":595,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5684": { "frame": {"x":613,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5685": { "frame": {"x":631,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5686": { "frame": {"x":649,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5687": { "frame": {"x":667,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5688": { "frame": {"x":685,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5689": { "frame": {"x":703,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5690": { "frame": {"x":721,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5691": { "frame": {"x":739,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5692": { "frame": {"x":757,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5693": { "frame": {"x":775,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5694": { "frame": {"x":793,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5695": { "frame": {"x":811,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5696": { "frame": {"x":829,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5697": { "frame": {"x":847,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5698": { "frame": {"x":865,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5699": { "frame": {"x":883,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5700": { "frame": {"x":901,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5701": { "frame": {"x":919,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5702": { "frame": {"x":937,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5703": { "frame": {"x":955,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5704": { "frame": {"x":973,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5705": { "frame": {"x":991,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5706": { "frame": {"x":1009,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5707": { "frame": {"x":1027,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5708": { "frame": {"x":1045,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5709": { "frame": {"x":1063,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5710": { "frame": {"x":1081,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5711": { "frame": {"x":1099,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5712": { "frame": {"x":1117,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5713": { "frame": {"x":1135,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5714": { "frame": {"x":1153,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5715": { "frame": {"x":1171,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5716": { "frame": {"x":1189,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5717": { "frame": {"x":1207,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5718": { "frame": {"x":1225,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5719": { "frame": {"x":1243,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5720": { "frame": {"x":1261,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5721": { "frame": {"x":1279,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5722": { "frame": {"x":1297,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5723": { "frame": {"x":1315,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5724": { "frame": {"x":1333,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5725": { "frame": {"x":1351,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5726": { "frame": {"x":1369,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5727": { "frame": {"x":1387,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5728": { "frame": {"x":1405,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5729": { "frame": {"x":1423,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5730": { "frame": {"x":1441,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5731": { "frame": {"x":1459,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5732": { "frame": {"x":1477,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5733": { "frame": {"x":1495,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5734": { "frame": {"x":1513,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5735": { "frame": {"x":1531,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5736": { "frame": {"x":1549,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5737": { "frame": {"x":1567,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5738": { "frame": {"x":1585,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5739": { "frame": {"x":1603,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5740": { "frame": {"x":1621,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5741": { "frame": {"x":1639,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5742": { "frame": {"x":1657,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5743": { "frame": {"x":1675,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5744": { "frame": {"x":1693,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5745": { "frame": {"x":1711,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5746": { "frame": {"x":1729,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5747": { "frame": {"x":1747,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5748": { "frame": {"x":1765,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5749": { "frame": {"x":1783,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5750": { "frame": {"x":1801,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5751": { "frame": {"x":1819,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5752": { "frame": {"x":1837,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5753": { "frame": {"x":1855,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5754": { "frame": {"x":1873,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5755": { "frame": {"x":1891,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5756": { "frame": {"x":1909,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5757": { "frame": {"x":1927,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5758": { "frame": {"x":1945,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5759": { "frame": {"x":1963,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5760": { "frame": {"x":1981,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5761": { "frame": {"x":1999,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5762": { "frame": {"x":2017,"y":901,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5763": { "frame": {"x":1,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5764": { "frame": {"x":19,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5765": { "frame": {"x":37,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5766": { "frame": {"x":55,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5767": { "frame": {"x":73,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5768": { "frame": {"x":91,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5769": { "frame": {"x":109,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5770": { "frame": {"x":127,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5771": { "frame": {"x":145,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5772": { "frame": {"x":163,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5773": { "frame": {"x":181,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5774": { "frame": {"x":199,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5775": { "frame": {"x":217,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5776": { "frame": {"x":235,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5777": { "frame": {"x":253,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5778": { "frame": {"x":271,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5779": { "frame": {"x":289,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5780": { "frame": {"x":307,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5781": { "frame": {"x":325,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5782": { "frame": {"x":343,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5783": { "frame": {"x":361,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5784": { "frame": {"x":379,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5785": { "frame": {"x":397,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5786": { "frame": {"x":415,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5787": { "frame": {"x":433,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5788": { "frame": {"x":451,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5789": { "frame": {"x":469,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5790": { "frame": {"x":487,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5791": { "frame": {"x":505,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5792": { "frame": {"x":523,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5793": { "frame": {"x":541,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5794": { "frame": {"x":559,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5795": { "frame": {"x":577,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5796": { "frame": {"x":595,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5797": { "frame": {"x":613,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5798": { "frame": {"x":631,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5799": { "frame": {"x":649,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5800": { "frame": {"x":667,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5801": { "frame": {"x":685,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5802": { "frame": {"x":703,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5803": { "frame": {"x":721,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5804": { "frame": {"x":739,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5805": { "frame": {"x":757,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5806": { "frame": {"x":775,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5807": { "frame": {"x":793,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5808": { "frame": {"x":811,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5809": { "frame": {"x":829,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5810": { "frame": {"x":847,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5811": { "frame": {"x":865,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5812": { "frame": {"x":883,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5813": { "frame": {"x":901,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5814": { "frame": {"x":919,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5815": { "frame": {"x":937,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5816": { "frame": {"x":955,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5817": { "frame": {"x":973,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5818": { "frame": {"x":991,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5819": { "frame": {"x":1009,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5820": { "frame": {"x":1027,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5821": { "frame": {"x":1045,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5822": { "frame": {"x":1063,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5823": { "frame": {"x":1081,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5824": { "frame": {"x":1099,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5825": { "frame": {"x":1117,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5826": { "frame": {"x":1135,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5827": { "frame": {"x":1153,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5828": { "frame": {"x":1171,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5829": { "frame": {"x":1189,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5830": { "frame": {"x":1207,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5831": { "frame": {"x":1225,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5832": { "frame": {"x":1243,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5833": { "frame": {"x":1261,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5834": { "frame": {"x":1279,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5835": { "frame": {"x":1297,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5836": { "frame": {"x":1315,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5837": { "frame": {"x":1333,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5838": { "frame": {"x":1351,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5839": { "frame": {"x":1369,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5840": { "frame": {"x":1387,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5841": { "frame": {"x":1405,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5842": { "frame": {"x":1423,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5843": { "frame": {"x":1441,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5844": { "frame": {"x":1459,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5845": { "frame": {"x":1477,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5846": { "frame": {"x":1495,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5847": { "frame": {"x":1513,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5848": { "frame": {"x":1531,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5849": { "frame": {"x":1549,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5850": { "frame": {"x":1567,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5851": { "frame": {"x":1585,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5852": { "frame": {"x":1603,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5853": { "frame": {"x":1621,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5854": { "frame": {"x":1639,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5855": { "frame": {"x":1657,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5856": { "frame": {"x":1675,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5857": { "frame": {"x":1693,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5858": { "frame": {"x":1711,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5859": { "frame": {"x":1729,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5860": { "frame": {"x":1747,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5861": { "frame": {"x":1765,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5862": { "frame": {"x":1783,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5863": { "frame": {"x":1801,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5864": { "frame": {"x":1819,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5865": { "frame": {"x":1837,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5866": { "frame": {"x":1855,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5867": { "frame": {"x":1873,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5868": { "frame": {"x":1891,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5869": { "frame": {"x":1909,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5870": { "frame": {"x":1927,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5871": { "frame": {"x":1945,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5872": { "frame": {"x":1963,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5873": { "frame": {"x":1981,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5874": { "frame": {"x":1999,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5875": { "frame": {"x":2017,"y":919,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5876": { "frame": {"x":1,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5877": { "frame": {"x":19,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5878": { "frame": {"x":37,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5879": { "frame": {"x":55,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5880": { "frame": {"x":73,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5881": { "frame": {"x":91,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5882": { "frame": {"x":109,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5883": { "frame": {"x":127,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5884": { "frame": {"x":145,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5885": { "frame": {"x":163,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5886": { "frame": {"x":181,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5887": { "frame": {"x":199,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5888": { "frame": {"x":217,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5889": { "frame": {"x":235,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5890": { "frame": {"x":253,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5891": { "frame": {"x":271,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5892": { "frame": {"x":289,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5893": { "frame": {"x":307,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5894": { "frame": {"x":325,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5895": { "frame": {"x":343,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5896": { "frame": {"x":361,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5897": { "frame": {"x":379,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5898": { "frame": {"x":397,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5899": { "frame": {"x":415,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5900": { "frame": {"x":433,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5901": { "frame": {"x":451,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5902": { "frame": {"x":469,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5903": { "frame": {"x":487,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5904": { "frame": {"x":505,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5905": { "frame": {"x":523,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5906": { "frame": {"x":541,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5907": { "frame": {"x":559,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5908": { "frame": {"x":577,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5909": { "frame": {"x":595,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5910": { "frame": {"x":613,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5911": { "frame": {"x":631,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5912": { "frame": {"x":649,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5913": { "frame": {"x":667,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5914": { "frame": {"x":685,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5915": { "frame": {"x":703,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5916": { "frame": {"x":721,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5917": { "frame": {"x":739,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5918": { "frame": {"x":757,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5919": { "frame": {"x":775,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5920": { "frame": {"x":793,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5921": { "frame": {"x":811,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5922": { "frame": {"x":829,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5923": { "frame": {"x":847,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5924": { "frame": {"x":865,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5925": { "frame": {"x":883,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5926": { "frame": {"x":901,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5927": { "frame": {"x":919,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5928": { "frame": {"x":937,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5929": { "frame": {"x":955,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5930": { "frame": {"x":973,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5931": { "frame": {"x":991,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5932": { "frame": {"x":1009,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5933": { "frame": {"x":1027,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5934": { "frame": {"x":1045,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5935": { "frame": {"x":1063,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5936": { "frame": {"x":1081,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5937": { "frame": {"x":1099,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5938": { "frame": {"x":1117,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5939": { "frame": {"x":1135,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5940": { "frame": {"x":1153,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5941": { "frame": {"x":1171,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5942": { "frame": {"x":1189,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5943": { "frame": {"x":1207,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5944": { "frame": {"x":1225,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5945": { "frame": {"x":1243,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5946": { "frame": {"x":1261,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5947": { "frame": {"x":1279,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5948": { "frame": {"x":1297,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5949": { "frame": {"x":1315,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5950": { "frame": {"x":1333,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5951": { "frame": {"x":1351,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5952": { "frame": {"x":1369,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5953": { "frame": {"x":1387,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5954": { "frame": {"x":1405,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5955": { "frame": {"x":1423,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5956": { "frame": {"x":1441,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5957": { "frame": {"x":1459,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5958": { "frame": {"x":1477,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5959": { "frame": {"x":1495,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5960": { "frame": {"x":1513,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5961": { "frame": {"x":1531,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5962": { "frame": {"x":1549,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5963": { "frame": {"x":1567,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5964": { "frame": {"x":1585,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5965": { "frame": {"x":1603,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5966": { "frame": {"x":1621,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5967": { "frame": {"x":1639,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5968": { "frame": {"x":1657,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5969": { "frame": {"x":1675,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5970": { "frame": {"x":1693,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5971": { "frame": {"x":1711,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5972": { "frame": {"x":1729,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5973": { "frame": {"x":1747,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5974": { "frame": {"x":1765,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5975": { "frame": {"x":1783,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5976": { "frame": {"x":1801,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5977": { "frame": {"x":1819,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5978": { "frame": {"x":1837,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5979": { "frame": {"x":1855,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5980": { "frame": {"x":1873,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5981": { "frame": {"x":1891,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5982": { "frame": {"x":1909,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5983": { "frame": {"x":1927,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5984": { "frame": {"x":1945,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5985": { "frame": {"x":1963,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5986": { "frame": {"x":1981,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5987": { "frame": {"x":1999,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5988": { "frame": {"x":2017,"y":937,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5989": { "frame": {"x":1,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5990": { "frame": {"x":19,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5991": { "frame": {"x":37,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5992": { "frame": {"x":55,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5993": { "frame": {"x":73,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5994": { "frame": {"x":91,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5995": { "frame": {"x":109,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5996": { "frame": {"x":127,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5997": { "frame": {"x":145,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5998": { "frame": {"x":163,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "5999": { "frame": {"x":181,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6000": { "frame": {"x":199,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6001": { "frame": {"x":217,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6002": { "frame": {"x":235,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6003": { "frame": {"x":253,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6004": { "frame": {"x":271,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6005": { "frame": {"x":289,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6006": { "frame": {"x":307,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6007": { "frame": {"x":325,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6008": { "frame": {"x":343,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6009": { "frame": {"x":361,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6010": { "frame": {"x":379,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6011": { "frame": {"x":397,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6012": { "frame": {"x":415,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6013": { "frame": {"x":433,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6014": { "frame": {"x":451,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6015": { "frame": {"x":469,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6016": { "frame": {"x":487,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6017": { "frame": {"x":505,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6018": { "frame": {"x":523,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6019": { "frame": {"x":541,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6020": { "frame": {"x":559,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6021": { "frame": {"x":577,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6022": { "frame": {"x":595,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6023": { "frame": {"x":613,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6024": { "frame": {"x":631,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6025": { "frame": {"x":649,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6026": { "frame": {"x":667,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6027": { "frame": {"x":685,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6028": { "frame": {"x":703,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6029": { "frame": {"x":721,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6030": { "frame": {"x":739,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6031": { "frame": {"x":757,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6032": { "frame": {"x":775,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6033": { "frame": {"x":793,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6034": { "frame": {"x":811,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6035": { "frame": {"x":829,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6036": { "frame": {"x":847,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6037": { "frame": {"x":865,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6038": { "frame": {"x":883,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6039": { "frame": {"x":901,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6040": { "frame": {"x":919,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6041": { "frame": {"x":937,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6042": { "frame": {"x":955,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6043": { "frame": {"x":973,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6044": { "frame": {"x":991,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6045": { "frame": {"x":1009,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6046": { "frame": {"x":1027,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6047": { "frame": {"x":1045,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6048": { "frame": {"x":1063,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6049": { "frame": {"x":1081,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6050": { "frame": {"x":1099,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6051": { "frame": {"x":1117,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6052": { "frame": {"x":1135,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6053": { "frame": {"x":1153,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6054": { "frame": {"x":1171,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6055": { "frame": {"x":1189,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6056": { "frame": {"x":1207,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6057": { "frame": {"x":1225,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6058": { "frame": {"x":1243,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6059": { "frame": {"x":1261,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6060": { "frame": {"x":1279,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6061": { "frame": {"x":1297,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6062": { "frame": {"x":1315,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6063": { "frame": {"x":1333,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6064": { "frame": {"x":1351,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6065": { "frame": {"x":1369,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6066": { "frame": {"x":1387,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6067": { "frame": {"x":1405,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6068": { "frame": {"x":1423,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6069": { "frame": {"x":1441,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6070": { "frame": {"x":1459,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6071": { "frame": {"x":1477,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6072": { "frame": {"x":1495,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6073": { "frame": {"x":1513,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6074": { "frame": {"x":1531,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6075": { "frame": {"x":1549,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6076": { "frame": {"x":1567,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6077": { "frame": {"x":1585,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6078": { "frame": {"x":1603,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6079": { "frame": {"x":1621,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6080": { "frame": {"x":1639,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6081": { "frame": {"x":1657,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6082": { "frame": {"x":1675,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6083": { "frame": {"x":1693,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6084": { "frame": {"x":1711,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6085": { "frame": {"x":1729,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6086": { "frame": {"x":1747,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6087": { "frame": {"x":1765,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6088": { "frame": {"x":1783,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6089": { "frame": {"x":1801,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6090": { "frame": {"x":1819,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6091": { "frame": {"x":1837,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6092": { "frame": {"x":1855,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6093": { "frame": {"x":1873,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6094": { "frame": {"x":1891,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6095": { "frame": {"x":1909,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6096": { "frame": {"x":1927,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6097": { "frame": {"x":1945,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6098": { "frame": {"x":1963,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6099": { "frame": {"x":1981,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6100": { "frame": {"x":1999,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6101": { "frame": {"x":2017,"y":955,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6102": { "frame": {"x":1,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6103": { "frame": {"x":19,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6104": { "frame": {"x":37,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6105": { "frame": {"x":55,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6106": { "frame": {"x":73,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6107": { "frame": {"x":91,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6108": { "frame": {"x":109,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6109": { "frame": {"x":127,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6110": { "frame": {"x":145,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6111": { "frame": {"x":163,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6112": { "frame": {"x":181,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6113": { "frame": {"x":199,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6114": { "frame": {"x":217,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6115": { "frame": {"x":235,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6116": { "frame": {"x":253,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6117": { "frame": {"x":271,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6118": { "frame": {"x":289,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6119": { "frame": {"x":307,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6120": { "frame": {"x":325,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6121": { "frame": {"x":343,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6122": { "frame": {"x":361,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6123": { "frame": {"x":379,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6124": { "frame": {"x":397,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6125": { "frame": {"x":415,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6126": { "frame": {"x":433,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6127": { "frame": {"x":451,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6128": { "frame": {"x":469,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6129": { "frame": {"x":487,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6130": { "frame": {"x":505,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6131": { "frame": {"x":523,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6132": { "frame": {"x":541,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6133": { "frame": {"x":559,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6134": { "frame": {"x":577,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6135": { "frame": {"x":595,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6136": { "frame": {"x":613,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6137": { "frame": {"x":631,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6138": { "frame": {"x":649,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6139": { "frame": {"x":667,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6140": { "frame": {"x":685,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6141": { "frame": {"x":703,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6142": { "frame": {"x":721,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6143": { "frame": {"x":739,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6144": { "frame": {"x":757,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6145": { "frame": {"x":775,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6146": { "frame": {"x":793,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6147": { "frame": {"x":811,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6148": { "frame": {"x":829,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6149": { "frame": {"x":847,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6150": { "frame": {"x":865,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6151": { "frame": {"x":883,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6152": { "frame": {"x":901,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6153": { "frame": {"x":919,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6154": { "frame": {"x":937,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6155": { "frame": {"x":955,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6156": { "frame": {"x":973,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6157": { "frame": {"x":991,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6158": { "frame": {"x":1009,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6159": { "frame": {"x":1027,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6160": { "frame": {"x":1045,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6161": { "frame": {"x":1063,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6162": { "frame": {"x":1081,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6163": { "frame": {"x":1099,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6164": { "frame": {"x":1117,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6165": { "frame": {"x":1135,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6166": { "frame": {"x":1153,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6167": { "frame": {"x":1171,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6168": { "frame": {"x":1189,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6169": { "frame": {"x":1207,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6170": { "frame": {"x":1225,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6171": { "frame": {"x":1243,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6172": { "frame": {"x":1261,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6173": { "frame": {"x":1279,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6174": { "frame": {"x":1297,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6175": { "frame": {"x":1315,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6176": { "frame": {"x":1333,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6177": { "frame": {"x":1351,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6178": { "frame": {"x":1369,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6179": { "frame": {"x":1387,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6180": { "frame": {"x":1405,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6181": { "frame": {"x":1423,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6182": { "frame": {"x":1441,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6183": { "frame": {"x":1459,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6184": { "frame": {"x":1477,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6185": { "frame": {"x":1495,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6186": { "frame": {"x":1513,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6187": { "frame": {"x":1531,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6188": { "frame": {"x":1549,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6189": { "frame": {"x":1567,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6190": { "frame": {"x":1585,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6191": { "frame": {"x":1603,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6192": { "frame": {"x":1621,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6193": { "frame": {"x":1639,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6194": { "frame": {"x":1657,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6195": { "frame": {"x":1675,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6196": { "frame": {"x":1693,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6197": { "frame": {"x":1711,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6198": { "frame": {"x":1729,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6199": { "frame": {"x":1747,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6200": { "frame": {"x":1765,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6201": { "frame": {"x":1783,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6202": { "frame": {"x":1801,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6203": { "frame": {"x":1819,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6204": { "frame": {"x":1837,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6205": { "frame": {"x":1855,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6206": { "frame": {"x":1873,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6207": { "frame": {"x":1891,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6208": { "frame": {"x":1909,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6209": { "frame": {"x":1927,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6210": { "frame": {"x":1945,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6211": { "frame": {"x":1963,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6212": { "frame": {"x":1981,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6213": { "frame": {"x":1999,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6214": { "frame": {"x":2017,"y":973,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6215": { "frame": {"x":1,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6216": { "frame": {"x":19,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6217": { "frame": {"x":37,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6218": { "frame": {"x":55,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6219": { "frame": {"x":73,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6220": { "frame": {"x":91,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6221": { "frame": {"x":109,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6222": { "frame": {"x":127,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6223": { "frame": {"x":145,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6224": { "frame": {"x":163,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6225": { "frame": {"x":181,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6226": { "frame": {"x":199,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6227": { "frame": {"x":217,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6228": { "frame": {"x":235,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6229": { "frame": {"x":253,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6230": { "frame": {"x":271,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6231": { "frame": {"x":289,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6232": { "frame": {"x":307,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6233": { "frame": {"x":325,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6234": { "frame": {"x":343,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6235": { "frame": {"x":361,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6236": { "frame": {"x":379,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6237": { "frame": {"x":397,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6238": { "frame": {"x":415,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6239": { "frame": {"x":433,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6240": { "frame": {"x":451,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6241": { "frame": {"x":469,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6242": { "frame": {"x":487,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6243": { "frame": {"x":505,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6244": { "frame": {"x":523,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6245": { "frame": {"x":541,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6246": { "frame": {"x":559,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6247": { "frame": {"x":577,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6248": { "frame": {"x":595,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6249": { "frame": {"x":613,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6250": { "frame": {"x":631,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6251": { "frame": {"x":649,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6252": { "frame": {"x":667,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6253": { "frame": {"x":685,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6254": { "frame": {"x":703,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6255": { "frame": {"x":721,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6256": { "frame": {"x":739,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6257": { "frame": {"x":757,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6258": { "frame": {"x":775,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6259": { "frame": {"x":793,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6260": { "frame": {"x":811,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6261": { "frame": {"x":829,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6262": { "frame": {"x":847,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6263": { "frame": {"x":865,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6264": { "frame": {"x":883,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6265": { "frame": {"x":901,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6266": { "frame": {"x":919,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6267": { "frame": {"x":937,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6268": { "frame": {"x":955,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6269": { "frame": {"x":973,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6270": { "frame": {"x":991,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6271": { "frame": {"x":1009,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6272": { "frame": {"x":1027,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6273": { "frame": {"x":1045,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6274": { "frame": {"x":1063,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6275": { "frame": {"x":1081,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6276": { "frame": {"x":1099,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6277": { "frame": {"x":1117,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6278": { "frame": {"x":1135,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6279": { "frame": {"x":1153,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6280": { "frame": {"x":1171,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6281": { "frame": {"x":1189,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6282": { "frame": {"x":1207,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6283": { "frame": {"x":1225,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6284": { "frame": {"x":1243,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6285": { "frame": {"x":1261,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6286": { "frame": {"x":1279,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6287": { "frame": {"x":1297,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6288": { "frame": {"x":1315,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6289": { "frame": {"x":1333,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6290": { "frame": {"x":1351,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6291": { "frame": {"x":1369,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6292": { "frame": {"x":1387,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6293": { "frame": {"x":1405,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6294": { "frame": {"x":1423,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6295": { "frame": {"x":1441,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6296": { "frame": {"x":1459,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6297": { "frame": {"x":1477,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6298": { "frame": {"x":1495,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6299": { "frame": {"x":1513,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6300": { "frame": {"x":1531,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6301": { "frame": {"x":1549,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6302": { "frame": {"x":1567,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6303": { "frame": {"x":1585,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6304": { "frame": {"x":1603,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6305": { "frame": {"x":1621,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6306": { "frame": {"x":1639,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6307": { "frame": {"x":1657,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6308": { "frame": {"x":1675,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6309": { "frame": {"x":1693,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6310": { "frame": {"x":1711,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6311": { "frame": {"x":1729,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6312": { "frame": {"x":1747,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6313": { "frame": {"x":1765,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6314": { "frame": {"x":1783,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6315": { "frame": {"x":1801,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6316": { "frame": {"x":1819,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6317": { "frame": {"x":1837,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6318": { "frame": {"x":1855,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6319": { "frame": {"x":1873,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6320": { "frame": {"x":1891,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6321": { "frame": {"x":1909,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6322": { "frame": {"x":1927,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6323": { "frame": {"x":1945,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6324": { "frame": {"x":1963,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6325": { "frame": {"x":1981,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6326": { "frame": {"x":1999,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }, "6327": { "frame": {"x":2017,"y":991,"w":16,"h":16}, "rotated": false, "trimmed": false, "spriteSourceSize": {"x":0,"y":0,"w":16,"h":16}, "sourceSize": {"w":16,"h":16} }}, "meta": { "app": "https://www.codeandweb.com/texturepacker", "version": "1.0", "image": "tileset.webp", "format": "RGBA8888", "size": {"w":2034,"h":1008}, "scale": "1", "smartupdate": "$TexturePacker:SmartUpdate:f63e20f8d450565458a529b68103748e:20fe44051efedeac8ced4f356ca028da:484a44cc2b8d26a328e3db98382ba525$" } } ================================================ FILE: copyrighted/textures/rse/tileset.tps ================================================ fileFormatVersion 5 texturePackerVersion 6.0.0 autoSDSettings scale 1 extension spriteFilter acceptFractionalValues maxTextureSize width -1 height -1 allowRotation shapeDebug dpi 72 dataFormat pixijs4 textureFileName tileset.webp flipPVR pvrQualityLevel 3 astcQualityLevel 2 basisUniversalQualityLevel 2 atfCompressData mipMapMinSize 32768 etc1QualityLevel 70 etc2QualityLevel 70 dxtCompressionMode DXT_PERCEPTUAL jxrColorFormat JXR_YUV444 jxrTrimFlexBits 0 jxrCompressionLevel 0 ditherType NearestNeighbour backgroundColor 0 libGdx filtering x Linear y Linear shapePadding 0 jpgQuality 80 pngOptimizationLevel 1 webpQualityLevel 101 textureSubPath atfFormats textureFormat webp borderPadding 0 maxTextureSize width 2048 height 2048 fixedTextureSize width -1 height -1 algorithmSettings algorithm Basic freeSizeMode Best sizeConstraints AnySize forceSquared maxRects heuristic Best basic sortBy Name order Ascending polygon alignToGrid 1 dataFileNames data name tileset.json multiPack forceIdenticalLayout outputFormat RGBA8888 alphaHandling ClearTransparentPixels contentProtection key autoAliasEnabled trimSpriteNames prependSmartFolderName autodetectAnimations globalSpriteSettings scale 1 scaleMode Smooth extrude 1 trimThreshold 1 trimMargin 1 trimMode None tracerTolerance 200 heuristicMask defaultPivotPoint 0,0 writePivotPoints individualSpriteSettings ../../../app/build/cache/tilesets/rse/tileset/0.png ../../../app/build/cache/tilesets/rse/tileset/1.png ../../../app/build/cache/tilesets/rse/tileset/10.png ../../../app/build/cache/tilesets/rse/tileset/100.png ../../../app/build/cache/tilesets/rse/tileset/1000.png ../../../app/build/cache/tilesets/rse/tileset/1001.png ../../../app/build/cache/tilesets/rse/tileset/1002.png ../../../app/build/cache/tilesets/rse/tileset/1003.png ../../../app/build/cache/tilesets/rse/tileset/1004.png ../../../app/build/cache/tilesets/rse/tileset/1005.png ../../../app/build/cache/tilesets/rse/tileset/1006.png ../../../app/build/cache/tilesets/rse/tileset/1007.png ../../../app/build/cache/tilesets/rse/tileset/1008.png ../../../app/build/cache/tilesets/rse/tileset/1009.png ../../../app/build/cache/tilesets/rse/tileset/101.png ../../../app/build/cache/tilesets/rse/tileset/1010.png ../../../app/build/cache/tilesets/rse/tileset/1011.png ../../../app/build/cache/tilesets/rse/tileset/1012.png ../../../app/build/cache/tilesets/rse/tileset/1013.png ../../../app/build/cache/tilesets/rse/tileset/1014.png ../../../app/build/cache/tilesets/rse/tileset/1015.png ../../../app/build/cache/tilesets/rse/tileset/1016.png ../../../app/build/cache/tilesets/rse/tileset/1017.png ../../../app/build/cache/tilesets/rse/tileset/1018.png ../../../app/build/cache/tilesets/rse/tileset/1019.png ../../../app/build/cache/tilesets/rse/tileset/102.png ../../../app/build/cache/tilesets/rse/tileset/1020.png ../../../app/build/cache/tilesets/rse/tileset/1021.png ../../../app/build/cache/tilesets/rse/tileset/1022.png ../../../app/build/cache/tilesets/rse/tileset/1023.png ../../../app/build/cache/tilesets/rse/tileset/1024.png ../../../app/build/cache/tilesets/rse/tileset/1025.png ../../../app/build/cache/tilesets/rse/tileset/1026.png ../../../app/build/cache/tilesets/rse/tileset/1027.png ../../../app/build/cache/tilesets/rse/tileset/1028.png ../../../app/build/cache/tilesets/rse/tileset/1029.png ../../../app/build/cache/tilesets/rse/tileset/103.png ../../../app/build/cache/tilesets/rse/tileset/1030.png ../../../app/build/cache/tilesets/rse/tileset/1031.png ../../../app/build/cache/tilesets/rse/tileset/1032.png ../../../app/build/cache/tilesets/rse/tileset/1033.png ../../../app/build/cache/tilesets/rse/tileset/1034.png ../../../app/build/cache/tilesets/rse/tileset/1035.png ../../../app/build/cache/tilesets/rse/tileset/1036.png ../../../app/build/cache/tilesets/rse/tileset/1037.png ../../../app/build/cache/tilesets/rse/tileset/1038.png ../../../app/build/cache/tilesets/rse/tileset/1039.png ../../../app/build/cache/tilesets/rse/tileset/104.png ../../../app/build/cache/tilesets/rse/tileset/1040.png ../../../app/build/cache/tilesets/rse/tileset/1041.png ../../../app/build/cache/tilesets/rse/tileset/1042.png ../../../app/build/cache/tilesets/rse/tileset/1043.png ../../../app/build/cache/tilesets/rse/tileset/1044.png ../../../app/build/cache/tilesets/rse/tileset/1045.png ../../../app/build/cache/tilesets/rse/tileset/1046.png ../../../app/build/cache/tilesets/rse/tileset/1047.png ../../../app/build/cache/tilesets/rse/tileset/1048.png ../../../app/build/cache/tilesets/rse/tileset/1049.png ../../../app/build/cache/tilesets/rse/tileset/105.png ../../../app/build/cache/tilesets/rse/tileset/1050.png ../../../app/build/cache/tilesets/rse/tileset/1051.png ../../../app/build/cache/tilesets/rse/tileset/1052.png ../../../app/build/cache/tilesets/rse/tileset/1053.png ../../../app/build/cache/tilesets/rse/tileset/1054.png ../../../app/build/cache/tilesets/rse/tileset/1055.png ../../../app/build/cache/tilesets/rse/tileset/1056.png ../../../app/build/cache/tilesets/rse/tileset/1057.png ../../../app/build/cache/tilesets/rse/tileset/1058.png ../../../app/build/cache/tilesets/rse/tileset/1059.png ../../../app/build/cache/tilesets/rse/tileset/106.png ../../../app/build/cache/tilesets/rse/tileset/1060.png ../../../app/build/cache/tilesets/rse/tileset/1061.png ../../../app/build/cache/tilesets/rse/tileset/1062.png ../../../app/build/cache/tilesets/rse/tileset/1063.png ../../../app/build/cache/tilesets/rse/tileset/1064.png ../../../app/build/cache/tilesets/rse/tileset/1065.png ../../../app/build/cache/tilesets/rse/tileset/1066.png ../../../app/build/cache/tilesets/rse/tileset/1067.png ../../../app/build/cache/tilesets/rse/tileset/1068.png ../../../app/build/cache/tilesets/rse/tileset/1069.png ../../../app/build/cache/tilesets/rse/tileset/107.png ../../../app/build/cache/tilesets/rse/tileset/1070.png ../../../app/build/cache/tilesets/rse/tileset/1071.png ../../../app/build/cache/tilesets/rse/tileset/1072.png ../../../app/build/cache/tilesets/rse/tileset/1073.png ../../../app/build/cache/tilesets/rse/tileset/1074.png ../../../app/build/cache/tilesets/rse/tileset/1075.png ../../../app/build/cache/tilesets/rse/tileset/1076.png ../../../app/build/cache/tilesets/rse/tileset/1077.png ../../../app/build/cache/tilesets/rse/tileset/1078.png ../../../app/build/cache/tilesets/rse/tileset/1079.png ../../../app/build/cache/tilesets/rse/tileset/108.png ../../../app/build/cache/tilesets/rse/tileset/1080.png ../../../app/build/cache/tilesets/rse/tileset/1081.png ../../../app/build/cache/tilesets/rse/tileset/1082.png ../../../app/build/cache/tilesets/rse/tileset/1083.png ../../../app/build/cache/tilesets/rse/tileset/1084.png ../../../app/build/cache/tilesets/rse/tileset/1085.png ../../../app/build/cache/tilesets/rse/tileset/1086.png ../../../app/build/cache/tilesets/rse/tileset/1087.png ../../../app/build/cache/tilesets/rse/tileset/1088.png ../../../app/build/cache/tilesets/rse/tileset/1089.png ../../../app/build/cache/tilesets/rse/tileset/109.png ../../../app/build/cache/tilesets/rse/tileset/1090.png ../../../app/build/cache/tilesets/rse/tileset/1091.png ../../../app/build/cache/tilesets/rse/tileset/1092.png ../../../app/build/cache/tilesets/rse/tileset/1093.png ../../../app/build/cache/tilesets/rse/tileset/1094.png ../../../app/build/cache/tilesets/rse/tileset/1095.png ../../../app/build/cache/tilesets/rse/tileset/1096.png ../../../app/build/cache/tilesets/rse/tileset/1097.png ../../../app/build/cache/tilesets/rse/tileset/1098.png ../../../app/build/cache/tilesets/rse/tileset/1099.png ../../../app/build/cache/tilesets/rse/tileset/11.png ../../../app/build/cache/tilesets/rse/tileset/110.png ../../../app/build/cache/tilesets/rse/tileset/1100.png ../../../app/build/cache/tilesets/rse/tileset/1101.png ../../../app/build/cache/tilesets/rse/tileset/1102.png ../../../app/build/cache/tilesets/rse/tileset/1103.png ../../../app/build/cache/tilesets/rse/tileset/1104.png ../../../app/build/cache/tilesets/rse/tileset/1105.png ../../../app/build/cache/tilesets/rse/tileset/1106.png ../../../app/build/cache/tilesets/rse/tileset/1107.png ../../../app/build/cache/tilesets/rse/tileset/1108.png ../../../app/build/cache/tilesets/rse/tileset/1109.png ../../../app/build/cache/tilesets/rse/tileset/111.png ../../../app/build/cache/tilesets/rse/tileset/1110.png ../../../app/build/cache/tilesets/rse/tileset/1111.png ../../../app/build/cache/tilesets/rse/tileset/1112.png ../../../app/build/cache/tilesets/rse/tileset/1113.png ../../../app/build/cache/tilesets/rse/tileset/1114.png ../../../app/build/cache/tilesets/rse/tileset/1115.png ../../../app/build/cache/tilesets/rse/tileset/1116.png ../../../app/build/cache/tilesets/rse/tileset/1117.png ../../../app/build/cache/tilesets/rse/tileset/1118.png ../../../app/build/cache/tilesets/rse/tileset/1119.png ../../../app/build/cache/tilesets/rse/tileset/112.png ../../../app/build/cache/tilesets/rse/tileset/1120.png ../../../app/build/cache/tilesets/rse/tileset/1121.png ../../../app/build/cache/tilesets/rse/tileset/1122.png ../../../app/build/cache/tilesets/rse/tileset/1123.png ../../../app/build/cache/tilesets/rse/tileset/1124.png ../../../app/build/cache/tilesets/rse/tileset/1125.png ../../../app/build/cache/tilesets/rse/tileset/1126.png ../../../app/build/cache/tilesets/rse/tileset/1127.png ../../../app/build/cache/tilesets/rse/tileset/1128.png ../../../app/build/cache/tilesets/rse/tileset/1129.png ../../../app/build/cache/tilesets/rse/tileset/113.png ../../../app/build/cache/tilesets/rse/tileset/1130.png ../../../app/build/cache/tilesets/rse/tileset/1131.png ../../../app/build/cache/tilesets/rse/tileset/1132.png ../../../app/build/cache/tilesets/rse/tileset/1133.png ../../../app/build/cache/tilesets/rse/tileset/1134.png ../../../app/build/cache/tilesets/rse/tileset/1135.png ../../../app/build/cache/tilesets/rse/tileset/1136.png ../../../app/build/cache/tilesets/rse/tileset/1137.png ../../../app/build/cache/tilesets/rse/tileset/1138.png ../../../app/build/cache/tilesets/rse/tileset/1139.png ../../../app/build/cache/tilesets/rse/tileset/114.png ../../../app/build/cache/tilesets/rse/tileset/1140.png ../../../app/build/cache/tilesets/rse/tileset/1141.png ../../../app/build/cache/tilesets/rse/tileset/1142.png ../../../app/build/cache/tilesets/rse/tileset/1143.png ../../../app/build/cache/tilesets/rse/tileset/1144.png ../../../app/build/cache/tilesets/rse/tileset/1145.png ../../../app/build/cache/tilesets/rse/tileset/1146.png ../../../app/build/cache/tilesets/rse/tileset/1147.png ../../../app/build/cache/tilesets/rse/tileset/1148.png ../../../app/build/cache/tilesets/rse/tileset/1149.png ../../../app/build/cache/tilesets/rse/tileset/115.png ../../../app/build/cache/tilesets/rse/tileset/1150.png ../../../app/build/cache/tilesets/rse/tileset/1151.png ../../../app/build/cache/tilesets/rse/tileset/1152.png ../../../app/build/cache/tilesets/rse/tileset/1153.png ../../../app/build/cache/tilesets/rse/tileset/1154.png ../../../app/build/cache/tilesets/rse/tileset/1155.png ../../../app/build/cache/tilesets/rse/tileset/1156.png ../../../app/build/cache/tilesets/rse/tileset/1157.png ../../../app/build/cache/tilesets/rse/tileset/1158.png ../../../app/build/cache/tilesets/rse/tileset/1159.png ../../../app/build/cache/tilesets/rse/tileset/116.png ../../../app/build/cache/tilesets/rse/tileset/1160.png ../../../app/build/cache/tilesets/rse/tileset/1161.png ../../../app/build/cache/tilesets/rse/tileset/1162.png ../../../app/build/cache/tilesets/rse/tileset/1163.png ../../../app/build/cache/tilesets/rse/tileset/1164.png ../../../app/build/cache/tilesets/rse/tileset/1165.png ../../../app/build/cache/tilesets/rse/tileset/1166.png ../../../app/build/cache/tilesets/rse/tileset/1167.png ../../../app/build/cache/tilesets/rse/tileset/1168.png ../../../app/build/cache/tilesets/rse/tileset/1169.png ../../../app/build/cache/tilesets/rse/tileset/117.png ../../../app/build/cache/tilesets/rse/tileset/1170.png ../../../app/build/cache/tilesets/rse/tileset/1171.png ../../../app/build/cache/tilesets/rse/tileset/1172.png ../../../app/build/cache/tilesets/rse/tileset/1173.png ../../../app/build/cache/tilesets/rse/tileset/1174.png ../../../app/build/cache/tilesets/rse/tileset/1175.png ../../../app/build/cache/tilesets/rse/tileset/1176.png ../../../app/build/cache/tilesets/rse/tileset/1177.png ../../../app/build/cache/tilesets/rse/tileset/1178.png ../../../app/build/cache/tilesets/rse/tileset/1179.png ../../../app/build/cache/tilesets/rse/tileset/118.png ../../../app/build/cache/tilesets/rse/tileset/1180.png ../../../app/build/cache/tilesets/rse/tileset/1181.png ../../../app/build/cache/tilesets/rse/tileset/1182.png ../../../app/build/cache/tilesets/rse/tileset/1183.png ../../../app/build/cache/tilesets/rse/tileset/1184.png ../../../app/build/cache/tilesets/rse/tileset/1185.png ../../../app/build/cache/tilesets/rse/tileset/1186.png ../../../app/build/cache/tilesets/rse/tileset/1187.png ../../../app/build/cache/tilesets/rse/tileset/1188.png ../../../app/build/cache/tilesets/rse/tileset/1189.png ../../../app/build/cache/tilesets/rse/tileset/119.png ../../../app/build/cache/tilesets/rse/tileset/1190.png ../../../app/build/cache/tilesets/rse/tileset/1191.png ../../../app/build/cache/tilesets/rse/tileset/1192.png ../../../app/build/cache/tilesets/rse/tileset/1193.png ../../../app/build/cache/tilesets/rse/tileset/1194.png ../../../app/build/cache/tilesets/rse/tileset/1195.png ../../../app/build/cache/tilesets/rse/tileset/1196.png ../../../app/build/cache/tilesets/rse/tileset/1197.png ../../../app/build/cache/tilesets/rse/tileset/1198.png ../../../app/build/cache/tilesets/rse/tileset/1199.png ../../../app/build/cache/tilesets/rse/tileset/12.png ../../../app/build/cache/tilesets/rse/tileset/120.png ../../../app/build/cache/tilesets/rse/tileset/1200.png ../../../app/build/cache/tilesets/rse/tileset/1201.png ../../../app/build/cache/tilesets/rse/tileset/1202.png ../../../app/build/cache/tilesets/rse/tileset/1203.png ../../../app/build/cache/tilesets/rse/tileset/1204.png ../../../app/build/cache/tilesets/rse/tileset/1205.png ../../../app/build/cache/tilesets/rse/tileset/1206.png ../../../app/build/cache/tilesets/rse/tileset/1207.png ../../../app/build/cache/tilesets/rse/tileset/1208.png ../../../app/build/cache/tilesets/rse/tileset/1209.png ../../../app/build/cache/tilesets/rse/tileset/121.png ../../../app/build/cache/tilesets/rse/tileset/1210.png ../../../app/build/cache/tilesets/rse/tileset/1211.png ../../../app/build/cache/tilesets/rse/tileset/1212.png ../../../app/build/cache/tilesets/rse/tileset/1213.png ../../../app/build/cache/tilesets/rse/tileset/1214.png ../../../app/build/cache/tilesets/rse/tileset/1215.png ../../../app/build/cache/tilesets/rse/tileset/1216.png ../../../app/build/cache/tilesets/rse/tileset/1217.png ../../../app/build/cache/tilesets/rse/tileset/1218.png ../../../app/build/cache/tilesets/rse/tileset/1219.png ../../../app/build/cache/tilesets/rse/tileset/122.png ../../../app/build/cache/tilesets/rse/tileset/1220.png ../../../app/build/cache/tilesets/rse/tileset/1221.png ../../../app/build/cache/tilesets/rse/tileset/1222.png ../../../app/build/cache/tilesets/rse/tileset/1223.png ../../../app/build/cache/tilesets/rse/tileset/1224.png ../../../app/build/cache/tilesets/rse/tileset/1225.png ../../../app/build/cache/tilesets/rse/tileset/1226.png ../../../app/build/cache/tilesets/rse/tileset/1227.png ../../../app/build/cache/tilesets/rse/tileset/1228.png ../../../app/build/cache/tilesets/rse/tileset/1229.png ../../../app/build/cache/tilesets/rse/tileset/123.png ../../../app/build/cache/tilesets/rse/tileset/1230.png ../../../app/build/cache/tilesets/rse/tileset/1231.png ../../../app/build/cache/tilesets/rse/tileset/1232.png ../../../app/build/cache/tilesets/rse/tileset/1233.png ../../../app/build/cache/tilesets/rse/tileset/1234.png ../../../app/build/cache/tilesets/rse/tileset/1235.png ../../../app/build/cache/tilesets/rse/tileset/1236.png ../../../app/build/cache/tilesets/rse/tileset/1237.png ../../../app/build/cache/tilesets/rse/tileset/1238.png ../../../app/build/cache/tilesets/rse/tileset/1239.png ../../../app/build/cache/tilesets/rse/tileset/124.png ../../../app/build/cache/tilesets/rse/tileset/1240.png ../../../app/build/cache/tilesets/rse/tileset/1241.png ../../../app/build/cache/tilesets/rse/tileset/1242.png ../../../app/build/cache/tilesets/rse/tileset/1243.png ../../../app/build/cache/tilesets/rse/tileset/1244.png ../../../app/build/cache/tilesets/rse/tileset/1245.png ../../../app/build/cache/tilesets/rse/tileset/1246.png ../../../app/build/cache/tilesets/rse/tileset/1247.png ../../../app/build/cache/tilesets/rse/tileset/1248.png ../../../app/build/cache/tilesets/rse/tileset/1249.png ../../../app/build/cache/tilesets/rse/tileset/125.png ../../../app/build/cache/tilesets/rse/tileset/1250.png ../../../app/build/cache/tilesets/rse/tileset/1251.png ../../../app/build/cache/tilesets/rse/tileset/1252.png ../../../app/build/cache/tilesets/rse/tileset/1253.png ../../../app/build/cache/tilesets/rse/tileset/1254.png ../../../app/build/cache/tilesets/rse/tileset/1255.png ../../../app/build/cache/tilesets/rse/tileset/1256.png ../../../app/build/cache/tilesets/rse/tileset/1257.png ../../../app/build/cache/tilesets/rse/tileset/1258.png ../../../app/build/cache/tilesets/rse/tileset/1259.png ../../../app/build/cache/tilesets/rse/tileset/126.png ../../../app/build/cache/tilesets/rse/tileset/1260.png ../../../app/build/cache/tilesets/rse/tileset/1261.png ../../../app/build/cache/tilesets/rse/tileset/1262.png ../../../app/build/cache/tilesets/rse/tileset/1263.png ../../../app/build/cache/tilesets/rse/tileset/1264.png ../../../app/build/cache/tilesets/rse/tileset/1265.png ../../../app/build/cache/tilesets/rse/tileset/1266.png ../../../app/build/cache/tilesets/rse/tileset/1267.png ../../../app/build/cache/tilesets/rse/tileset/1268.png ../../../app/build/cache/tilesets/rse/tileset/1269.png ../../../app/build/cache/tilesets/rse/tileset/127.png ../../../app/build/cache/tilesets/rse/tileset/1270.png ../../../app/build/cache/tilesets/rse/tileset/1271.png ../../../app/build/cache/tilesets/rse/tileset/1272.png ../../../app/build/cache/tilesets/rse/tileset/1273.png ../../../app/build/cache/tilesets/rse/tileset/1274.png ../../../app/build/cache/tilesets/rse/tileset/1275.png ../../../app/build/cache/tilesets/rse/tileset/1276.png ../../../app/build/cache/tilesets/rse/tileset/1277.png ../../../app/build/cache/tilesets/rse/tileset/1278.png ../../../app/build/cache/tilesets/rse/tileset/1279.png ../../../app/build/cache/tilesets/rse/tileset/128.png ../../../app/build/cache/tilesets/rse/tileset/1280.png ../../../app/build/cache/tilesets/rse/tileset/1281.png ../../../app/build/cache/tilesets/rse/tileset/1282.png ../../../app/build/cache/tilesets/rse/tileset/1283.png ../../../app/build/cache/tilesets/rse/tileset/1284.png ../../../app/build/cache/tilesets/rse/tileset/1285.png ../../../app/build/cache/tilesets/rse/tileset/1286.png ../../../app/build/cache/tilesets/rse/tileset/1287.png ../../../app/build/cache/tilesets/rse/tileset/1288.png ../../../app/build/cache/tilesets/rse/tileset/1289.png ../../../app/build/cache/tilesets/rse/tileset/129.png ../../../app/build/cache/tilesets/rse/tileset/1290.png ../../../app/build/cache/tilesets/rse/tileset/1291.png ../../../app/build/cache/tilesets/rse/tileset/1292.png ../../../app/build/cache/tilesets/rse/tileset/1293.png ../../../app/build/cache/tilesets/rse/tileset/1294.png ../../../app/build/cache/tilesets/rse/tileset/1295.png ../../../app/build/cache/tilesets/rse/tileset/1296.png ../../../app/build/cache/tilesets/rse/tileset/1297.png ../../../app/build/cache/tilesets/rse/tileset/1298.png ../../../app/build/cache/tilesets/rse/tileset/1299.png ../../../app/build/cache/tilesets/rse/tileset/13.png ../../../app/build/cache/tilesets/rse/tileset/130.png ../../../app/build/cache/tilesets/rse/tileset/1300.png ../../../app/build/cache/tilesets/rse/tileset/1301.png ../../../app/build/cache/tilesets/rse/tileset/1302.png ../../../app/build/cache/tilesets/rse/tileset/1303.png ../../../app/build/cache/tilesets/rse/tileset/1304.png ../../../app/build/cache/tilesets/rse/tileset/1305.png ../../../app/build/cache/tilesets/rse/tileset/1306.png ../../../app/build/cache/tilesets/rse/tileset/1307.png ../../../app/build/cache/tilesets/rse/tileset/1308.png ../../../app/build/cache/tilesets/rse/tileset/1309.png ../../../app/build/cache/tilesets/rse/tileset/131.png ../../../app/build/cache/tilesets/rse/tileset/1310.png ../../../app/build/cache/tilesets/rse/tileset/1311.png ../../../app/build/cache/tilesets/rse/tileset/1312.png ../../../app/build/cache/tilesets/rse/tileset/1313.png ../../../app/build/cache/tilesets/rse/tileset/1314.png ../../../app/build/cache/tilesets/rse/tileset/1315.png ../../../app/build/cache/tilesets/rse/tileset/1316.png ../../../app/build/cache/tilesets/rse/tileset/1317.png ../../../app/build/cache/tilesets/rse/tileset/1318.png ../../../app/build/cache/tilesets/rse/tileset/1319.png ../../../app/build/cache/tilesets/rse/tileset/132.png ../../../app/build/cache/tilesets/rse/tileset/1320.png ../../../app/build/cache/tilesets/rse/tileset/1321.png ../../../app/build/cache/tilesets/rse/tileset/1322.png ../../../app/build/cache/tilesets/rse/tileset/1323.png ../../../app/build/cache/tilesets/rse/tileset/1324.png ../../../app/build/cache/tilesets/rse/tileset/1325.png ../../../app/build/cache/tilesets/rse/tileset/1326.png ../../../app/build/cache/tilesets/rse/tileset/1327.png ../../../app/build/cache/tilesets/rse/tileset/1328.png ../../../app/build/cache/tilesets/rse/tileset/1329.png ../../../app/build/cache/tilesets/rse/tileset/133.png ../../../app/build/cache/tilesets/rse/tileset/1330.png ../../../app/build/cache/tilesets/rse/tileset/1331.png ../../../app/build/cache/tilesets/rse/tileset/1332.png ../../../app/build/cache/tilesets/rse/tileset/1333.png ../../../app/build/cache/tilesets/rse/tileset/1334.png ../../../app/build/cache/tilesets/rse/tileset/1335.png ../../../app/build/cache/tilesets/rse/tileset/1336.png ../../../app/build/cache/tilesets/rse/tileset/1337.png ../../../app/build/cache/tilesets/rse/tileset/1338.png ../../../app/build/cache/tilesets/rse/tileset/1339.png ../../../app/build/cache/tilesets/rse/tileset/134.png ../../../app/build/cache/tilesets/rse/tileset/1340.png ../../../app/build/cache/tilesets/rse/tileset/1341.png ../../../app/build/cache/tilesets/rse/tileset/1342.png ../../../app/build/cache/tilesets/rse/tileset/1343.png ../../../app/build/cache/tilesets/rse/tileset/1344.png ../../../app/build/cache/tilesets/rse/tileset/1345.png ../../../app/build/cache/tilesets/rse/tileset/1346.png ../../../app/build/cache/tilesets/rse/tileset/1347.png ../../../app/build/cache/tilesets/rse/tileset/1348.png ../../../app/build/cache/tilesets/rse/tileset/1349.png ../../../app/build/cache/tilesets/rse/tileset/135.png ../../../app/build/cache/tilesets/rse/tileset/1350.png ../../../app/build/cache/tilesets/rse/tileset/1351.png ../../../app/build/cache/tilesets/rse/tileset/1352.png ../../../app/build/cache/tilesets/rse/tileset/1353.png ../../../app/build/cache/tilesets/rse/tileset/1354.png ../../../app/build/cache/tilesets/rse/tileset/1355.png ../../../app/build/cache/tilesets/rse/tileset/1356.png ../../../app/build/cache/tilesets/rse/tileset/1357.png ../../../app/build/cache/tilesets/rse/tileset/1358.png ../../../app/build/cache/tilesets/rse/tileset/1359.png ../../../app/build/cache/tilesets/rse/tileset/136.png ../../../app/build/cache/tilesets/rse/tileset/1360.png ../../../app/build/cache/tilesets/rse/tileset/1361.png ../../../app/build/cache/tilesets/rse/tileset/1362.png ../../../app/build/cache/tilesets/rse/tileset/1363.png ../../../app/build/cache/tilesets/rse/tileset/1364.png ../../../app/build/cache/tilesets/rse/tileset/1365.png ../../../app/build/cache/tilesets/rse/tileset/1366.png ../../../app/build/cache/tilesets/rse/tileset/1367.png ../../../app/build/cache/tilesets/rse/tileset/1368.png ../../../app/build/cache/tilesets/rse/tileset/1369.png ../../../app/build/cache/tilesets/rse/tileset/137.png ../../../app/build/cache/tilesets/rse/tileset/1370.png ../../../app/build/cache/tilesets/rse/tileset/1371.png ../../../app/build/cache/tilesets/rse/tileset/1372.png ../../../app/build/cache/tilesets/rse/tileset/1373.png ../../../app/build/cache/tilesets/rse/tileset/1374.png ../../../app/build/cache/tilesets/rse/tileset/1375.png ../../../app/build/cache/tilesets/rse/tileset/1376.png ../../../app/build/cache/tilesets/rse/tileset/1377.png ../../../app/build/cache/tilesets/rse/tileset/1378.png ../../../app/build/cache/tilesets/rse/tileset/1379.png ../../../app/build/cache/tilesets/rse/tileset/138.png ../../../app/build/cache/tilesets/rse/tileset/1380.png ../../../app/build/cache/tilesets/rse/tileset/1381.png ../../../app/build/cache/tilesets/rse/tileset/1382.png ../../../app/build/cache/tilesets/rse/tileset/1383.png ../../../app/build/cache/tilesets/rse/tileset/1384.png ../../../app/build/cache/tilesets/rse/tileset/1385.png ../../../app/build/cache/tilesets/rse/tileset/1386.png ../../../app/build/cache/tilesets/rse/tileset/1387.png ../../../app/build/cache/tilesets/rse/tileset/1388.png ../../../app/build/cache/tilesets/rse/tileset/1389.png ../../../app/build/cache/tilesets/rse/tileset/139.png ../../../app/build/cache/tilesets/rse/tileset/1390.png ../../../app/build/cache/tilesets/rse/tileset/1391.png ../../../app/build/cache/tilesets/rse/tileset/1392.png ../../../app/build/cache/tilesets/rse/tileset/1393.png ../../../app/build/cache/tilesets/rse/tileset/1394.png ../../../app/build/cache/tilesets/rse/tileset/1395.png ../../../app/build/cache/tilesets/rse/tileset/1396.png ../../../app/build/cache/tilesets/rse/tileset/1397.png ../../../app/build/cache/tilesets/rse/tileset/1398.png ../../../app/build/cache/tilesets/rse/tileset/1399.png ../../../app/build/cache/tilesets/rse/tileset/14.png ../../../app/build/cache/tilesets/rse/tileset/140.png ../../../app/build/cache/tilesets/rse/tileset/1400.png ../../../app/build/cache/tilesets/rse/tileset/1401.png ../../../app/build/cache/tilesets/rse/tileset/1402.png ../../../app/build/cache/tilesets/rse/tileset/1403.png ../../../app/build/cache/tilesets/rse/tileset/1404.png ../../../app/build/cache/tilesets/rse/tileset/1405.png ../../../app/build/cache/tilesets/rse/tileset/1406.png ../../../app/build/cache/tilesets/rse/tileset/1407.png ../../../app/build/cache/tilesets/rse/tileset/1408.png ../../../app/build/cache/tilesets/rse/tileset/1409.png ../../../app/build/cache/tilesets/rse/tileset/141.png ../../../app/build/cache/tilesets/rse/tileset/1410.png ../../../app/build/cache/tilesets/rse/tileset/1411.png ../../../app/build/cache/tilesets/rse/tileset/1412.png ../../../app/build/cache/tilesets/rse/tileset/1413.png ../../../app/build/cache/tilesets/rse/tileset/1414.png ../../../app/build/cache/tilesets/rse/tileset/1415.png ../../../app/build/cache/tilesets/rse/tileset/1416.png ../../../app/build/cache/tilesets/rse/tileset/1417.png ../../../app/build/cache/tilesets/rse/tileset/1418.png ../../../app/build/cache/tilesets/rse/tileset/1419.png ../../../app/build/cache/tilesets/rse/tileset/142.png ../../../app/build/cache/tilesets/rse/tileset/1420.png ../../../app/build/cache/tilesets/rse/tileset/1421.png ../../../app/build/cache/tilesets/rse/tileset/1422.png ../../../app/build/cache/tilesets/rse/tileset/1423.png ../../../app/build/cache/tilesets/rse/tileset/1424.png ../../../app/build/cache/tilesets/rse/tileset/1425.png ../../../app/build/cache/tilesets/rse/tileset/1426.png ../../../app/build/cache/tilesets/rse/tileset/1427.png ../../../app/build/cache/tilesets/rse/tileset/1428.png ../../../app/build/cache/tilesets/rse/tileset/1429.png ../../../app/build/cache/tilesets/rse/tileset/143.png ../../../app/build/cache/tilesets/rse/tileset/1430.png ../../../app/build/cache/tilesets/rse/tileset/1431.png ../../../app/build/cache/tilesets/rse/tileset/1432.png ../../../app/build/cache/tilesets/rse/tileset/1433.png ../../../app/build/cache/tilesets/rse/tileset/1434.png ../../../app/build/cache/tilesets/rse/tileset/1435.png ../../../app/build/cache/tilesets/rse/tileset/1436.png ../../../app/build/cache/tilesets/rse/tileset/1437.png ../../../app/build/cache/tilesets/rse/tileset/1438.png ../../../app/build/cache/tilesets/rse/tileset/1439.png ../../../app/build/cache/tilesets/rse/tileset/144.png ../../../app/build/cache/tilesets/rse/tileset/1440.png ../../../app/build/cache/tilesets/rse/tileset/1441.png ../../../app/build/cache/tilesets/rse/tileset/1442.png ../../../app/build/cache/tilesets/rse/tileset/1443.png ../../../app/build/cache/tilesets/rse/tileset/1444.png ../../../app/build/cache/tilesets/rse/tileset/1445.png ../../../app/build/cache/tilesets/rse/tileset/1446.png ../../../app/build/cache/tilesets/rse/tileset/1447.png ../../../app/build/cache/tilesets/rse/tileset/1448.png ../../../app/build/cache/tilesets/rse/tileset/1449.png ../../../app/build/cache/tilesets/rse/tileset/145.png ../../../app/build/cache/tilesets/rse/tileset/1450.png ../../../app/build/cache/tilesets/rse/tileset/1451.png ../../../app/build/cache/tilesets/rse/tileset/1452.png ../../../app/build/cache/tilesets/rse/tileset/1453.png ../../../app/build/cache/tilesets/rse/tileset/1454.png ../../../app/build/cache/tilesets/rse/tileset/1455.png ../../../app/build/cache/tilesets/rse/tileset/1456.png ../../../app/build/cache/tilesets/rse/tileset/1457.png ../../../app/build/cache/tilesets/rse/tileset/1458.png ../../../app/build/cache/tilesets/rse/tileset/1459.png ../../../app/build/cache/tilesets/rse/tileset/146.png ../../../app/build/cache/tilesets/rse/tileset/1460.png ../../../app/build/cache/tilesets/rse/tileset/1461.png ../../../app/build/cache/tilesets/rse/tileset/1462.png ../../../app/build/cache/tilesets/rse/tileset/1463.png ../../../app/build/cache/tilesets/rse/tileset/1464.png ../../../app/build/cache/tilesets/rse/tileset/1465.png ../../../app/build/cache/tilesets/rse/tileset/1466.png ../../../app/build/cache/tilesets/rse/tileset/1467.png ../../../app/build/cache/tilesets/rse/tileset/1468.png ../../../app/build/cache/tilesets/rse/tileset/1469.png ../../../app/build/cache/tilesets/rse/tileset/147.png ../../../app/build/cache/tilesets/rse/tileset/1470.png ../../../app/build/cache/tilesets/rse/tileset/1471.png ../../../app/build/cache/tilesets/rse/tileset/1472.png ../../../app/build/cache/tilesets/rse/tileset/1473.png ../../../app/build/cache/tilesets/rse/tileset/1474.png ../../../app/build/cache/tilesets/rse/tileset/1475.png ../../../app/build/cache/tilesets/rse/tileset/1476.png ../../../app/build/cache/tilesets/rse/tileset/1477.png ../../../app/build/cache/tilesets/rse/tileset/1478.png ../../../app/build/cache/tilesets/rse/tileset/1479.png ../../../app/build/cache/tilesets/rse/tileset/148.png ../../../app/build/cache/tilesets/rse/tileset/1480.png ../../../app/build/cache/tilesets/rse/tileset/1481.png ../../../app/build/cache/tilesets/rse/tileset/1482.png ../../../app/build/cache/tilesets/rse/tileset/1483.png ../../../app/build/cache/tilesets/rse/tileset/1484.png ../../../app/build/cache/tilesets/rse/tileset/1485.png ../../../app/build/cache/tilesets/rse/tileset/1486.png ../../../app/build/cache/tilesets/rse/tileset/1487.png ../../../app/build/cache/tilesets/rse/tileset/1488.png ../../../app/build/cache/tilesets/rse/tileset/1489.png ../../../app/build/cache/tilesets/rse/tileset/149.png ../../../app/build/cache/tilesets/rse/tileset/1490.png ../../../app/build/cache/tilesets/rse/tileset/1491.png ../../../app/build/cache/tilesets/rse/tileset/1492.png ../../../app/build/cache/tilesets/rse/tileset/1493.png ../../../app/build/cache/tilesets/rse/tileset/1494.png ../../../app/build/cache/tilesets/rse/tileset/1495.png ../../../app/build/cache/tilesets/rse/tileset/1496.png ../../../app/build/cache/tilesets/rse/tileset/1497.png ../../../app/build/cache/tilesets/rse/tileset/1498.png ../../../app/build/cache/tilesets/rse/tileset/1499.png ../../../app/build/cache/tilesets/rse/tileset/15.png ../../../app/build/cache/tilesets/rse/tileset/150.png ../../../app/build/cache/tilesets/rse/tileset/1500.png ../../../app/build/cache/tilesets/rse/tileset/1501.png ../../../app/build/cache/tilesets/rse/tileset/1502.png ../../../app/build/cache/tilesets/rse/tileset/1503.png ../../../app/build/cache/tilesets/rse/tileset/1504.png ../../../app/build/cache/tilesets/rse/tileset/1505.png ../../../app/build/cache/tilesets/rse/tileset/1506.png ../../../app/build/cache/tilesets/rse/tileset/1507.png ../../../app/build/cache/tilesets/rse/tileset/1508.png ../../../app/build/cache/tilesets/rse/tileset/1509.png ../../../app/build/cache/tilesets/rse/tileset/151.png ../../../app/build/cache/tilesets/rse/tileset/1510.png ../../../app/build/cache/tilesets/rse/tileset/1511.png ../../../app/build/cache/tilesets/rse/tileset/1512.png ../../../app/build/cache/tilesets/rse/tileset/1513.png ../../../app/build/cache/tilesets/rse/tileset/1514.png ../../../app/build/cache/tilesets/rse/tileset/1515.png ../../../app/build/cache/tilesets/rse/tileset/1516.png ../../../app/build/cache/tilesets/rse/tileset/1517.png ../../../app/build/cache/tilesets/rse/tileset/1518.png ../../../app/build/cache/tilesets/rse/tileset/1519.png ../../../app/build/cache/tilesets/rse/tileset/152.png ../../../app/build/cache/tilesets/rse/tileset/1520.png ../../../app/build/cache/tilesets/rse/tileset/1521.png ../../../app/build/cache/tilesets/rse/tileset/1522.png ../../../app/build/cache/tilesets/rse/tileset/1523.png ../../../app/build/cache/tilesets/rse/tileset/1524.png ../../../app/build/cache/tilesets/rse/tileset/1525.png ../../../app/build/cache/tilesets/rse/tileset/1526.png ../../../app/build/cache/tilesets/rse/tileset/1527.png ../../../app/build/cache/tilesets/rse/tileset/1528.png ../../../app/build/cache/tilesets/rse/tileset/1529.png ../../../app/build/cache/tilesets/rse/tileset/153.png ../../../app/build/cache/tilesets/rse/tileset/1530.png ../../../app/build/cache/tilesets/rse/tileset/1531.png ../../../app/build/cache/tilesets/rse/tileset/1532.png ../../../app/build/cache/tilesets/rse/tileset/1533.png ../../../app/build/cache/tilesets/rse/tileset/1534.png ../../../app/build/cache/tilesets/rse/tileset/1535.png ../../../app/build/cache/tilesets/rse/tileset/1536.png ../../../app/build/cache/tilesets/rse/tileset/1537.png ../../../app/build/cache/tilesets/rse/tileset/1538.png ../../../app/build/cache/tilesets/rse/tileset/1539.png ../../../app/build/cache/tilesets/rse/tileset/154.png ../../../app/build/cache/tilesets/rse/tileset/1540.png ../../../app/build/cache/tilesets/rse/tileset/1541.png ../../../app/build/cache/tilesets/rse/tileset/1542.png ../../../app/build/cache/tilesets/rse/tileset/1543.png ../../../app/build/cache/tilesets/rse/tileset/1544.png ../../../app/build/cache/tilesets/rse/tileset/1545.png ../../../app/build/cache/tilesets/rse/tileset/1546.png ../../../app/build/cache/tilesets/rse/tileset/1547.png ../../../app/build/cache/tilesets/rse/tileset/1548.png ../../../app/build/cache/tilesets/rse/tileset/1549.png ../../../app/build/cache/tilesets/rse/tileset/155.png ../../../app/build/cache/tilesets/rse/tileset/1550.png ../../../app/build/cache/tilesets/rse/tileset/1551.png ../../../app/build/cache/tilesets/rse/tileset/1552.png ../../../app/build/cache/tilesets/rse/tileset/1553.png ../../../app/build/cache/tilesets/rse/tileset/1554.png ../../../app/build/cache/tilesets/rse/tileset/1555.png ../../../app/build/cache/tilesets/rse/tileset/1556.png ../../../app/build/cache/tilesets/rse/tileset/1557.png ../../../app/build/cache/tilesets/rse/tileset/1558.png ../../../app/build/cache/tilesets/rse/tileset/1559.png ../../../app/build/cache/tilesets/rse/tileset/156.png ../../../app/build/cache/tilesets/rse/tileset/1560.png ../../../app/build/cache/tilesets/rse/tileset/1561.png ../../../app/build/cache/tilesets/rse/tileset/1562.png ../../../app/build/cache/tilesets/rse/tileset/1563.png ../../../app/build/cache/tilesets/rse/tileset/1564.png ../../../app/build/cache/tilesets/rse/tileset/1565.png ../../../app/build/cache/tilesets/rse/tileset/1566.png ../../../app/build/cache/tilesets/rse/tileset/1567.png ../../../app/build/cache/tilesets/rse/tileset/1568.png ../../../app/build/cache/tilesets/rse/tileset/1569.png ../../../app/build/cache/tilesets/rse/tileset/157.png ../../../app/build/cache/tilesets/rse/tileset/1570.png ../../../app/build/cache/tilesets/rse/tileset/1571.png ../../../app/build/cache/tilesets/rse/tileset/1572.png ../../../app/build/cache/tilesets/rse/tileset/1573.png ../../../app/build/cache/tilesets/rse/tileset/1574.png ../../../app/build/cache/tilesets/rse/tileset/1575.png ../../../app/build/cache/tilesets/rse/tileset/1576.png ../../../app/build/cache/tilesets/rse/tileset/1577.png ../../../app/build/cache/tilesets/rse/tileset/1578.png ../../../app/build/cache/tilesets/rse/tileset/1579.png ../../../app/build/cache/tilesets/rse/tileset/158.png ../../../app/build/cache/tilesets/rse/tileset/1580.png ../../../app/build/cache/tilesets/rse/tileset/1581.png ../../../app/build/cache/tilesets/rse/tileset/1582.png ../../../app/build/cache/tilesets/rse/tileset/1583.png ../../../app/build/cache/tilesets/rse/tileset/1584.png ../../../app/build/cache/tilesets/rse/tileset/1585.png ../../../app/build/cache/tilesets/rse/tileset/1586.png ../../../app/build/cache/tilesets/rse/tileset/1587.png ../../../app/build/cache/tilesets/rse/tileset/1588.png ../../../app/build/cache/tilesets/rse/tileset/1589.png ../../../app/build/cache/tilesets/rse/tileset/159.png ../../../app/build/cache/tilesets/rse/tileset/1590.png ../../../app/build/cache/tilesets/rse/tileset/1591.png ../../../app/build/cache/tilesets/rse/tileset/1592.png ../../../app/build/cache/tilesets/rse/tileset/1593.png ../../../app/build/cache/tilesets/rse/tileset/1594.png ../../../app/build/cache/tilesets/rse/tileset/1595.png ../../../app/build/cache/tilesets/rse/tileset/1596.png ../../../app/build/cache/tilesets/rse/tileset/1597.png ../../../app/build/cache/tilesets/rse/tileset/1598.png ../../../app/build/cache/tilesets/rse/tileset/1599.png ../../../app/build/cache/tilesets/rse/tileset/16.png ../../../app/build/cache/tilesets/rse/tileset/160.png ../../../app/build/cache/tilesets/rse/tileset/1600.png ../../../app/build/cache/tilesets/rse/tileset/1601.png ../../../app/build/cache/tilesets/rse/tileset/1602.png ../../../app/build/cache/tilesets/rse/tileset/1603.png ../../../app/build/cache/tilesets/rse/tileset/1604.png ../../../app/build/cache/tilesets/rse/tileset/1605.png ../../../app/build/cache/tilesets/rse/tileset/1606.png ../../../app/build/cache/tilesets/rse/tileset/1607.png ../../../app/build/cache/tilesets/rse/tileset/1608.png ../../../app/build/cache/tilesets/rse/tileset/1609.png ../../../app/build/cache/tilesets/rse/tileset/161.png ../../../app/build/cache/tilesets/rse/tileset/1610.png ../../../app/build/cache/tilesets/rse/tileset/1611.png ../../../app/build/cache/tilesets/rse/tileset/1612.png ../../../app/build/cache/tilesets/rse/tileset/1613.png ../../../app/build/cache/tilesets/rse/tileset/1614.png ../../../app/build/cache/tilesets/rse/tileset/1615.png ../../../app/build/cache/tilesets/rse/tileset/1616.png ../../../app/build/cache/tilesets/rse/tileset/1617.png ../../../app/build/cache/tilesets/rse/tileset/1618.png ../../../app/build/cache/tilesets/rse/tileset/1619.png ../../../app/build/cache/tilesets/rse/tileset/162.png ../../../app/build/cache/tilesets/rse/tileset/1620.png ../../../app/build/cache/tilesets/rse/tileset/1621.png ../../../app/build/cache/tilesets/rse/tileset/1622.png ../../../app/build/cache/tilesets/rse/tileset/1623.png ../../../app/build/cache/tilesets/rse/tileset/1624.png ../../../app/build/cache/tilesets/rse/tileset/1625.png ../../../app/build/cache/tilesets/rse/tileset/1626.png ../../../app/build/cache/tilesets/rse/tileset/1627.png ../../../app/build/cache/tilesets/rse/tileset/1628.png ../../../app/build/cache/tilesets/rse/tileset/1629.png ../../../app/build/cache/tilesets/rse/tileset/163.png ../../../app/build/cache/tilesets/rse/tileset/1630.png ../../../app/build/cache/tilesets/rse/tileset/1631.png ../../../app/build/cache/tilesets/rse/tileset/1632.png ../../../app/build/cache/tilesets/rse/tileset/1633.png ../../../app/build/cache/tilesets/rse/tileset/1634.png ../../../app/build/cache/tilesets/rse/tileset/1635.png ../../../app/build/cache/tilesets/rse/tileset/1636.png ../../../app/build/cache/tilesets/rse/tileset/1637.png ../../../app/build/cache/tilesets/rse/tileset/1638.png ../../../app/build/cache/tilesets/rse/tileset/1639.png ../../../app/build/cache/tilesets/rse/tileset/164.png ../../../app/build/cache/tilesets/rse/tileset/1640.png ../../../app/build/cache/tilesets/rse/tileset/1641.png ../../../app/build/cache/tilesets/rse/tileset/1642.png ../../../app/build/cache/tilesets/rse/tileset/1643.png ../../../app/build/cache/tilesets/rse/tileset/1644.png ../../../app/build/cache/tilesets/rse/tileset/1645.png ../../../app/build/cache/tilesets/rse/tileset/1646.png ../../../app/build/cache/tilesets/rse/tileset/1647.png ../../../app/build/cache/tilesets/rse/tileset/1648.png ../../../app/build/cache/tilesets/rse/tileset/1649.png ../../../app/build/cache/tilesets/rse/tileset/165.png ../../../app/build/cache/tilesets/rse/tileset/1650.png ../../../app/build/cache/tilesets/rse/tileset/1651.png ../../../app/build/cache/tilesets/rse/tileset/1652.png ../../../app/build/cache/tilesets/rse/tileset/1653.png ../../../app/build/cache/tilesets/rse/tileset/1654.png ../../../app/build/cache/tilesets/rse/tileset/1655.png ../../../app/build/cache/tilesets/rse/tileset/1656.png ../../../app/build/cache/tilesets/rse/tileset/1657.png ../../../app/build/cache/tilesets/rse/tileset/1658.png ../../../app/build/cache/tilesets/rse/tileset/1659.png ../../../app/build/cache/tilesets/rse/tileset/166.png ../../../app/build/cache/tilesets/rse/tileset/1660.png ../../../app/build/cache/tilesets/rse/tileset/1661.png ../../../app/build/cache/tilesets/rse/tileset/1662.png ../../../app/build/cache/tilesets/rse/tileset/1663.png ../../../app/build/cache/tilesets/rse/tileset/1664.png ../../../app/build/cache/tilesets/rse/tileset/1665.png ../../../app/build/cache/tilesets/rse/tileset/1666.png ../../../app/build/cache/tilesets/rse/tileset/1667.png ../../../app/build/cache/tilesets/rse/tileset/1668.png ../../../app/build/cache/tilesets/rse/tileset/1669.png ../../../app/build/cache/tilesets/rse/tileset/167.png ../../../app/build/cache/tilesets/rse/tileset/1670.png ../../../app/build/cache/tilesets/rse/tileset/1671.png ../../../app/build/cache/tilesets/rse/tileset/1672.png ../../../app/build/cache/tilesets/rse/tileset/1673.png ../../../app/build/cache/tilesets/rse/tileset/1674.png ../../../app/build/cache/tilesets/rse/tileset/1675.png ../../../app/build/cache/tilesets/rse/tileset/1676.png ../../../app/build/cache/tilesets/rse/tileset/1677.png ../../../app/build/cache/tilesets/rse/tileset/1678.png ../../../app/build/cache/tilesets/rse/tileset/1679.png ../../../app/build/cache/tilesets/rse/tileset/168.png ../../../app/build/cache/tilesets/rse/tileset/1680.png ../../../app/build/cache/tilesets/rse/tileset/1681.png ../../../app/build/cache/tilesets/rse/tileset/1682.png ../../../app/build/cache/tilesets/rse/tileset/1683.png ../../../app/build/cache/tilesets/rse/tileset/1684.png ../../../app/build/cache/tilesets/rse/tileset/1685.png ../../../app/build/cache/tilesets/rse/tileset/1686.png ../../../app/build/cache/tilesets/rse/tileset/1687.png ../../../app/build/cache/tilesets/rse/tileset/1688.png ../../../app/build/cache/tilesets/rse/tileset/1689.png ../../../app/build/cache/tilesets/rse/tileset/169.png ../../../app/build/cache/tilesets/rse/tileset/1690.png ../../../app/build/cache/tilesets/rse/tileset/1691.png ../../../app/build/cache/tilesets/rse/tileset/1692.png ../../../app/build/cache/tilesets/rse/tileset/1693.png ../../../app/build/cache/tilesets/rse/tileset/1694.png ../../../app/build/cache/tilesets/rse/tileset/1695.png ../../../app/build/cache/tilesets/rse/tileset/1696.png ../../../app/build/cache/tilesets/rse/tileset/1697.png ../../../app/build/cache/tilesets/rse/tileset/1698.png ../../../app/build/cache/tilesets/rse/tileset/1699.png ../../../app/build/cache/tilesets/rse/tileset/17.png ../../../app/build/cache/tilesets/rse/tileset/170.png ../../../app/build/cache/tilesets/rse/tileset/1700.png ../../../app/build/cache/tilesets/rse/tileset/1701.png ../../../app/build/cache/tilesets/rse/tileset/1702.png ../../../app/build/cache/tilesets/rse/tileset/1703.png ../../../app/build/cache/tilesets/rse/tileset/1704.png ../../../app/build/cache/tilesets/rse/tileset/1705.png ../../../app/build/cache/tilesets/rse/tileset/1706.png ../../../app/build/cache/tilesets/rse/tileset/1707.png ../../../app/build/cache/tilesets/rse/tileset/1708.png ../../../app/build/cache/tilesets/rse/tileset/1709.png ../../../app/build/cache/tilesets/rse/tileset/171.png ../../../app/build/cache/tilesets/rse/tileset/1710.png ../../../app/build/cache/tilesets/rse/tileset/1711.png ../../../app/build/cache/tilesets/rse/tileset/1712.png ../../../app/build/cache/tilesets/rse/tileset/1713.png ../../../app/build/cache/tilesets/rse/tileset/1714.png ../../../app/build/cache/tilesets/rse/tileset/1715.png ../../../app/build/cache/tilesets/rse/tileset/1716.png ../../../app/build/cache/tilesets/rse/tileset/1717.png ../../../app/build/cache/tilesets/rse/tileset/1718.png ../../../app/build/cache/tilesets/rse/tileset/1719.png ../../../app/build/cache/tilesets/rse/tileset/172.png ../../../app/build/cache/tilesets/rse/tileset/1720.png ../../../app/build/cache/tilesets/rse/tileset/1721.png ../../../app/build/cache/tilesets/rse/tileset/1722.png ../../../app/build/cache/tilesets/rse/tileset/1723.png ../../../app/build/cache/tilesets/rse/tileset/1724.png ../../../app/build/cache/tilesets/rse/tileset/1725.png ../../../app/build/cache/tilesets/rse/tileset/1726.png ../../../app/build/cache/tilesets/rse/tileset/1727.png ../../../app/build/cache/tilesets/rse/tileset/1728.png ../../../app/build/cache/tilesets/rse/tileset/1729.png ../../../app/build/cache/tilesets/rse/tileset/173.png ../../../app/build/cache/tilesets/rse/tileset/1730.png ../../../app/build/cache/tilesets/rse/tileset/1731.png ../../../app/build/cache/tilesets/rse/tileset/1732.png ../../../app/build/cache/tilesets/rse/tileset/1733.png ../../../app/build/cache/tilesets/rse/tileset/1734.png ../../../app/build/cache/tilesets/rse/tileset/1735.png ../../../app/build/cache/tilesets/rse/tileset/1736.png ../../../app/build/cache/tilesets/rse/tileset/1737.png ../../../app/build/cache/tilesets/rse/tileset/1738.png ../../../app/build/cache/tilesets/rse/tileset/1739.png ../../../app/build/cache/tilesets/rse/tileset/174.png ../../../app/build/cache/tilesets/rse/tileset/1740.png ../../../app/build/cache/tilesets/rse/tileset/1741.png ../../../app/build/cache/tilesets/rse/tileset/1742.png ../../../app/build/cache/tilesets/rse/tileset/1743.png ../../../app/build/cache/tilesets/rse/tileset/1744.png ../../../app/build/cache/tilesets/rse/tileset/1745.png ../../../app/build/cache/tilesets/rse/tileset/1746.png ../../../app/build/cache/tilesets/rse/tileset/1747.png ../../../app/build/cache/tilesets/rse/tileset/1748.png ../../../app/build/cache/tilesets/rse/tileset/1749.png ../../../app/build/cache/tilesets/rse/tileset/175.png ../../../app/build/cache/tilesets/rse/tileset/1750.png ../../../app/build/cache/tilesets/rse/tileset/1751.png ../../../app/build/cache/tilesets/rse/tileset/1752.png ../../../app/build/cache/tilesets/rse/tileset/1753.png ../../../app/build/cache/tilesets/rse/tileset/1754.png ../../../app/build/cache/tilesets/rse/tileset/1755.png ../../../app/build/cache/tilesets/rse/tileset/1756.png ../../../app/build/cache/tilesets/rse/tileset/1757.png ../../../app/build/cache/tilesets/rse/tileset/1758.png ../../../app/build/cache/tilesets/rse/tileset/1759.png ../../../app/build/cache/tilesets/rse/tileset/176.png ../../../app/build/cache/tilesets/rse/tileset/1760.png ../../../app/build/cache/tilesets/rse/tileset/1761.png ../../../app/build/cache/tilesets/rse/tileset/1762.png ../../../app/build/cache/tilesets/rse/tileset/1763.png ../../../app/build/cache/tilesets/rse/tileset/1764.png ../../../app/build/cache/tilesets/rse/tileset/1765.png ../../../app/build/cache/tilesets/rse/tileset/1766.png ../../../app/build/cache/tilesets/rse/tileset/1767.png ../../../app/build/cache/tilesets/rse/tileset/1768.png ../../../app/build/cache/tilesets/rse/tileset/1769.png ../../../app/build/cache/tilesets/rse/tileset/177.png ../../../app/build/cache/tilesets/rse/tileset/1770.png ../../../app/build/cache/tilesets/rse/tileset/1771.png ../../../app/build/cache/tilesets/rse/tileset/1772.png ../../../app/build/cache/tilesets/rse/tileset/1773.png ../../../app/build/cache/tilesets/rse/tileset/1774.png ../../../app/build/cache/tilesets/rse/tileset/1775.png ../../../app/build/cache/tilesets/rse/tileset/1776.png ../../../app/build/cache/tilesets/rse/tileset/1777.png ../../../app/build/cache/tilesets/rse/tileset/1778.png ../../../app/build/cache/tilesets/rse/tileset/1779.png ../../../app/build/cache/tilesets/rse/tileset/178.png ../../../app/build/cache/tilesets/rse/tileset/1780.png ../../../app/build/cache/tilesets/rse/tileset/1781.png ../../../app/build/cache/tilesets/rse/tileset/1782.png ../../../app/build/cache/tilesets/rse/tileset/1783.png ../../../app/build/cache/tilesets/rse/tileset/1784.png ../../../app/build/cache/tilesets/rse/tileset/1785.png ../../../app/build/cache/tilesets/rse/tileset/1786.png ../../../app/build/cache/tilesets/rse/tileset/1787.png ../../../app/build/cache/tilesets/rse/tileset/1788.png ../../../app/build/cache/tilesets/rse/tileset/1789.png ../../../app/build/cache/tilesets/rse/tileset/179.png ../../../app/build/cache/tilesets/rse/tileset/1790.png ../../../app/build/cache/tilesets/rse/tileset/1791.png ../../../app/build/cache/tilesets/rse/tileset/1792.png ../../../app/build/cache/tilesets/rse/tileset/1793.png ../../../app/build/cache/tilesets/rse/tileset/1794.png ../../../app/build/cache/tilesets/rse/tileset/1795.png ../../../app/build/cache/tilesets/rse/tileset/1796.png ../../../app/build/cache/tilesets/rse/tileset/1797.png ../../../app/build/cache/tilesets/rse/tileset/1798.png ../../../app/build/cache/tilesets/rse/tileset/1799.png ../../../app/build/cache/tilesets/rse/tileset/18.png ../../../app/build/cache/tilesets/rse/tileset/180.png ../../../app/build/cache/tilesets/rse/tileset/1800.png ../../../app/build/cache/tilesets/rse/tileset/1801.png ../../../app/build/cache/tilesets/rse/tileset/1802.png ../../../app/build/cache/tilesets/rse/tileset/1803.png ../../../app/build/cache/tilesets/rse/tileset/1804.png ../../../app/build/cache/tilesets/rse/tileset/1805.png ../../../app/build/cache/tilesets/rse/tileset/1806.png ../../../app/build/cache/tilesets/rse/tileset/1807.png ../../../app/build/cache/tilesets/rse/tileset/1808.png ../../../app/build/cache/tilesets/rse/tileset/1809.png ../../../app/build/cache/tilesets/rse/tileset/181.png ../../../app/build/cache/tilesets/rse/tileset/1810.png ../../../app/build/cache/tilesets/rse/tileset/1811.png ../../../app/build/cache/tilesets/rse/tileset/1812.png ../../../app/build/cache/tilesets/rse/tileset/1813.png ../../../app/build/cache/tilesets/rse/tileset/1814.png ../../../app/build/cache/tilesets/rse/tileset/1815.png ../../../app/build/cache/tilesets/rse/tileset/1816.png ../../../app/build/cache/tilesets/rse/tileset/1817.png ../../../app/build/cache/tilesets/rse/tileset/1818.png ../../../app/build/cache/tilesets/rse/tileset/1819.png ../../../app/build/cache/tilesets/rse/tileset/182.png ../../../app/build/cache/tilesets/rse/tileset/1820.png ../../../app/build/cache/tilesets/rse/tileset/1821.png ../../../app/build/cache/tilesets/rse/tileset/1822.png ../../../app/build/cache/tilesets/rse/tileset/1823.png ../../../app/build/cache/tilesets/rse/tileset/1824.png ../../../app/build/cache/tilesets/rse/tileset/1825.png ../../../app/build/cache/tilesets/rse/tileset/1826.png ../../../app/build/cache/tilesets/rse/tileset/1827.png ../../../app/build/cache/tilesets/rse/tileset/1828.png ../../../app/build/cache/tilesets/rse/tileset/1829.png ../../../app/build/cache/tilesets/rse/tileset/183.png ../../../app/build/cache/tilesets/rse/tileset/1830.png ../../../app/build/cache/tilesets/rse/tileset/1831.png ../../../app/build/cache/tilesets/rse/tileset/1832.png ../../../app/build/cache/tilesets/rse/tileset/1833.png ../../../app/build/cache/tilesets/rse/tileset/1834.png ../../../app/build/cache/tilesets/rse/tileset/1835.png ../../../app/build/cache/tilesets/rse/tileset/1836.png ../../../app/build/cache/tilesets/rse/tileset/1837.png ../../../app/build/cache/tilesets/rse/tileset/1838.png ../../../app/build/cache/tilesets/rse/tileset/1839.png ../../../app/build/cache/tilesets/rse/tileset/184.png ../../../app/build/cache/tilesets/rse/tileset/1840.png ../../../app/build/cache/tilesets/rse/tileset/1841.png ../../../app/build/cache/tilesets/rse/tileset/1842.png ../../../app/build/cache/tilesets/rse/tileset/1843.png ../../../app/build/cache/tilesets/rse/tileset/1844.png ../../../app/build/cache/tilesets/rse/tileset/1845.png ../../../app/build/cache/tilesets/rse/tileset/1846.png ../../../app/build/cache/tilesets/rse/tileset/1847.png ../../../app/build/cache/tilesets/rse/tileset/1848.png ../../../app/build/cache/tilesets/rse/tileset/1849.png ../../../app/build/cache/tilesets/rse/tileset/185.png ../../../app/build/cache/tilesets/rse/tileset/1850.png ../../../app/build/cache/tilesets/rse/tileset/1851.png ../../../app/build/cache/tilesets/rse/tileset/1852.png ../../../app/build/cache/tilesets/rse/tileset/1853.png ../../../app/build/cache/tilesets/rse/tileset/1854.png ../../../app/build/cache/tilesets/rse/tileset/1855.png ../../../app/build/cache/tilesets/rse/tileset/1856.png ../../../app/build/cache/tilesets/rse/tileset/1857.png ../../../app/build/cache/tilesets/rse/tileset/1858.png ../../../app/build/cache/tilesets/rse/tileset/1859.png ../../../app/build/cache/tilesets/rse/tileset/186.png ../../../app/build/cache/tilesets/rse/tileset/1860.png ../../../app/build/cache/tilesets/rse/tileset/1861.png ../../../app/build/cache/tilesets/rse/tileset/1862.png ../../../app/build/cache/tilesets/rse/tileset/1863.png ../../../app/build/cache/tilesets/rse/tileset/1864.png ../../../app/build/cache/tilesets/rse/tileset/1865.png ../../../app/build/cache/tilesets/rse/tileset/1866.png ../../../app/build/cache/tilesets/rse/tileset/1867.png ../../../app/build/cache/tilesets/rse/tileset/1868.png ../../../app/build/cache/tilesets/rse/tileset/1869.png ../../../app/build/cache/tilesets/rse/tileset/187.png ../../../app/build/cache/tilesets/rse/tileset/1870.png ../../../app/build/cache/tilesets/rse/tileset/1871.png ../../../app/build/cache/tilesets/rse/tileset/1872.png ../../../app/build/cache/tilesets/rse/tileset/1873.png ../../../app/build/cache/tilesets/rse/tileset/1874.png ../../../app/build/cache/tilesets/rse/tileset/1875.png ../../../app/build/cache/tilesets/rse/tileset/1876.png ../../../app/build/cache/tilesets/rse/tileset/1877.png ../../../app/build/cache/tilesets/rse/tileset/1878.png ../../../app/build/cache/tilesets/rse/tileset/1879.png ../../../app/build/cache/tilesets/rse/tileset/188.png ../../../app/build/cache/tilesets/rse/tileset/1880.png ../../../app/build/cache/tilesets/rse/tileset/1881.png ../../../app/build/cache/tilesets/rse/tileset/1882.png ../../../app/build/cache/tilesets/rse/tileset/1883.png ../../../app/build/cache/tilesets/rse/tileset/1884.png ../../../app/build/cache/tilesets/rse/tileset/1885.png ../../../app/build/cache/tilesets/rse/tileset/1886.png ../../../app/build/cache/tilesets/rse/tileset/1887.png ../../../app/build/cache/tilesets/rse/tileset/1888.png ../../../app/build/cache/tilesets/rse/tileset/1889.png ../../../app/build/cache/tilesets/rse/tileset/189.png ../../../app/build/cache/tilesets/rse/tileset/1890.png ../../../app/build/cache/tilesets/rse/tileset/1891.png ../../../app/build/cache/tilesets/rse/tileset/1892.png ../../../app/build/cache/tilesets/rse/tileset/1893.png ../../../app/build/cache/tilesets/rse/tileset/1894.png ../../../app/build/cache/tilesets/rse/tileset/1895.png ../../../app/build/cache/tilesets/rse/tileset/1896.png ../../../app/build/cache/tilesets/rse/tileset/1897.png ../../../app/build/cache/tilesets/rse/tileset/1898.png ../../../app/build/cache/tilesets/rse/tileset/1899.png ../../../app/build/cache/tilesets/rse/tileset/19.png ../../../app/build/cache/tilesets/rse/tileset/190.png ../../../app/build/cache/tilesets/rse/tileset/1900.png ../../../app/build/cache/tilesets/rse/tileset/1901.png ../../../app/build/cache/tilesets/rse/tileset/1902.png ../../../app/build/cache/tilesets/rse/tileset/1903.png ../../../app/build/cache/tilesets/rse/tileset/1904.png ../../../app/build/cache/tilesets/rse/tileset/1905.png ../../../app/build/cache/tilesets/rse/tileset/1906.png ../../../app/build/cache/tilesets/rse/tileset/1907.png ../../../app/build/cache/tilesets/rse/tileset/1908.png ../../../app/build/cache/tilesets/rse/tileset/1909.png ../../../app/build/cache/tilesets/rse/tileset/191.png ../../../app/build/cache/tilesets/rse/tileset/1910.png ../../../app/build/cache/tilesets/rse/tileset/1911.png ../../../app/build/cache/tilesets/rse/tileset/1912.png ../../../app/build/cache/tilesets/rse/tileset/1913.png ../../../app/build/cache/tilesets/rse/tileset/1914.png ../../../app/build/cache/tilesets/rse/tileset/1915.png ../../../app/build/cache/tilesets/rse/tileset/1916.png ../../../app/build/cache/tilesets/rse/tileset/1917.png ../../../app/build/cache/tilesets/rse/tileset/1918.png ../../../app/build/cache/tilesets/rse/tileset/1919.png ../../../app/build/cache/tilesets/rse/tileset/192.png ../../../app/build/cache/tilesets/rse/tileset/1920.png ../../../app/build/cache/tilesets/rse/tileset/1921.png ../../../app/build/cache/tilesets/rse/tileset/1922.png ../../../app/build/cache/tilesets/rse/tileset/1923.png ../../../app/build/cache/tilesets/rse/tileset/1924.png ../../../app/build/cache/tilesets/rse/tileset/1925.png ../../../app/build/cache/tilesets/rse/tileset/1926.png ../../../app/build/cache/tilesets/rse/tileset/1927.png ../../../app/build/cache/tilesets/rse/tileset/1928.png ../../../app/build/cache/tilesets/rse/tileset/1929.png ../../../app/build/cache/tilesets/rse/tileset/193.png ../../../app/build/cache/tilesets/rse/tileset/1930.png ../../../app/build/cache/tilesets/rse/tileset/1931.png ../../../app/build/cache/tilesets/rse/tileset/1932.png ../../../app/build/cache/tilesets/rse/tileset/1933.png ../../../app/build/cache/tilesets/rse/tileset/1934.png ../../../app/build/cache/tilesets/rse/tileset/1935.png ../../../app/build/cache/tilesets/rse/tileset/1936.png ../../../app/build/cache/tilesets/rse/tileset/1937.png ../../../app/build/cache/tilesets/rse/tileset/1938.png ../../../app/build/cache/tilesets/rse/tileset/1939.png ../../../app/build/cache/tilesets/rse/tileset/194.png ../../../app/build/cache/tilesets/rse/tileset/1940.png ../../../app/build/cache/tilesets/rse/tileset/1941.png ../../../app/build/cache/tilesets/rse/tileset/1942.png ../../../app/build/cache/tilesets/rse/tileset/1943.png ../../../app/build/cache/tilesets/rse/tileset/1944.png ../../../app/build/cache/tilesets/rse/tileset/1945.png ../../../app/build/cache/tilesets/rse/tileset/1946.png ../../../app/build/cache/tilesets/rse/tileset/1947.png ../../../app/build/cache/tilesets/rse/tileset/1948.png ../../../app/build/cache/tilesets/rse/tileset/1949.png ../../../app/build/cache/tilesets/rse/tileset/195.png ../../../app/build/cache/tilesets/rse/tileset/1950.png ../../../app/build/cache/tilesets/rse/tileset/1951.png ../../../app/build/cache/tilesets/rse/tileset/1952.png ../../../app/build/cache/tilesets/rse/tileset/1953.png ../../../app/build/cache/tilesets/rse/tileset/1954.png ../../../app/build/cache/tilesets/rse/tileset/1955.png ../../../app/build/cache/tilesets/rse/tileset/1956.png ../../../app/build/cache/tilesets/rse/tileset/1957.png ../../../app/build/cache/tilesets/rse/tileset/1958.png ../../../app/build/cache/tilesets/rse/tileset/1959.png ../../../app/build/cache/tilesets/rse/tileset/196.png ../../../app/build/cache/tilesets/rse/tileset/1960.png ../../../app/build/cache/tilesets/rse/tileset/1961.png ../../../app/build/cache/tilesets/rse/tileset/1962.png ../../../app/build/cache/tilesets/rse/tileset/1963.png ../../../app/build/cache/tilesets/rse/tileset/1964.png ../../../app/build/cache/tilesets/rse/tileset/1965.png ../../../app/build/cache/tilesets/rse/tileset/1966.png ../../../app/build/cache/tilesets/rse/tileset/1967.png ../../../app/build/cache/tilesets/rse/tileset/1968.png ../../../app/build/cache/tilesets/rse/tileset/1969.png ../../../app/build/cache/tilesets/rse/tileset/197.png ../../../app/build/cache/tilesets/rse/tileset/1970.png ../../../app/build/cache/tilesets/rse/tileset/1971.png ../../../app/build/cache/tilesets/rse/tileset/1972.png ../../../app/build/cache/tilesets/rse/tileset/1973.png ../../../app/build/cache/tilesets/rse/tileset/1974.png ../../../app/build/cache/tilesets/rse/tileset/1975.png ../../../app/build/cache/tilesets/rse/tileset/1976.png ../../../app/build/cache/tilesets/rse/tileset/1977.png ../../../app/build/cache/tilesets/rse/tileset/1978.png ../../../app/build/cache/tilesets/rse/tileset/1979.png ../../../app/build/cache/tilesets/rse/tileset/198.png ../../../app/build/cache/tilesets/rse/tileset/1980.png ../../../app/build/cache/tilesets/rse/tileset/1981.png ../../../app/build/cache/tilesets/rse/tileset/1982.png ../../../app/build/cache/tilesets/rse/tileset/1983.png ../../../app/build/cache/tilesets/rse/tileset/1984.png ../../../app/build/cache/tilesets/rse/tileset/1985.png ../../../app/build/cache/tilesets/rse/tileset/1986.png ../../../app/build/cache/tilesets/rse/tileset/1987.png ../../../app/build/cache/tilesets/rse/tileset/1988.png ../../../app/build/cache/tilesets/rse/tileset/1989.png ../../../app/build/cache/tilesets/rse/tileset/199.png ../../../app/build/cache/tilesets/rse/tileset/1990.png ../../../app/build/cache/tilesets/rse/tileset/1991.png ../../../app/build/cache/tilesets/rse/tileset/1992.png ../../../app/build/cache/tilesets/rse/tileset/1993.png ../../../app/build/cache/tilesets/rse/tileset/1994.png ../../../app/build/cache/tilesets/rse/tileset/1995.png ../../../app/build/cache/tilesets/rse/tileset/1996.png ../../../app/build/cache/tilesets/rse/tileset/1997.png ../../../app/build/cache/tilesets/rse/tileset/1998.png ../../../app/build/cache/tilesets/rse/tileset/1999.png ../../../app/build/cache/tilesets/rse/tileset/2.png ../../../app/build/cache/tilesets/rse/tileset/20.png ../../../app/build/cache/tilesets/rse/tileset/200.png ../../../app/build/cache/tilesets/rse/tileset/2000.png ../../../app/build/cache/tilesets/rse/tileset/2001.png ../../../app/build/cache/tilesets/rse/tileset/2002.png ../../../app/build/cache/tilesets/rse/tileset/2003.png ../../../app/build/cache/tilesets/rse/tileset/2004.png ../../../app/build/cache/tilesets/rse/tileset/2005.png ../../../app/build/cache/tilesets/rse/tileset/2006.png ../../../app/build/cache/tilesets/rse/tileset/2007.png ../../../app/build/cache/tilesets/rse/tileset/2008.png ../../../app/build/cache/tilesets/rse/tileset/2009.png ../../../app/build/cache/tilesets/rse/tileset/201.png ../../../app/build/cache/tilesets/rse/tileset/2010.png ../../../app/build/cache/tilesets/rse/tileset/2011.png ../../../app/build/cache/tilesets/rse/tileset/2012.png ../../../app/build/cache/tilesets/rse/tileset/2013.png ../../../app/build/cache/tilesets/rse/tileset/2014.png ../../../app/build/cache/tilesets/rse/tileset/2015.png ../../../app/build/cache/tilesets/rse/tileset/2016.png ../../../app/build/cache/tilesets/rse/tileset/2017.png ../../../app/build/cache/tilesets/rse/tileset/2018.png ../../../app/build/cache/tilesets/rse/tileset/2019.png ../../../app/build/cache/tilesets/rse/tileset/202.png ../../../app/build/cache/tilesets/rse/tileset/2020.png ../../../app/build/cache/tilesets/rse/tileset/2021.png ../../../app/build/cache/tilesets/rse/tileset/2022.png ../../../app/build/cache/tilesets/rse/tileset/2023.png ../../../app/build/cache/tilesets/rse/tileset/2024.png ../../../app/build/cache/tilesets/rse/tileset/2025.png ../../../app/build/cache/tilesets/rse/tileset/2026.png ../../../app/build/cache/tilesets/rse/tileset/2027.png ../../../app/build/cache/tilesets/rse/tileset/2028.png ../../../app/build/cache/tilesets/rse/tileset/2029.png ../../../app/build/cache/tilesets/rse/tileset/203.png ../../../app/build/cache/tilesets/rse/tileset/2030.png ../../../app/build/cache/tilesets/rse/tileset/2031.png ../../../app/build/cache/tilesets/rse/tileset/2032.png ../../../app/build/cache/tilesets/rse/tileset/2033.png ../../../app/build/cache/tilesets/rse/tileset/2034.png ../../../app/build/cache/tilesets/rse/tileset/2035.png ../../../app/build/cache/tilesets/rse/tileset/2036.png ../../../app/build/cache/tilesets/rse/tileset/2037.png ../../../app/build/cache/tilesets/rse/tileset/2038.png ../../../app/build/cache/tilesets/rse/tileset/2039.png ../../../app/build/cache/tilesets/rse/tileset/204.png ../../../app/build/cache/tilesets/rse/tileset/2040.png ../../../app/build/cache/tilesets/rse/tileset/2041.png ../../../app/build/cache/tilesets/rse/tileset/2042.png ../../../app/build/cache/tilesets/rse/tileset/2043.png ../../../app/build/cache/tilesets/rse/tileset/2044.png ../../../app/build/cache/tilesets/rse/tileset/2045.png ../../../app/build/cache/tilesets/rse/tileset/2046.png ../../../app/build/cache/tilesets/rse/tileset/2047.png ../../../app/build/cache/tilesets/rse/tileset/2048.png ../../../app/build/cache/tilesets/rse/tileset/2049.png ../../../app/build/cache/tilesets/rse/tileset/205.png ../../../app/build/cache/tilesets/rse/tileset/2050.png ../../../app/build/cache/tilesets/rse/tileset/2051.png ../../../app/build/cache/tilesets/rse/tileset/2052.png ../../../app/build/cache/tilesets/rse/tileset/2053.png ../../../app/build/cache/tilesets/rse/tileset/2054.png ../../../app/build/cache/tilesets/rse/tileset/2055.png ../../../app/build/cache/tilesets/rse/tileset/2056.png ../../../app/build/cache/tilesets/rse/tileset/2057.png ../../../app/build/cache/tilesets/rse/tileset/2058.png ../../../app/build/cache/tilesets/rse/tileset/2059.png ../../../app/build/cache/tilesets/rse/tileset/206.png ../../../app/build/cache/tilesets/rse/tileset/2060.png ../../../app/build/cache/tilesets/rse/tileset/2061.png ../../../app/build/cache/tilesets/rse/tileset/2062.png ../../../app/build/cache/tilesets/rse/tileset/2063.png ../../../app/build/cache/tilesets/rse/tileset/2064.png ../../../app/build/cache/tilesets/rse/tileset/2065.png ../../../app/build/cache/tilesets/rse/tileset/2066.png ../../../app/build/cache/tilesets/rse/tileset/2067.png ../../../app/build/cache/tilesets/rse/tileset/2068.png ../../../app/build/cache/tilesets/rse/tileset/2069.png ../../../app/build/cache/tilesets/rse/tileset/207.png ../../../app/build/cache/tilesets/rse/tileset/2070.png ../../../app/build/cache/tilesets/rse/tileset/2071.png ../../../app/build/cache/tilesets/rse/tileset/2072.png ../../../app/build/cache/tilesets/rse/tileset/2073.png ../../../app/build/cache/tilesets/rse/tileset/2074.png ../../../app/build/cache/tilesets/rse/tileset/2075.png ../../../app/build/cache/tilesets/rse/tileset/2076.png ../../../app/build/cache/tilesets/rse/tileset/2077.png ../../../app/build/cache/tilesets/rse/tileset/2078.png ../../../app/build/cache/tilesets/rse/tileset/2079.png ../../../app/build/cache/tilesets/rse/tileset/208.png ../../../app/build/cache/tilesets/rse/tileset/2080.png ../../../app/build/cache/tilesets/rse/tileset/2081.png ../../../app/build/cache/tilesets/rse/tileset/2082.png ../../../app/build/cache/tilesets/rse/tileset/2083.png ../../../app/build/cache/tilesets/rse/tileset/2084.png ../../../app/build/cache/tilesets/rse/tileset/2085.png ../../../app/build/cache/tilesets/rse/tileset/2086.png ../../../app/build/cache/tilesets/rse/tileset/2087.png ../../../app/build/cache/tilesets/rse/tileset/2088.png ../../../app/build/cache/tilesets/rse/tileset/2089.png ../../../app/build/cache/tilesets/rse/tileset/209.png ../../../app/build/cache/tilesets/rse/tileset/2090.png ../../../app/build/cache/tilesets/rse/tileset/2091.png ../../../app/build/cache/tilesets/rse/tileset/2092.png ../../../app/build/cache/tilesets/rse/tileset/2093.png ../../../app/build/cache/tilesets/rse/tileset/2094.png ../../../app/build/cache/tilesets/rse/tileset/2095.png ../../../app/build/cache/tilesets/rse/tileset/2096.png ../../../app/build/cache/tilesets/rse/tileset/2097.png ../../../app/build/cache/tilesets/rse/tileset/2098.png ../../../app/build/cache/tilesets/rse/tileset/2099.png ../../../app/build/cache/tilesets/rse/tileset/21.png ../../../app/build/cache/tilesets/rse/tileset/210.png ../../../app/build/cache/tilesets/rse/tileset/2100.png ../../../app/build/cache/tilesets/rse/tileset/2101.png ../../../app/build/cache/tilesets/rse/tileset/2102.png ../../../app/build/cache/tilesets/rse/tileset/2103.png ../../../app/build/cache/tilesets/rse/tileset/2104.png ../../../app/build/cache/tilesets/rse/tileset/2105.png ../../../app/build/cache/tilesets/rse/tileset/2106.png ../../../app/build/cache/tilesets/rse/tileset/2107.png ../../../app/build/cache/tilesets/rse/tileset/2108.png ../../../app/build/cache/tilesets/rse/tileset/2109.png ../../../app/build/cache/tilesets/rse/tileset/211.png ../../../app/build/cache/tilesets/rse/tileset/2110.png ../../../app/build/cache/tilesets/rse/tileset/2111.png ../../../app/build/cache/tilesets/rse/tileset/2112.png ../../../app/build/cache/tilesets/rse/tileset/2113.png ../../../app/build/cache/tilesets/rse/tileset/2114.png ../../../app/build/cache/tilesets/rse/tileset/2115.png ../../../app/build/cache/tilesets/rse/tileset/2116.png ../../../app/build/cache/tilesets/rse/tileset/2117.png ../../../app/build/cache/tilesets/rse/tileset/2118.png ../../../app/build/cache/tilesets/rse/tileset/2119.png ../../../app/build/cache/tilesets/rse/tileset/212.png ../../../app/build/cache/tilesets/rse/tileset/2120.png ../../../app/build/cache/tilesets/rse/tileset/2121.png ../../../app/build/cache/tilesets/rse/tileset/2122.png ../../../app/build/cache/tilesets/rse/tileset/2123.png ../../../app/build/cache/tilesets/rse/tileset/2124.png ../../../app/build/cache/tilesets/rse/tileset/2125.png ../../../app/build/cache/tilesets/rse/tileset/2126.png ../../../app/build/cache/tilesets/rse/tileset/2127.png ../../../app/build/cache/tilesets/rse/tileset/2128.png ../../../app/build/cache/tilesets/rse/tileset/2129.png ../../../app/build/cache/tilesets/rse/tileset/213.png ../../../app/build/cache/tilesets/rse/tileset/2130.png ../../../app/build/cache/tilesets/rse/tileset/2131.png ../../../app/build/cache/tilesets/rse/tileset/2132.png ../../../app/build/cache/tilesets/rse/tileset/2133.png ../../../app/build/cache/tilesets/rse/tileset/2134.png ../../../app/build/cache/tilesets/rse/tileset/2135.png ../../../app/build/cache/tilesets/rse/tileset/2136.png ../../../app/build/cache/tilesets/rse/tileset/2137.png ../../../app/build/cache/tilesets/rse/tileset/2138.png ../../../app/build/cache/tilesets/rse/tileset/2139.png ../../../app/build/cache/tilesets/rse/tileset/214.png ../../../app/build/cache/tilesets/rse/tileset/2140.png ../../../app/build/cache/tilesets/rse/tileset/2141.png ../../../app/build/cache/tilesets/rse/tileset/2142.png ../../../app/build/cache/tilesets/rse/tileset/2143.png ../../../app/build/cache/tilesets/rse/tileset/2144.png ../../../app/build/cache/tilesets/rse/tileset/2145.png ../../../app/build/cache/tilesets/rse/tileset/2146.png ../../../app/build/cache/tilesets/rse/tileset/2147.png ../../../app/build/cache/tilesets/rse/tileset/2148.png ../../../app/build/cache/tilesets/rse/tileset/2149.png ../../../app/build/cache/tilesets/rse/tileset/215.png ../../../app/build/cache/tilesets/rse/tileset/2150.png ../../../app/build/cache/tilesets/rse/tileset/2151.png ../../../app/build/cache/tilesets/rse/tileset/2152.png ../../../app/build/cache/tilesets/rse/tileset/2153.png ../../../app/build/cache/tilesets/rse/tileset/2154.png ../../../app/build/cache/tilesets/rse/tileset/2155.png ../../../app/build/cache/tilesets/rse/tileset/2156.png ../../../app/build/cache/tilesets/rse/tileset/2157.png ../../../app/build/cache/tilesets/rse/tileset/2158.png ../../../app/build/cache/tilesets/rse/tileset/2159.png ../../../app/build/cache/tilesets/rse/tileset/216.png ../../../app/build/cache/tilesets/rse/tileset/2160.png ../../../app/build/cache/tilesets/rse/tileset/2161.png ../../../app/build/cache/tilesets/rse/tileset/2162.png ../../../app/build/cache/tilesets/rse/tileset/2163.png ../../../app/build/cache/tilesets/rse/tileset/2164.png ../../../app/build/cache/tilesets/rse/tileset/2165.png ../../../app/build/cache/tilesets/rse/tileset/2166.png ../../../app/build/cache/tilesets/rse/tileset/2167.png ../../../app/build/cache/tilesets/rse/tileset/2168.png ../../../app/build/cache/tilesets/rse/tileset/2169.png ../../../app/build/cache/tilesets/rse/tileset/217.png ../../../app/build/cache/tilesets/rse/tileset/2170.png ../../../app/build/cache/tilesets/rse/tileset/2171.png ../../../app/build/cache/tilesets/rse/tileset/2172.png ../../../app/build/cache/tilesets/rse/tileset/2173.png ../../../app/build/cache/tilesets/rse/tileset/2174.png ../../../app/build/cache/tilesets/rse/tileset/2175.png ../../../app/build/cache/tilesets/rse/tileset/2176.png ../../../app/build/cache/tilesets/rse/tileset/2177.png ../../../app/build/cache/tilesets/rse/tileset/2178.png ../../../app/build/cache/tilesets/rse/tileset/2179.png ../../../app/build/cache/tilesets/rse/tileset/218.png ../../../app/build/cache/tilesets/rse/tileset/2180.png ../../../app/build/cache/tilesets/rse/tileset/2181.png ../../../app/build/cache/tilesets/rse/tileset/2182.png ../../../app/build/cache/tilesets/rse/tileset/2183.png ../../../app/build/cache/tilesets/rse/tileset/2184.png ../../../app/build/cache/tilesets/rse/tileset/2185.png ../../../app/build/cache/tilesets/rse/tileset/2186.png ../../../app/build/cache/tilesets/rse/tileset/2187.png ../../../app/build/cache/tilesets/rse/tileset/2188.png ../../../app/build/cache/tilesets/rse/tileset/2189.png ../../../app/build/cache/tilesets/rse/tileset/219.png ../../../app/build/cache/tilesets/rse/tileset/2190.png ../../../app/build/cache/tilesets/rse/tileset/2191.png ../../../app/build/cache/tilesets/rse/tileset/2192.png ../../../app/build/cache/tilesets/rse/tileset/2193.png ../../../app/build/cache/tilesets/rse/tileset/2194.png ../../../app/build/cache/tilesets/rse/tileset/2195.png ../../../app/build/cache/tilesets/rse/tileset/2196.png ../../../app/build/cache/tilesets/rse/tileset/2197.png ../../../app/build/cache/tilesets/rse/tileset/2198.png ../../../app/build/cache/tilesets/rse/tileset/2199.png ../../../app/build/cache/tilesets/rse/tileset/22.png ../../../app/build/cache/tilesets/rse/tileset/220.png ../../../app/build/cache/tilesets/rse/tileset/2200.png ../../../app/build/cache/tilesets/rse/tileset/2201.png ../../../app/build/cache/tilesets/rse/tileset/2202.png ../../../app/build/cache/tilesets/rse/tileset/2203.png ../../../app/build/cache/tilesets/rse/tileset/2204.png ../../../app/build/cache/tilesets/rse/tileset/2205.png ../../../app/build/cache/tilesets/rse/tileset/2206.png ../../../app/build/cache/tilesets/rse/tileset/2207.png ../../../app/build/cache/tilesets/rse/tileset/2208.png ../../../app/build/cache/tilesets/rse/tileset/2209.png ../../../app/build/cache/tilesets/rse/tileset/221.png ../../../app/build/cache/tilesets/rse/tileset/2210.png ../../../app/build/cache/tilesets/rse/tileset/2211.png ../../../app/build/cache/tilesets/rse/tileset/2212.png ../../../app/build/cache/tilesets/rse/tileset/2213.png ../../../app/build/cache/tilesets/rse/tileset/2214.png ../../../app/build/cache/tilesets/rse/tileset/2215.png ../../../app/build/cache/tilesets/rse/tileset/2216.png ../../../app/build/cache/tilesets/rse/tileset/2217.png ../../../app/build/cache/tilesets/rse/tileset/2218.png ../../../app/build/cache/tilesets/rse/tileset/2219.png ../../../app/build/cache/tilesets/rse/tileset/222.png ../../../app/build/cache/tilesets/rse/tileset/2220.png ../../../app/build/cache/tilesets/rse/tileset/2221.png ../../../app/build/cache/tilesets/rse/tileset/2222.png ../../../app/build/cache/tilesets/rse/tileset/2223.png ../../../app/build/cache/tilesets/rse/tileset/2224.png ../../../app/build/cache/tilesets/rse/tileset/2225.png ../../../app/build/cache/tilesets/rse/tileset/2226.png ../../../app/build/cache/tilesets/rse/tileset/2227.png ../../../app/build/cache/tilesets/rse/tileset/2228.png ../../../app/build/cache/tilesets/rse/tileset/2229.png ../../../app/build/cache/tilesets/rse/tileset/223.png ../../../app/build/cache/tilesets/rse/tileset/2230.png ../../../app/build/cache/tilesets/rse/tileset/2231.png ../../../app/build/cache/tilesets/rse/tileset/2232.png ../../../app/build/cache/tilesets/rse/tileset/2233.png ../../../app/build/cache/tilesets/rse/tileset/2234.png ../../../app/build/cache/tilesets/rse/tileset/2235.png ../../../app/build/cache/tilesets/rse/tileset/2236.png ../../../app/build/cache/tilesets/rse/tileset/2237.png ../../../app/build/cache/tilesets/rse/tileset/2238.png ../../../app/build/cache/tilesets/rse/tileset/2239.png ../../../app/build/cache/tilesets/rse/tileset/224.png ../../../app/build/cache/tilesets/rse/tileset/2240.png ../../../app/build/cache/tilesets/rse/tileset/2241.png ../../../app/build/cache/tilesets/rse/tileset/2242.png ../../../app/build/cache/tilesets/rse/tileset/2243.png ../../../app/build/cache/tilesets/rse/tileset/2244.png ../../../app/build/cache/tilesets/rse/tileset/2245.png ../../../app/build/cache/tilesets/rse/tileset/2246.png ../../../app/build/cache/tilesets/rse/tileset/2247.png ../../../app/build/cache/tilesets/rse/tileset/2248.png ../../../app/build/cache/tilesets/rse/tileset/2249.png ../../../app/build/cache/tilesets/rse/tileset/225.png ../../../app/build/cache/tilesets/rse/tileset/2250.png ../../../app/build/cache/tilesets/rse/tileset/2251.png ../../../app/build/cache/tilesets/rse/tileset/2252.png ../../../app/build/cache/tilesets/rse/tileset/2253.png ../../../app/build/cache/tilesets/rse/tileset/2254.png ../../../app/build/cache/tilesets/rse/tileset/2255.png ../../../app/build/cache/tilesets/rse/tileset/2256.png ../../../app/build/cache/tilesets/rse/tileset/2257.png ../../../app/build/cache/tilesets/rse/tileset/2258.png ../../../app/build/cache/tilesets/rse/tileset/2259.png ../../../app/build/cache/tilesets/rse/tileset/226.png ../../../app/build/cache/tilesets/rse/tileset/2260.png ../../../app/build/cache/tilesets/rse/tileset/2261.png ../../../app/build/cache/tilesets/rse/tileset/2262.png ../../../app/build/cache/tilesets/rse/tileset/2263.png ../../../app/build/cache/tilesets/rse/tileset/2264.png ../../../app/build/cache/tilesets/rse/tileset/2265.png ../../../app/build/cache/tilesets/rse/tileset/2266.png ../../../app/build/cache/tilesets/rse/tileset/2267.png ../../../app/build/cache/tilesets/rse/tileset/2268.png ../../../app/build/cache/tilesets/rse/tileset/2269.png ../../../app/build/cache/tilesets/rse/tileset/227.png ../../../app/build/cache/tilesets/rse/tileset/2270.png ../../../app/build/cache/tilesets/rse/tileset/2271.png ../../../app/build/cache/tilesets/rse/tileset/2272.png ../../../app/build/cache/tilesets/rse/tileset/2273.png ../../../app/build/cache/tilesets/rse/tileset/2274.png ../../../app/build/cache/tilesets/rse/tileset/2275.png ../../../app/build/cache/tilesets/rse/tileset/2276.png ../../../app/build/cache/tilesets/rse/tileset/2277.png ../../../app/build/cache/tilesets/rse/tileset/2278.png ../../../app/build/cache/tilesets/rse/tileset/2279.png ../../../app/build/cache/tilesets/rse/tileset/228.png ../../../app/build/cache/tilesets/rse/tileset/2280.png ../../../app/build/cache/tilesets/rse/tileset/2281.png ../../../app/build/cache/tilesets/rse/tileset/2282.png ../../../app/build/cache/tilesets/rse/tileset/2283.png ../../../app/build/cache/tilesets/rse/tileset/2284.png ../../../app/build/cache/tilesets/rse/tileset/2285.png ../../../app/build/cache/tilesets/rse/tileset/2286.png ../../../app/build/cache/tilesets/rse/tileset/2287.png ../../../app/build/cache/tilesets/rse/tileset/2288.png ../../../app/build/cache/tilesets/rse/tileset/2289.png ../../../app/build/cache/tilesets/rse/tileset/229.png ../../../app/build/cache/tilesets/rse/tileset/2290.png ../../../app/build/cache/tilesets/rse/tileset/2291.png ../../../app/build/cache/tilesets/rse/tileset/2292.png ../../../app/build/cache/tilesets/rse/tileset/2293.png ../../../app/build/cache/tilesets/rse/tileset/2294.png ../../../app/build/cache/tilesets/rse/tileset/2295.png ../../../app/build/cache/tilesets/rse/tileset/2296.png ../../../app/build/cache/tilesets/rse/tileset/2297.png ../../../app/build/cache/tilesets/rse/tileset/2298.png ../../../app/build/cache/tilesets/rse/tileset/2299.png ../../../app/build/cache/tilesets/rse/tileset/23.png ../../../app/build/cache/tilesets/rse/tileset/230.png ../../../app/build/cache/tilesets/rse/tileset/2300.png ../../../app/build/cache/tilesets/rse/tileset/2301.png ../../../app/build/cache/tilesets/rse/tileset/2302.png ../../../app/build/cache/tilesets/rse/tileset/2303.png ../../../app/build/cache/tilesets/rse/tileset/2304.png ../../../app/build/cache/tilesets/rse/tileset/2305.png ../../../app/build/cache/tilesets/rse/tileset/2306.png ../../../app/build/cache/tilesets/rse/tileset/2307.png ../../../app/build/cache/tilesets/rse/tileset/2308.png ../../../app/build/cache/tilesets/rse/tileset/2309.png ../../../app/build/cache/tilesets/rse/tileset/231.png ../../../app/build/cache/tilesets/rse/tileset/2310.png ../../../app/build/cache/tilesets/rse/tileset/2311.png ../../../app/build/cache/tilesets/rse/tileset/2312.png ../../../app/build/cache/tilesets/rse/tileset/2313.png ../../../app/build/cache/tilesets/rse/tileset/2314.png ../../../app/build/cache/tilesets/rse/tileset/2315.png ../../../app/build/cache/tilesets/rse/tileset/2316.png ../../../app/build/cache/tilesets/rse/tileset/2317.png ../../../app/build/cache/tilesets/rse/tileset/2318.png ../../../app/build/cache/tilesets/rse/tileset/2319.png ../../../app/build/cache/tilesets/rse/tileset/232.png ../../../app/build/cache/tilesets/rse/tileset/2320.png ../../../app/build/cache/tilesets/rse/tileset/2321.png ../../../app/build/cache/tilesets/rse/tileset/2322.png ../../../app/build/cache/tilesets/rse/tileset/2323.png ../../../app/build/cache/tilesets/rse/tileset/2324.png ../../../app/build/cache/tilesets/rse/tileset/2325.png ../../../app/build/cache/tilesets/rse/tileset/2326.png ../../../app/build/cache/tilesets/rse/tileset/2327.png ../../../app/build/cache/tilesets/rse/tileset/2328.png ../../../app/build/cache/tilesets/rse/tileset/2329.png ../../../app/build/cache/tilesets/rse/tileset/233.png ../../../app/build/cache/tilesets/rse/tileset/2330.png ../../../app/build/cache/tilesets/rse/tileset/2331.png ../../../app/build/cache/tilesets/rse/tileset/2332.png ../../../app/build/cache/tilesets/rse/tileset/2333.png ../../../app/build/cache/tilesets/rse/tileset/2334.png ../../../app/build/cache/tilesets/rse/tileset/2335.png ../../../app/build/cache/tilesets/rse/tileset/2336.png ../../../app/build/cache/tilesets/rse/tileset/2337.png ../../../app/build/cache/tilesets/rse/tileset/2338.png ../../../app/build/cache/tilesets/rse/tileset/2339.png ../../../app/build/cache/tilesets/rse/tileset/234.png ../../../app/build/cache/tilesets/rse/tileset/2340.png ../../../app/build/cache/tilesets/rse/tileset/2341.png ../../../app/build/cache/tilesets/rse/tileset/2342.png ../../../app/build/cache/tilesets/rse/tileset/2343.png ../../../app/build/cache/tilesets/rse/tileset/2344.png ../../../app/build/cache/tilesets/rse/tileset/2345.png ../../../app/build/cache/tilesets/rse/tileset/2346.png ../../../app/build/cache/tilesets/rse/tileset/2347.png ../../../app/build/cache/tilesets/rse/tileset/2348.png ../../../app/build/cache/tilesets/rse/tileset/2349.png ../../../app/build/cache/tilesets/rse/tileset/235.png ../../../app/build/cache/tilesets/rse/tileset/2350.png ../../../app/build/cache/tilesets/rse/tileset/2351.png ../../../app/build/cache/tilesets/rse/tileset/2352.png ../../../app/build/cache/tilesets/rse/tileset/2353.png ../../../app/build/cache/tilesets/rse/tileset/2354.png ../../../app/build/cache/tilesets/rse/tileset/2355.png ../../../app/build/cache/tilesets/rse/tileset/2356.png ../../../app/build/cache/tilesets/rse/tileset/2357.png ../../../app/build/cache/tilesets/rse/tileset/2358.png ../../../app/build/cache/tilesets/rse/tileset/2359.png ../../../app/build/cache/tilesets/rse/tileset/236.png ../../../app/build/cache/tilesets/rse/tileset/2360.png ../../../app/build/cache/tilesets/rse/tileset/2361.png ../../../app/build/cache/tilesets/rse/tileset/2362.png ../../../app/build/cache/tilesets/rse/tileset/2363.png ../../../app/build/cache/tilesets/rse/tileset/2364.png ../../../app/build/cache/tilesets/rse/tileset/2365.png ../../../app/build/cache/tilesets/rse/tileset/2366.png ../../../app/build/cache/tilesets/rse/tileset/2367.png ../../../app/build/cache/tilesets/rse/tileset/2368.png ../../../app/build/cache/tilesets/rse/tileset/2369.png ../../../app/build/cache/tilesets/rse/tileset/237.png ../../../app/build/cache/tilesets/rse/tileset/2370.png ../../../app/build/cache/tilesets/rse/tileset/2371.png ../../../app/build/cache/tilesets/rse/tileset/2372.png ../../../app/build/cache/tilesets/rse/tileset/2373.png ../../../app/build/cache/tilesets/rse/tileset/2374.png ../../../app/build/cache/tilesets/rse/tileset/2375.png ../../../app/build/cache/tilesets/rse/tileset/2376.png ../../../app/build/cache/tilesets/rse/tileset/2377.png ../../../app/build/cache/tilesets/rse/tileset/2378.png ../../../app/build/cache/tilesets/rse/tileset/2379.png ../../../app/build/cache/tilesets/rse/tileset/238.png ../../../app/build/cache/tilesets/rse/tileset/2380.png ../../../app/build/cache/tilesets/rse/tileset/2381.png ../../../app/build/cache/tilesets/rse/tileset/2382.png ../../../app/build/cache/tilesets/rse/tileset/2383.png ../../../app/build/cache/tilesets/rse/tileset/2384.png ../../../app/build/cache/tilesets/rse/tileset/2385.png ../../../app/build/cache/tilesets/rse/tileset/2386.png ../../../app/build/cache/tilesets/rse/tileset/2387.png ../../../app/build/cache/tilesets/rse/tileset/2388.png ../../../app/build/cache/tilesets/rse/tileset/2389.png ../../../app/build/cache/tilesets/rse/tileset/239.png ../../../app/build/cache/tilesets/rse/tileset/2390.png ../../../app/build/cache/tilesets/rse/tileset/2391.png ../../../app/build/cache/tilesets/rse/tileset/2392.png ../../../app/build/cache/tilesets/rse/tileset/2393.png ../../../app/build/cache/tilesets/rse/tileset/2394.png ../../../app/build/cache/tilesets/rse/tileset/2395.png ../../../app/build/cache/tilesets/rse/tileset/2396.png ../../../app/build/cache/tilesets/rse/tileset/2397.png ../../../app/build/cache/tilesets/rse/tileset/2398.png ../../../app/build/cache/tilesets/rse/tileset/2399.png ../../../app/build/cache/tilesets/rse/tileset/24.png ../../../app/build/cache/tilesets/rse/tileset/240.png ../../../app/build/cache/tilesets/rse/tileset/2400.png ../../../app/build/cache/tilesets/rse/tileset/2401.png ../../../app/build/cache/tilesets/rse/tileset/2402.png ../../../app/build/cache/tilesets/rse/tileset/2403.png ../../../app/build/cache/tilesets/rse/tileset/2404.png ../../../app/build/cache/tilesets/rse/tileset/2405.png ../../../app/build/cache/tilesets/rse/tileset/2406.png ../../../app/build/cache/tilesets/rse/tileset/2407.png ../../../app/build/cache/tilesets/rse/tileset/2408.png ../../../app/build/cache/tilesets/rse/tileset/2409.png ../../../app/build/cache/tilesets/rse/tileset/241.png ../../../app/build/cache/tilesets/rse/tileset/2410.png ../../../app/build/cache/tilesets/rse/tileset/2411.png ../../../app/build/cache/tilesets/rse/tileset/2412.png ../../../app/build/cache/tilesets/rse/tileset/2413.png ../../../app/build/cache/tilesets/rse/tileset/2414.png ../../../app/build/cache/tilesets/rse/tileset/2415.png ../../../app/build/cache/tilesets/rse/tileset/2416.png ../../../app/build/cache/tilesets/rse/tileset/2417.png ../../../app/build/cache/tilesets/rse/tileset/2418.png ../../../app/build/cache/tilesets/rse/tileset/2419.png ../../../app/build/cache/tilesets/rse/tileset/242.png ../../../app/build/cache/tilesets/rse/tileset/2420.png ../../../app/build/cache/tilesets/rse/tileset/2421.png ../../../app/build/cache/tilesets/rse/tileset/2422.png ../../../app/build/cache/tilesets/rse/tileset/2423.png ../../../app/build/cache/tilesets/rse/tileset/2424.png ../../../app/build/cache/tilesets/rse/tileset/2425.png ../../../app/build/cache/tilesets/rse/tileset/2426.png ../../../app/build/cache/tilesets/rse/tileset/2427.png ../../../app/build/cache/tilesets/rse/tileset/2428.png ../../../app/build/cache/tilesets/rse/tileset/2429.png ../../../app/build/cache/tilesets/rse/tileset/243.png ../../../app/build/cache/tilesets/rse/tileset/2430.png ../../../app/build/cache/tilesets/rse/tileset/2431.png ../../../app/build/cache/tilesets/rse/tileset/2432.png ../../../app/build/cache/tilesets/rse/tileset/2433.png ../../../app/build/cache/tilesets/rse/tileset/2434.png ../../../app/build/cache/tilesets/rse/tileset/2435.png ../../../app/build/cache/tilesets/rse/tileset/2436.png ../../../app/build/cache/tilesets/rse/tileset/2437.png ../../../app/build/cache/tilesets/rse/tileset/2438.png ../../../app/build/cache/tilesets/rse/tileset/2439.png ../../../app/build/cache/tilesets/rse/tileset/244.png ../../../app/build/cache/tilesets/rse/tileset/2440.png ../../../app/build/cache/tilesets/rse/tileset/2441.png ../../../app/build/cache/tilesets/rse/tileset/2442.png ../../../app/build/cache/tilesets/rse/tileset/2443.png ../../../app/build/cache/tilesets/rse/tileset/2444.png ../../../app/build/cache/tilesets/rse/tileset/2445.png ../../../app/build/cache/tilesets/rse/tileset/2446.png ../../../app/build/cache/tilesets/rse/tileset/2447.png ../../../app/build/cache/tilesets/rse/tileset/2448.png ../../../app/build/cache/tilesets/rse/tileset/2449.png ../../../app/build/cache/tilesets/rse/tileset/245.png ../../../app/build/cache/tilesets/rse/tileset/2450.png ../../../app/build/cache/tilesets/rse/tileset/2451.png ../../../app/build/cache/tilesets/rse/tileset/2452.png ../../../app/build/cache/tilesets/rse/tileset/2453.png ../../../app/build/cache/tilesets/rse/tileset/2454.png ../../../app/build/cache/tilesets/rse/tileset/2455.png ../../../app/build/cache/tilesets/rse/tileset/2456.png ../../../app/build/cache/tilesets/rse/tileset/2457.png ../../../app/build/cache/tilesets/rse/tileset/2458.png ../../../app/build/cache/tilesets/rse/tileset/2459.png ../../../app/build/cache/tilesets/rse/tileset/246.png ../../../app/build/cache/tilesets/rse/tileset/2460.png ../../../app/build/cache/tilesets/rse/tileset/2461.png ../../../app/build/cache/tilesets/rse/tileset/2462.png ../../../app/build/cache/tilesets/rse/tileset/2463.png ../../../app/build/cache/tilesets/rse/tileset/2464.png ../../../app/build/cache/tilesets/rse/tileset/2465.png ../../../app/build/cache/tilesets/rse/tileset/2466.png ../../../app/build/cache/tilesets/rse/tileset/2467.png ../../../app/build/cache/tilesets/rse/tileset/2468.png ../../../app/build/cache/tilesets/rse/tileset/2469.png ../../../app/build/cache/tilesets/rse/tileset/247.png ../../../app/build/cache/tilesets/rse/tileset/2470.png ../../../app/build/cache/tilesets/rse/tileset/2471.png ../../../app/build/cache/tilesets/rse/tileset/2472.png ../../../app/build/cache/tilesets/rse/tileset/2473.png ../../../app/build/cache/tilesets/rse/tileset/2474.png ../../../app/build/cache/tilesets/rse/tileset/2475.png ../../../app/build/cache/tilesets/rse/tileset/2476.png ../../../app/build/cache/tilesets/rse/tileset/2477.png ../../../app/build/cache/tilesets/rse/tileset/2478.png ../../../app/build/cache/tilesets/rse/tileset/2479.png ../../../app/build/cache/tilesets/rse/tileset/248.png ../../../app/build/cache/tilesets/rse/tileset/2480.png ../../../app/build/cache/tilesets/rse/tileset/2481.png ../../../app/build/cache/tilesets/rse/tileset/2482.png ../../../app/build/cache/tilesets/rse/tileset/2483.png ../../../app/build/cache/tilesets/rse/tileset/2484.png ../../../app/build/cache/tilesets/rse/tileset/2485.png ../../../app/build/cache/tilesets/rse/tileset/2486.png ../../../app/build/cache/tilesets/rse/tileset/2487.png ../../../app/build/cache/tilesets/rse/tileset/2488.png ../../../app/build/cache/tilesets/rse/tileset/2489.png ../../../app/build/cache/tilesets/rse/tileset/249.png ../../../app/build/cache/tilesets/rse/tileset/2490.png ../../../app/build/cache/tilesets/rse/tileset/2491.png ../../../app/build/cache/tilesets/rse/tileset/2492.png ../../../app/build/cache/tilesets/rse/tileset/2493.png ../../../app/build/cache/tilesets/rse/tileset/2494.png ../../../app/build/cache/tilesets/rse/tileset/2495.png ../../../app/build/cache/tilesets/rse/tileset/2496.png ../../../app/build/cache/tilesets/rse/tileset/2497.png ../../../app/build/cache/tilesets/rse/tileset/2498.png ../../../app/build/cache/tilesets/rse/tileset/2499.png ../../../app/build/cache/tilesets/rse/tileset/25.png ../../../app/build/cache/tilesets/rse/tileset/250.png ../../../app/build/cache/tilesets/rse/tileset/2500.png ../../../app/build/cache/tilesets/rse/tileset/2501.png ../../../app/build/cache/tilesets/rse/tileset/2502.png ../../../app/build/cache/tilesets/rse/tileset/2503.png ../../../app/build/cache/tilesets/rse/tileset/2504.png ../../../app/build/cache/tilesets/rse/tileset/2505.png ../../../app/build/cache/tilesets/rse/tileset/2506.png ../../../app/build/cache/tilesets/rse/tileset/2507.png ../../../app/build/cache/tilesets/rse/tileset/2508.png ../../../app/build/cache/tilesets/rse/tileset/2509.png ../../../app/build/cache/tilesets/rse/tileset/251.png ../../../app/build/cache/tilesets/rse/tileset/2510.png ../../../app/build/cache/tilesets/rse/tileset/2511.png ../../../app/build/cache/tilesets/rse/tileset/2512.png ../../../app/build/cache/tilesets/rse/tileset/2513.png ../../../app/build/cache/tilesets/rse/tileset/2514.png ../../../app/build/cache/tilesets/rse/tileset/2515.png ../../../app/build/cache/tilesets/rse/tileset/2516.png ../../../app/build/cache/tilesets/rse/tileset/2517.png ../../../app/build/cache/tilesets/rse/tileset/2518.png ../../../app/build/cache/tilesets/rse/tileset/2519.png ../../../app/build/cache/tilesets/rse/tileset/252.png ../../../app/build/cache/tilesets/rse/tileset/2520.png ../../../app/build/cache/tilesets/rse/tileset/2521.png ../../../app/build/cache/tilesets/rse/tileset/2522.png ../../../app/build/cache/tilesets/rse/tileset/2523.png ../../../app/build/cache/tilesets/rse/tileset/2524.png ../../../app/build/cache/tilesets/rse/tileset/2525.png ../../../app/build/cache/tilesets/rse/tileset/2526.png ../../../app/build/cache/tilesets/rse/tileset/2527.png ../../../app/build/cache/tilesets/rse/tileset/2528.png ../../../app/build/cache/tilesets/rse/tileset/2529.png ../../../app/build/cache/tilesets/rse/tileset/253.png ../../../app/build/cache/tilesets/rse/tileset/2530.png ../../../app/build/cache/tilesets/rse/tileset/2531.png ../../../app/build/cache/tilesets/rse/tileset/2532.png ../../../app/build/cache/tilesets/rse/tileset/2533.png ../../../app/build/cache/tilesets/rse/tileset/2534.png ../../../app/build/cache/tilesets/rse/tileset/2535.png ../../../app/build/cache/tilesets/rse/tileset/2536.png ../../../app/build/cache/tilesets/rse/tileset/2537.png ../../../app/build/cache/tilesets/rse/tileset/2538.png ../../../app/build/cache/tilesets/rse/tileset/2539.png ../../../app/build/cache/tilesets/rse/tileset/254.png ../../../app/build/cache/tilesets/rse/tileset/2540.png ../../../app/build/cache/tilesets/rse/tileset/2541.png ../../../app/build/cache/tilesets/rse/tileset/2542.png ../../../app/build/cache/tilesets/rse/tileset/2543.png ../../../app/build/cache/tilesets/rse/tileset/2544.png ../../../app/build/cache/tilesets/rse/tileset/2545.png ../../../app/build/cache/tilesets/rse/tileset/2546.png ../../../app/build/cache/tilesets/rse/tileset/2547.png ../../../app/build/cache/tilesets/rse/tileset/2548.png ../../../app/build/cache/tilesets/rse/tileset/2549.png ../../../app/build/cache/tilesets/rse/tileset/255.png ../../../app/build/cache/tilesets/rse/tileset/2550.png ../../../app/build/cache/tilesets/rse/tileset/2551.png ../../../app/build/cache/tilesets/rse/tileset/2552.png ../../../app/build/cache/tilesets/rse/tileset/2553.png ../../../app/build/cache/tilesets/rse/tileset/2554.png ../../../app/build/cache/tilesets/rse/tileset/2555.png ../../../app/build/cache/tilesets/rse/tileset/2556.png ../../../app/build/cache/tilesets/rse/tileset/2557.png ../../../app/build/cache/tilesets/rse/tileset/2558.png ../../../app/build/cache/tilesets/rse/tileset/2559.png ../../../app/build/cache/tilesets/rse/tileset/256.png ../../../app/build/cache/tilesets/rse/tileset/2560.png ../../../app/build/cache/tilesets/rse/tileset/2561.png ../../../app/build/cache/tilesets/rse/tileset/2562.png ../../../app/build/cache/tilesets/rse/tileset/2563.png ../../../app/build/cache/tilesets/rse/tileset/2564.png ../../../app/build/cache/tilesets/rse/tileset/2565.png ../../../app/build/cache/tilesets/rse/tileset/2566.png ../../../app/build/cache/tilesets/rse/tileset/2567.png ../../../app/build/cache/tilesets/rse/tileset/2568.png ../../../app/build/cache/tilesets/rse/tileset/2569.png ../../../app/build/cache/tilesets/rse/tileset/257.png ../../../app/build/cache/tilesets/rse/tileset/2570.png ../../../app/build/cache/tilesets/rse/tileset/2571.png ../../../app/build/cache/tilesets/rse/tileset/2572.png ../../../app/build/cache/tilesets/rse/tileset/2573.png ../../../app/build/cache/tilesets/rse/tileset/2574.png ../../../app/build/cache/tilesets/rse/tileset/2575.png ../../../app/build/cache/tilesets/rse/tileset/2576.png ../../../app/build/cache/tilesets/rse/tileset/2577.png ../../../app/build/cache/tilesets/rse/tileset/2578.png ../../../app/build/cache/tilesets/rse/tileset/2579.png ../../../app/build/cache/tilesets/rse/tileset/258.png ../../../app/build/cache/tilesets/rse/tileset/2580.png ../../../app/build/cache/tilesets/rse/tileset/2581.png ../../../app/build/cache/tilesets/rse/tileset/2582.png ../../../app/build/cache/tilesets/rse/tileset/2583.png ../../../app/build/cache/tilesets/rse/tileset/2584.png ../../../app/build/cache/tilesets/rse/tileset/2585.png ../../../app/build/cache/tilesets/rse/tileset/2586.png ../../../app/build/cache/tilesets/rse/tileset/2587.png ../../../app/build/cache/tilesets/rse/tileset/2588.png ../../../app/build/cache/tilesets/rse/tileset/2589.png ../../../app/build/cache/tilesets/rse/tileset/259.png ../../../app/build/cache/tilesets/rse/tileset/2590.png ../../../app/build/cache/tilesets/rse/tileset/2591.png ../../../app/build/cache/tilesets/rse/tileset/2592.png ../../../app/build/cache/tilesets/rse/tileset/2593.png ../../../app/build/cache/tilesets/rse/tileset/2594.png ../../../app/build/cache/tilesets/rse/tileset/2595.png ../../../app/build/cache/tilesets/rse/tileset/2596.png ../../../app/build/cache/tilesets/rse/tileset/2597.png ../../../app/build/cache/tilesets/rse/tileset/2598.png ../../../app/build/cache/tilesets/rse/tileset/2599.png ../../../app/build/cache/tilesets/rse/tileset/26.png ../../../app/build/cache/tilesets/rse/tileset/260.png ../../../app/build/cache/tilesets/rse/tileset/2600.png ../../../app/build/cache/tilesets/rse/tileset/2601.png ../../../app/build/cache/tilesets/rse/tileset/2602.png ../../../app/build/cache/tilesets/rse/tileset/2603.png ../../../app/build/cache/tilesets/rse/tileset/2604.png ../../../app/build/cache/tilesets/rse/tileset/2605.png ../../../app/build/cache/tilesets/rse/tileset/2606.png ../../../app/build/cache/tilesets/rse/tileset/2607.png ../../../app/build/cache/tilesets/rse/tileset/2608.png ../../../app/build/cache/tilesets/rse/tileset/2609.png ../../../app/build/cache/tilesets/rse/tileset/261.png ../../../app/build/cache/tilesets/rse/tileset/2610.png ../../../app/build/cache/tilesets/rse/tileset/2611.png ../../../app/build/cache/tilesets/rse/tileset/2612.png ../../../app/build/cache/tilesets/rse/tileset/2613.png ../../../app/build/cache/tilesets/rse/tileset/2614.png ../../../app/build/cache/tilesets/rse/tileset/2615.png ../../../app/build/cache/tilesets/rse/tileset/2616.png ../../../app/build/cache/tilesets/rse/tileset/2617.png ../../../app/build/cache/tilesets/rse/tileset/2618.png ../../../app/build/cache/tilesets/rse/tileset/2619.png ../../../app/build/cache/tilesets/rse/tileset/262.png ../../../app/build/cache/tilesets/rse/tileset/2620.png ../../../app/build/cache/tilesets/rse/tileset/2621.png ../../../app/build/cache/tilesets/rse/tileset/2622.png ../../../app/build/cache/tilesets/rse/tileset/2623.png ../../../app/build/cache/tilesets/rse/tileset/2624.png ../../../app/build/cache/tilesets/rse/tileset/2625.png ../../../app/build/cache/tilesets/rse/tileset/2626.png ../../../app/build/cache/tilesets/rse/tileset/2627.png ../../../app/build/cache/tilesets/rse/tileset/2628.png ../../../app/build/cache/tilesets/rse/tileset/2629.png ../../../app/build/cache/tilesets/rse/tileset/263.png ../../../app/build/cache/tilesets/rse/tileset/2630.png ../../../app/build/cache/tilesets/rse/tileset/2631.png ../../../app/build/cache/tilesets/rse/tileset/2632.png ../../../app/build/cache/tilesets/rse/tileset/2633.png ../../../app/build/cache/tilesets/rse/tileset/2634.png ../../../app/build/cache/tilesets/rse/tileset/2635.png ../../../app/build/cache/tilesets/rse/tileset/2636.png ../../../app/build/cache/tilesets/rse/tileset/2637.png ../../../app/build/cache/tilesets/rse/tileset/2638.png ../../../app/build/cache/tilesets/rse/tileset/2639.png ../../../app/build/cache/tilesets/rse/tileset/264.png ../../../app/build/cache/tilesets/rse/tileset/2640.png ../../../app/build/cache/tilesets/rse/tileset/2641.png ../../../app/build/cache/tilesets/rse/tileset/2642.png ../../../app/build/cache/tilesets/rse/tileset/2643.png ../../../app/build/cache/tilesets/rse/tileset/2644.png ../../../app/build/cache/tilesets/rse/tileset/2645.png ../../../app/build/cache/tilesets/rse/tileset/2646.png ../../../app/build/cache/tilesets/rse/tileset/2647.png ../../../app/build/cache/tilesets/rse/tileset/2648.png ../../../app/build/cache/tilesets/rse/tileset/2649.png ../../../app/build/cache/tilesets/rse/tileset/265.png ../../../app/build/cache/tilesets/rse/tileset/2650.png ../../../app/build/cache/tilesets/rse/tileset/2651.png ../../../app/build/cache/tilesets/rse/tileset/2652.png ../../../app/build/cache/tilesets/rse/tileset/2653.png ../../../app/build/cache/tilesets/rse/tileset/2654.png ../../../app/build/cache/tilesets/rse/tileset/2655.png ../../../app/build/cache/tilesets/rse/tileset/2656.png ../../../app/build/cache/tilesets/rse/tileset/2657.png ../../../app/build/cache/tilesets/rse/tileset/2658.png ../../../app/build/cache/tilesets/rse/tileset/2659.png ../../../app/build/cache/tilesets/rse/tileset/266.png ../../../app/build/cache/tilesets/rse/tileset/2660.png ../../../app/build/cache/tilesets/rse/tileset/2661.png ../../../app/build/cache/tilesets/rse/tileset/2662.png ../../../app/build/cache/tilesets/rse/tileset/2663.png ../../../app/build/cache/tilesets/rse/tileset/2664.png ../../../app/build/cache/tilesets/rse/tileset/2665.png ../../../app/build/cache/tilesets/rse/tileset/2666.png ../../../app/build/cache/tilesets/rse/tileset/2667.png ../../../app/build/cache/tilesets/rse/tileset/2668.png ../../../app/build/cache/tilesets/rse/tileset/2669.png ../../../app/build/cache/tilesets/rse/tileset/267.png ../../../app/build/cache/tilesets/rse/tileset/2670.png ../../../app/build/cache/tilesets/rse/tileset/2671.png ../../../app/build/cache/tilesets/rse/tileset/2672.png ../../../app/build/cache/tilesets/rse/tileset/2673.png ../../../app/build/cache/tilesets/rse/tileset/2674.png ../../../app/build/cache/tilesets/rse/tileset/2675.png ../../../app/build/cache/tilesets/rse/tileset/2676.png ../../../app/build/cache/tilesets/rse/tileset/2677.png ../../../app/build/cache/tilesets/rse/tileset/2678.png ../../../app/build/cache/tilesets/rse/tileset/2679.png ../../../app/build/cache/tilesets/rse/tileset/268.png ../../../app/build/cache/tilesets/rse/tileset/2680.png ../../../app/build/cache/tilesets/rse/tileset/2681.png ../../../app/build/cache/tilesets/rse/tileset/2682.png ../../../app/build/cache/tilesets/rse/tileset/2683.png ../../../app/build/cache/tilesets/rse/tileset/2684.png ../../../app/build/cache/tilesets/rse/tileset/2685.png ../../../app/build/cache/tilesets/rse/tileset/2686.png ../../../app/build/cache/tilesets/rse/tileset/2687.png ../../../app/build/cache/tilesets/rse/tileset/2688.png ../../../app/build/cache/tilesets/rse/tileset/2689.png ../../../app/build/cache/tilesets/rse/tileset/269.png ../../../app/build/cache/tilesets/rse/tileset/2690.png ../../../app/build/cache/tilesets/rse/tileset/2691.png ../../../app/build/cache/tilesets/rse/tileset/2692.png ../../../app/build/cache/tilesets/rse/tileset/2693.png ../../../app/build/cache/tilesets/rse/tileset/2694.png ../../../app/build/cache/tilesets/rse/tileset/2695.png ../../../app/build/cache/tilesets/rse/tileset/2696.png ../../../app/build/cache/tilesets/rse/tileset/2697.png ../../../app/build/cache/tilesets/rse/tileset/2698.png ../../../app/build/cache/tilesets/rse/tileset/2699.png ../../../app/build/cache/tilesets/rse/tileset/27.png ../../../app/build/cache/tilesets/rse/tileset/270.png ../../../app/build/cache/tilesets/rse/tileset/2700.png ../../../app/build/cache/tilesets/rse/tileset/2701.png ../../../app/build/cache/tilesets/rse/tileset/2702.png ../../../app/build/cache/tilesets/rse/tileset/2703.png ../../../app/build/cache/tilesets/rse/tileset/2704.png ../../../app/build/cache/tilesets/rse/tileset/2705.png ../../../app/build/cache/tilesets/rse/tileset/2706.png ../../../app/build/cache/tilesets/rse/tileset/2707.png ../../../app/build/cache/tilesets/rse/tileset/2708.png ../../../app/build/cache/tilesets/rse/tileset/2709.png ../../../app/build/cache/tilesets/rse/tileset/271.png ../../../app/build/cache/tilesets/rse/tileset/2710.png ../../../app/build/cache/tilesets/rse/tileset/2711.png ../../../app/build/cache/tilesets/rse/tileset/2712.png ../../../app/build/cache/tilesets/rse/tileset/2713.png ../../../app/build/cache/tilesets/rse/tileset/2714.png ../../../app/build/cache/tilesets/rse/tileset/2715.png ../../../app/build/cache/tilesets/rse/tileset/2716.png ../../../app/build/cache/tilesets/rse/tileset/2717.png ../../../app/build/cache/tilesets/rse/tileset/2718.png ../../../app/build/cache/tilesets/rse/tileset/2719.png ../../../app/build/cache/tilesets/rse/tileset/272.png ../../../app/build/cache/tilesets/rse/tileset/2720.png ../../../app/build/cache/tilesets/rse/tileset/2721.png ../../../app/build/cache/tilesets/rse/tileset/2722.png ../../../app/build/cache/tilesets/rse/tileset/2723.png ../../../app/build/cache/tilesets/rse/tileset/2724.png ../../../app/build/cache/tilesets/rse/tileset/2725.png ../../../app/build/cache/tilesets/rse/tileset/2726.png ../../../app/build/cache/tilesets/rse/tileset/2727.png ../../../app/build/cache/tilesets/rse/tileset/2728.png ../../../app/build/cache/tilesets/rse/tileset/2729.png ../../../app/build/cache/tilesets/rse/tileset/273.png ../../../app/build/cache/tilesets/rse/tileset/2730.png ../../../app/build/cache/tilesets/rse/tileset/2731.png ../../../app/build/cache/tilesets/rse/tileset/2732.png ../../../app/build/cache/tilesets/rse/tileset/2733.png ../../../app/build/cache/tilesets/rse/tileset/2734.png ../../../app/build/cache/tilesets/rse/tileset/2735.png ../../../app/build/cache/tilesets/rse/tileset/2736.png ../../../app/build/cache/tilesets/rse/tileset/2737.png ../../../app/build/cache/tilesets/rse/tileset/2738.png ../../../app/build/cache/tilesets/rse/tileset/2739.png ../../../app/build/cache/tilesets/rse/tileset/274.png ../../../app/build/cache/tilesets/rse/tileset/2740.png ../../../app/build/cache/tilesets/rse/tileset/2741.png ../../../app/build/cache/tilesets/rse/tileset/2742.png ../../../app/build/cache/tilesets/rse/tileset/2743.png ../../../app/build/cache/tilesets/rse/tileset/2744.png ../../../app/build/cache/tilesets/rse/tileset/2745.png ../../../app/build/cache/tilesets/rse/tileset/2746.png ../../../app/build/cache/tilesets/rse/tileset/2747.png ../../../app/build/cache/tilesets/rse/tileset/2748.png ../../../app/build/cache/tilesets/rse/tileset/2749.png ../../../app/build/cache/tilesets/rse/tileset/275.png ../../../app/build/cache/tilesets/rse/tileset/2750.png ../../../app/build/cache/tilesets/rse/tileset/2751.png ../../../app/build/cache/tilesets/rse/tileset/2752.png ../../../app/build/cache/tilesets/rse/tileset/2753.png ../../../app/build/cache/tilesets/rse/tileset/2754.png ../../../app/build/cache/tilesets/rse/tileset/2755.png ../../../app/build/cache/tilesets/rse/tileset/2756.png ../../../app/build/cache/tilesets/rse/tileset/2757.png ../../../app/build/cache/tilesets/rse/tileset/2758.png ../../../app/build/cache/tilesets/rse/tileset/2759.png ../../../app/build/cache/tilesets/rse/tileset/276.png ../../../app/build/cache/tilesets/rse/tileset/2760.png ../../../app/build/cache/tilesets/rse/tileset/2761.png ../../../app/build/cache/tilesets/rse/tileset/2762.png ../../../app/build/cache/tilesets/rse/tileset/2763.png ../../../app/build/cache/tilesets/rse/tileset/2764.png ../../../app/build/cache/tilesets/rse/tileset/2765.png ../../../app/build/cache/tilesets/rse/tileset/2766.png ../../../app/build/cache/tilesets/rse/tileset/2767.png ../../../app/build/cache/tilesets/rse/tileset/2768.png ../../../app/build/cache/tilesets/rse/tileset/2769.png ../../../app/build/cache/tilesets/rse/tileset/277.png ../../../app/build/cache/tilesets/rse/tileset/2770.png ../../../app/build/cache/tilesets/rse/tileset/2771.png ../../../app/build/cache/tilesets/rse/tileset/2772.png ../../../app/build/cache/tilesets/rse/tileset/2773.png ../../../app/build/cache/tilesets/rse/tileset/2774.png ../../../app/build/cache/tilesets/rse/tileset/2775.png ../../../app/build/cache/tilesets/rse/tileset/2776.png ../../../app/build/cache/tilesets/rse/tileset/2777.png ../../../app/build/cache/tilesets/rse/tileset/2778.png ../../../app/build/cache/tilesets/rse/tileset/2779.png ../../../app/build/cache/tilesets/rse/tileset/278.png ../../../app/build/cache/tilesets/rse/tileset/2780.png ../../../app/build/cache/tilesets/rse/tileset/2781.png ../../../app/build/cache/tilesets/rse/tileset/2782.png ../../../app/build/cache/tilesets/rse/tileset/2783.png ../../../app/build/cache/tilesets/rse/tileset/2784.png ../../../app/build/cache/tilesets/rse/tileset/2785.png ../../../app/build/cache/tilesets/rse/tileset/2786.png ../../../app/build/cache/tilesets/rse/tileset/2787.png ../../../app/build/cache/tilesets/rse/tileset/2788.png ../../../app/build/cache/tilesets/rse/tileset/2789.png ../../../app/build/cache/tilesets/rse/tileset/279.png ../../../app/build/cache/tilesets/rse/tileset/2790.png ../../../app/build/cache/tilesets/rse/tileset/2791.png ../../../app/build/cache/tilesets/rse/tileset/2792.png ../../../app/build/cache/tilesets/rse/tileset/2793.png ../../../app/build/cache/tilesets/rse/tileset/2794.png ../../../app/build/cache/tilesets/rse/tileset/2795.png ../../../app/build/cache/tilesets/rse/tileset/2796.png ../../../app/build/cache/tilesets/rse/tileset/2797.png ../../../app/build/cache/tilesets/rse/tileset/2798.png ../../../app/build/cache/tilesets/rse/tileset/2799.png ../../../app/build/cache/tilesets/rse/tileset/28.png ../../../app/build/cache/tilesets/rse/tileset/280.png ../../../app/build/cache/tilesets/rse/tileset/2800.png ../../../app/build/cache/tilesets/rse/tileset/2801.png ../../../app/build/cache/tilesets/rse/tileset/2802.png ../../../app/build/cache/tilesets/rse/tileset/2803.png ../../../app/build/cache/tilesets/rse/tileset/2804.png ../../../app/build/cache/tilesets/rse/tileset/2805.png ../../../app/build/cache/tilesets/rse/tileset/2806.png ../../../app/build/cache/tilesets/rse/tileset/2807.png ../../../app/build/cache/tilesets/rse/tileset/2808.png ../../../app/build/cache/tilesets/rse/tileset/2809.png ../../../app/build/cache/tilesets/rse/tileset/281.png ../../../app/build/cache/tilesets/rse/tileset/2810.png ../../../app/build/cache/tilesets/rse/tileset/2811.png ../../../app/build/cache/tilesets/rse/tileset/2812.png ../../../app/build/cache/tilesets/rse/tileset/2813.png ../../../app/build/cache/tilesets/rse/tileset/2814.png ../../../app/build/cache/tilesets/rse/tileset/2815.png ../../../app/build/cache/tilesets/rse/tileset/2816.png ../../../app/build/cache/tilesets/rse/tileset/2817.png ../../../app/build/cache/tilesets/rse/tileset/2818.png ../../../app/build/cache/tilesets/rse/tileset/2819.png ../../../app/build/cache/tilesets/rse/tileset/282.png ../../../app/build/cache/tilesets/rse/tileset/2820.png ../../../app/build/cache/tilesets/rse/tileset/2821.png ../../../app/build/cache/tilesets/rse/tileset/2822.png ../../../app/build/cache/tilesets/rse/tileset/2823.png ../../../app/build/cache/tilesets/rse/tileset/2824.png ../../../app/build/cache/tilesets/rse/tileset/2825.png ../../../app/build/cache/tilesets/rse/tileset/2826.png ../../../app/build/cache/tilesets/rse/tileset/2827.png ../../../app/build/cache/tilesets/rse/tileset/2828.png ../../../app/build/cache/tilesets/rse/tileset/2829.png ../../../app/build/cache/tilesets/rse/tileset/283.png ../../../app/build/cache/tilesets/rse/tileset/2830.png ../../../app/build/cache/tilesets/rse/tileset/2831.png ../../../app/build/cache/tilesets/rse/tileset/2832.png ../../../app/build/cache/tilesets/rse/tileset/2833.png ../../../app/build/cache/tilesets/rse/tileset/2834.png ../../../app/build/cache/tilesets/rse/tileset/2835.png ../../../app/build/cache/tilesets/rse/tileset/2836.png ../../../app/build/cache/tilesets/rse/tileset/2837.png ../../../app/build/cache/tilesets/rse/tileset/2838.png ../../../app/build/cache/tilesets/rse/tileset/2839.png ../../../app/build/cache/tilesets/rse/tileset/284.png ../../../app/build/cache/tilesets/rse/tileset/2840.png ../../../app/build/cache/tilesets/rse/tileset/2841.png ../../../app/build/cache/tilesets/rse/tileset/2842.png ../../../app/build/cache/tilesets/rse/tileset/2843.png ../../../app/build/cache/tilesets/rse/tileset/2844.png ../../../app/build/cache/tilesets/rse/tileset/2845.png ../../../app/build/cache/tilesets/rse/tileset/2846.png ../../../app/build/cache/tilesets/rse/tileset/2847.png ../../../app/build/cache/tilesets/rse/tileset/2848.png ../../../app/build/cache/tilesets/rse/tileset/2849.png ../../../app/build/cache/tilesets/rse/tileset/285.png ../../../app/build/cache/tilesets/rse/tileset/2850.png ../../../app/build/cache/tilesets/rse/tileset/2851.png ../../../app/build/cache/tilesets/rse/tileset/2852.png ../../../app/build/cache/tilesets/rse/tileset/2853.png ../../../app/build/cache/tilesets/rse/tileset/2854.png ../../../app/build/cache/tilesets/rse/tileset/2855.png ../../../app/build/cache/tilesets/rse/tileset/2856.png ../../../app/build/cache/tilesets/rse/tileset/2857.png ../../../app/build/cache/tilesets/rse/tileset/2858.png ../../../app/build/cache/tilesets/rse/tileset/2859.png ../../../app/build/cache/tilesets/rse/tileset/286.png ../../../app/build/cache/tilesets/rse/tileset/2860.png ../../../app/build/cache/tilesets/rse/tileset/2861.png ../../../app/build/cache/tilesets/rse/tileset/2862.png ../../../app/build/cache/tilesets/rse/tileset/2863.png ../../../app/build/cache/tilesets/rse/tileset/2864.png ../../../app/build/cache/tilesets/rse/tileset/2865.png ../../../app/build/cache/tilesets/rse/tileset/2866.png ../../../app/build/cache/tilesets/rse/tileset/2867.png ../../../app/build/cache/tilesets/rse/tileset/2868.png ../../../app/build/cache/tilesets/rse/tileset/2869.png ../../../app/build/cache/tilesets/rse/tileset/287.png ../../../app/build/cache/tilesets/rse/tileset/2870.png ../../../app/build/cache/tilesets/rse/tileset/2871.png ../../../app/build/cache/tilesets/rse/tileset/2872.png ../../../app/build/cache/tilesets/rse/tileset/2873.png ../../../app/build/cache/tilesets/rse/tileset/2874.png ../../../app/build/cache/tilesets/rse/tileset/2875.png ../../../app/build/cache/tilesets/rse/tileset/2876.png ../../../app/build/cache/tilesets/rse/tileset/2877.png ../../../app/build/cache/tilesets/rse/tileset/2878.png ../../../app/build/cache/tilesets/rse/tileset/2879.png ../../../app/build/cache/tilesets/rse/tileset/288.png ../../../app/build/cache/tilesets/rse/tileset/2880.png ../../../app/build/cache/tilesets/rse/tileset/2881.png ../../../app/build/cache/tilesets/rse/tileset/2882.png ../../../app/build/cache/tilesets/rse/tileset/2883.png ../../../app/build/cache/tilesets/rse/tileset/2884.png ../../../app/build/cache/tilesets/rse/tileset/2885.png ../../../app/build/cache/tilesets/rse/tileset/2886.png ../../../app/build/cache/tilesets/rse/tileset/2887.png ../../../app/build/cache/tilesets/rse/tileset/2888.png ../../../app/build/cache/tilesets/rse/tileset/2889.png ../../../app/build/cache/tilesets/rse/tileset/289.png ../../../app/build/cache/tilesets/rse/tileset/2890.png ../../../app/build/cache/tilesets/rse/tileset/2891.png ../../../app/build/cache/tilesets/rse/tileset/2892.png ../../../app/build/cache/tilesets/rse/tileset/2893.png ../../../app/build/cache/tilesets/rse/tileset/2894.png ../../../app/build/cache/tilesets/rse/tileset/2895.png ../../../app/build/cache/tilesets/rse/tileset/2896.png ../../../app/build/cache/tilesets/rse/tileset/2897.png ../../../app/build/cache/tilesets/rse/tileset/2898.png ../../../app/build/cache/tilesets/rse/tileset/2899.png ../../../app/build/cache/tilesets/rse/tileset/29.png ../../../app/build/cache/tilesets/rse/tileset/290.png ../../../app/build/cache/tilesets/rse/tileset/2900.png ../../../app/build/cache/tilesets/rse/tileset/2901.png ../../../app/build/cache/tilesets/rse/tileset/2902.png ../../../app/build/cache/tilesets/rse/tileset/2903.png ../../../app/build/cache/tilesets/rse/tileset/2904.png ../../../app/build/cache/tilesets/rse/tileset/2905.png ../../../app/build/cache/tilesets/rse/tileset/2906.png ../../../app/build/cache/tilesets/rse/tileset/2907.png ../../../app/build/cache/tilesets/rse/tileset/2908.png ../../../app/build/cache/tilesets/rse/tileset/2909.png ../../../app/build/cache/tilesets/rse/tileset/291.png ../../../app/build/cache/tilesets/rse/tileset/2910.png ../../../app/build/cache/tilesets/rse/tileset/2911.png ../../../app/build/cache/tilesets/rse/tileset/2912.png ../../../app/build/cache/tilesets/rse/tileset/2913.png ../../../app/build/cache/tilesets/rse/tileset/2914.png ../../../app/build/cache/tilesets/rse/tileset/2915.png ../../../app/build/cache/tilesets/rse/tileset/2916.png ../../../app/build/cache/tilesets/rse/tileset/2917.png ../../../app/build/cache/tilesets/rse/tileset/2918.png ../../../app/build/cache/tilesets/rse/tileset/2919.png ../../../app/build/cache/tilesets/rse/tileset/292.png ../../../app/build/cache/tilesets/rse/tileset/2920.png ../../../app/build/cache/tilesets/rse/tileset/2921.png ../../../app/build/cache/tilesets/rse/tileset/2922.png ../../../app/build/cache/tilesets/rse/tileset/2923.png ../../../app/build/cache/tilesets/rse/tileset/2924.png ../../../app/build/cache/tilesets/rse/tileset/2925.png ../../../app/build/cache/tilesets/rse/tileset/2926.png ../../../app/build/cache/tilesets/rse/tileset/2927.png ../../../app/build/cache/tilesets/rse/tileset/2928.png ../../../app/build/cache/tilesets/rse/tileset/2929.png ../../../app/build/cache/tilesets/rse/tileset/293.png ../../../app/build/cache/tilesets/rse/tileset/2930.png ../../../app/build/cache/tilesets/rse/tileset/2931.png ../../../app/build/cache/tilesets/rse/tileset/2932.png ../../../app/build/cache/tilesets/rse/tileset/2933.png ../../../app/build/cache/tilesets/rse/tileset/2934.png ../../../app/build/cache/tilesets/rse/tileset/2935.png ../../../app/build/cache/tilesets/rse/tileset/2936.png ../../../app/build/cache/tilesets/rse/tileset/2937.png ../../../app/build/cache/tilesets/rse/tileset/2938.png ../../../app/build/cache/tilesets/rse/tileset/2939.png ../../../app/build/cache/tilesets/rse/tileset/294.png ../../../app/build/cache/tilesets/rse/tileset/2940.png ../../../app/build/cache/tilesets/rse/tileset/2941.png ../../../app/build/cache/tilesets/rse/tileset/2942.png ../../../app/build/cache/tilesets/rse/tileset/2943.png ../../../app/build/cache/tilesets/rse/tileset/2944.png ../../../app/build/cache/tilesets/rse/tileset/2945.png ../../../app/build/cache/tilesets/rse/tileset/2946.png ../../../app/build/cache/tilesets/rse/tileset/2947.png ../../../app/build/cache/tilesets/rse/tileset/2948.png ../../../app/build/cache/tilesets/rse/tileset/2949.png ../../../app/build/cache/tilesets/rse/tileset/295.png ../../../app/build/cache/tilesets/rse/tileset/2950.png ../../../app/build/cache/tilesets/rse/tileset/2951.png ../../../app/build/cache/tilesets/rse/tileset/2952.png ../../../app/build/cache/tilesets/rse/tileset/2953.png ../../../app/build/cache/tilesets/rse/tileset/2954.png ../../../app/build/cache/tilesets/rse/tileset/2955.png ../../../app/build/cache/tilesets/rse/tileset/2956.png ../../../app/build/cache/tilesets/rse/tileset/2957.png ../../../app/build/cache/tilesets/rse/tileset/2958.png ../../../app/build/cache/tilesets/rse/tileset/2959.png ../../../app/build/cache/tilesets/rse/tileset/296.png ../../../app/build/cache/tilesets/rse/tileset/2960.png ../../../app/build/cache/tilesets/rse/tileset/2961.png ../../../app/build/cache/tilesets/rse/tileset/2962.png ../../../app/build/cache/tilesets/rse/tileset/2963.png ../../../app/build/cache/tilesets/rse/tileset/2964.png ../../../app/build/cache/tilesets/rse/tileset/2965.png ../../../app/build/cache/tilesets/rse/tileset/2966.png ../../../app/build/cache/tilesets/rse/tileset/2967.png ../../../app/build/cache/tilesets/rse/tileset/2968.png ../../../app/build/cache/tilesets/rse/tileset/2969.png ../../../app/build/cache/tilesets/rse/tileset/297.png ../../../app/build/cache/tilesets/rse/tileset/2970.png ../../../app/build/cache/tilesets/rse/tileset/2971.png ../../../app/build/cache/tilesets/rse/tileset/2972.png ../../../app/build/cache/tilesets/rse/tileset/2973.png ../../../app/build/cache/tilesets/rse/tileset/2974.png ../../../app/build/cache/tilesets/rse/tileset/2975.png ../../../app/build/cache/tilesets/rse/tileset/2976.png ../../../app/build/cache/tilesets/rse/tileset/2977.png ../../../app/build/cache/tilesets/rse/tileset/2978.png ../../../app/build/cache/tilesets/rse/tileset/2979.png ../../../app/build/cache/tilesets/rse/tileset/298.png ../../../app/build/cache/tilesets/rse/tileset/2980.png ../../../app/build/cache/tilesets/rse/tileset/2981.png ../../../app/build/cache/tilesets/rse/tileset/2982.png ../../../app/build/cache/tilesets/rse/tileset/2983.png ../../../app/build/cache/tilesets/rse/tileset/2984.png ../../../app/build/cache/tilesets/rse/tileset/2985.png ../../../app/build/cache/tilesets/rse/tileset/2986.png ../../../app/build/cache/tilesets/rse/tileset/2987.png ../../../app/build/cache/tilesets/rse/tileset/2988.png ../../../app/build/cache/tilesets/rse/tileset/2989.png ../../../app/build/cache/tilesets/rse/tileset/299.png ../../../app/build/cache/tilesets/rse/tileset/2990.png ../../../app/build/cache/tilesets/rse/tileset/2991.png ../../../app/build/cache/tilesets/rse/tileset/2992.png ../../../app/build/cache/tilesets/rse/tileset/2993.png ../../../app/build/cache/tilesets/rse/tileset/2994.png ../../../app/build/cache/tilesets/rse/tileset/2995.png ../../../app/build/cache/tilesets/rse/tileset/2996.png ../../../app/build/cache/tilesets/rse/tileset/2997.png ../../../app/build/cache/tilesets/rse/tileset/2998.png ../../../app/build/cache/tilesets/rse/tileset/2999.png ../../../app/build/cache/tilesets/rse/tileset/3.png ../../../app/build/cache/tilesets/rse/tileset/30.png ../../../app/build/cache/tilesets/rse/tileset/300.png ../../../app/build/cache/tilesets/rse/tileset/3000.png ../../../app/build/cache/tilesets/rse/tileset/3001.png ../../../app/build/cache/tilesets/rse/tileset/3002.png ../../../app/build/cache/tilesets/rse/tileset/3003.png ../../../app/build/cache/tilesets/rse/tileset/3004.png ../../../app/build/cache/tilesets/rse/tileset/3005.png ../../../app/build/cache/tilesets/rse/tileset/3006.png ../../../app/build/cache/tilesets/rse/tileset/3007.png ../../../app/build/cache/tilesets/rse/tileset/3008.png ../../../app/build/cache/tilesets/rse/tileset/3009.png ../../../app/build/cache/tilesets/rse/tileset/301.png ../../../app/build/cache/tilesets/rse/tileset/3010.png ../../../app/build/cache/tilesets/rse/tileset/3011.png ../../../app/build/cache/tilesets/rse/tileset/3012.png ../../../app/build/cache/tilesets/rse/tileset/3013.png ../../../app/build/cache/tilesets/rse/tileset/3014.png ../../../app/build/cache/tilesets/rse/tileset/3015.png ../../../app/build/cache/tilesets/rse/tileset/3016.png ../../../app/build/cache/tilesets/rse/tileset/3017.png ../../../app/build/cache/tilesets/rse/tileset/3018.png ../../../app/build/cache/tilesets/rse/tileset/3019.png ../../../app/build/cache/tilesets/rse/tileset/302.png ../../../app/build/cache/tilesets/rse/tileset/3020.png ../../../app/build/cache/tilesets/rse/tileset/3021.png ../../../app/build/cache/tilesets/rse/tileset/3022.png ../../../app/build/cache/tilesets/rse/tileset/3023.png ../../../app/build/cache/tilesets/rse/tileset/3024.png ../../../app/build/cache/tilesets/rse/tileset/3025.png ../../../app/build/cache/tilesets/rse/tileset/3026.png ../../../app/build/cache/tilesets/rse/tileset/3027.png ../../../app/build/cache/tilesets/rse/tileset/3028.png ../../../app/build/cache/tilesets/rse/tileset/3029.png ../../../app/build/cache/tilesets/rse/tileset/303.png ../../../app/build/cache/tilesets/rse/tileset/3030.png ../../../app/build/cache/tilesets/rse/tileset/3031.png ../../../app/build/cache/tilesets/rse/tileset/3032.png ../../../app/build/cache/tilesets/rse/tileset/3033.png ../../../app/build/cache/tilesets/rse/tileset/3034.png ../../../app/build/cache/tilesets/rse/tileset/3035.png ../../../app/build/cache/tilesets/rse/tileset/3036.png ../../../app/build/cache/tilesets/rse/tileset/3037.png ../../../app/build/cache/tilesets/rse/tileset/3038.png ../../../app/build/cache/tilesets/rse/tileset/3039.png ../../../app/build/cache/tilesets/rse/tileset/304.png ../../../app/build/cache/tilesets/rse/tileset/3040.png ../../../app/build/cache/tilesets/rse/tileset/3041.png ../../../app/build/cache/tilesets/rse/tileset/3042.png ../../../app/build/cache/tilesets/rse/tileset/3043.png ../../../app/build/cache/tilesets/rse/tileset/3044.png ../../../app/build/cache/tilesets/rse/tileset/3045.png ../../../app/build/cache/tilesets/rse/tileset/3046.png ../../../app/build/cache/tilesets/rse/tileset/3047.png ../../../app/build/cache/tilesets/rse/tileset/3048.png ../../../app/build/cache/tilesets/rse/tileset/3049.png ../../../app/build/cache/tilesets/rse/tileset/305.png ../../../app/build/cache/tilesets/rse/tileset/3050.png ../../../app/build/cache/tilesets/rse/tileset/3051.png ../../../app/build/cache/tilesets/rse/tileset/3052.png ../../../app/build/cache/tilesets/rse/tileset/3053.png ../../../app/build/cache/tilesets/rse/tileset/3054.png ../../../app/build/cache/tilesets/rse/tileset/3055.png ../../../app/build/cache/tilesets/rse/tileset/3056.png ../../../app/build/cache/tilesets/rse/tileset/3057.png ../../../app/build/cache/tilesets/rse/tileset/3058.png ../../../app/build/cache/tilesets/rse/tileset/3059.png ../../../app/build/cache/tilesets/rse/tileset/306.png ../../../app/build/cache/tilesets/rse/tileset/3060.png ../../../app/build/cache/tilesets/rse/tileset/3061.png ../../../app/build/cache/tilesets/rse/tileset/3062.png ../../../app/build/cache/tilesets/rse/tileset/3063.png ../../../app/build/cache/tilesets/rse/tileset/3064.png ../../../app/build/cache/tilesets/rse/tileset/3065.png ../../../app/build/cache/tilesets/rse/tileset/3066.png ../../../app/build/cache/tilesets/rse/tileset/3067.png ../../../app/build/cache/tilesets/rse/tileset/3068.png ../../../app/build/cache/tilesets/rse/tileset/3069.png ../../../app/build/cache/tilesets/rse/tileset/307.png ../../../app/build/cache/tilesets/rse/tileset/3070.png ../../../app/build/cache/tilesets/rse/tileset/3071.png ../../../app/build/cache/tilesets/rse/tileset/3072.png ../../../app/build/cache/tilesets/rse/tileset/3073.png ../../../app/build/cache/tilesets/rse/tileset/3074.png ../../../app/build/cache/tilesets/rse/tileset/3075.png ../../../app/build/cache/tilesets/rse/tileset/3076.png ../../../app/build/cache/tilesets/rse/tileset/3077.png ../../../app/build/cache/tilesets/rse/tileset/3078.png ../../../app/build/cache/tilesets/rse/tileset/3079.png ../../../app/build/cache/tilesets/rse/tileset/308.png ../../../app/build/cache/tilesets/rse/tileset/3080.png ../../../app/build/cache/tilesets/rse/tileset/3081.png ../../../app/build/cache/tilesets/rse/tileset/3082.png ../../../app/build/cache/tilesets/rse/tileset/3083.png ../../../app/build/cache/tilesets/rse/tileset/3084.png ../../../app/build/cache/tilesets/rse/tileset/3085.png ../../../app/build/cache/tilesets/rse/tileset/3086.png ../../../app/build/cache/tilesets/rse/tileset/3087.png ../../../app/build/cache/tilesets/rse/tileset/3088.png ../../../app/build/cache/tilesets/rse/tileset/3089.png ../../../app/build/cache/tilesets/rse/tileset/309.png ../../../app/build/cache/tilesets/rse/tileset/3090.png ../../../app/build/cache/tilesets/rse/tileset/3091.png ../../../app/build/cache/tilesets/rse/tileset/3092.png ../../../app/build/cache/tilesets/rse/tileset/3093.png ../../../app/build/cache/tilesets/rse/tileset/3094.png ../../../app/build/cache/tilesets/rse/tileset/3095.png ../../../app/build/cache/tilesets/rse/tileset/3096.png ../../../app/build/cache/tilesets/rse/tileset/3097.png ../../../app/build/cache/tilesets/rse/tileset/3098.png ../../../app/build/cache/tilesets/rse/tileset/3099.png ../../../app/build/cache/tilesets/rse/tileset/31.png ../../../app/build/cache/tilesets/rse/tileset/310.png ../../../app/build/cache/tilesets/rse/tileset/3100.png ../../../app/build/cache/tilesets/rse/tileset/3101.png ../../../app/build/cache/tilesets/rse/tileset/3102.png ../../../app/build/cache/tilesets/rse/tileset/3103.png ../../../app/build/cache/tilesets/rse/tileset/3104.png ../../../app/build/cache/tilesets/rse/tileset/3105.png ../../../app/build/cache/tilesets/rse/tileset/3106.png ../../../app/build/cache/tilesets/rse/tileset/3107.png ../../../app/build/cache/tilesets/rse/tileset/3108.png ../../../app/build/cache/tilesets/rse/tileset/3109.png ../../../app/build/cache/tilesets/rse/tileset/311.png ../../../app/build/cache/tilesets/rse/tileset/3110.png ../../../app/build/cache/tilesets/rse/tileset/3111.png ../../../app/build/cache/tilesets/rse/tileset/3112.png ../../../app/build/cache/tilesets/rse/tileset/3113.png ../../../app/build/cache/tilesets/rse/tileset/3114.png ../../../app/build/cache/tilesets/rse/tileset/3115.png ../../../app/build/cache/tilesets/rse/tileset/3116.png ../../../app/build/cache/tilesets/rse/tileset/3117.png ../../../app/build/cache/tilesets/rse/tileset/3118.png ../../../app/build/cache/tilesets/rse/tileset/3119.png ../../../app/build/cache/tilesets/rse/tileset/312.png ../../../app/build/cache/tilesets/rse/tileset/3120.png ../../../app/build/cache/tilesets/rse/tileset/3121.png ../../../app/build/cache/tilesets/rse/tileset/3122.png ../../../app/build/cache/tilesets/rse/tileset/3123.png ../../../app/build/cache/tilesets/rse/tileset/3124.png ../../../app/build/cache/tilesets/rse/tileset/3125.png ../../../app/build/cache/tilesets/rse/tileset/3126.png ../../../app/build/cache/tilesets/rse/tileset/3127.png ../../../app/build/cache/tilesets/rse/tileset/3128.png ../../../app/build/cache/tilesets/rse/tileset/3129.png ../../../app/build/cache/tilesets/rse/tileset/313.png ../../../app/build/cache/tilesets/rse/tileset/3130.png ../../../app/build/cache/tilesets/rse/tileset/3131.png ../../../app/build/cache/tilesets/rse/tileset/3132.png ../../../app/build/cache/tilesets/rse/tileset/3133.png ../../../app/build/cache/tilesets/rse/tileset/3134.png ../../../app/build/cache/tilesets/rse/tileset/3135.png ../../../app/build/cache/tilesets/rse/tileset/3136.png ../../../app/build/cache/tilesets/rse/tileset/3137.png ../../../app/build/cache/tilesets/rse/tileset/3138.png ../../../app/build/cache/tilesets/rse/tileset/3139.png ../../../app/build/cache/tilesets/rse/tileset/314.png ../../../app/build/cache/tilesets/rse/tileset/3140.png ../../../app/build/cache/tilesets/rse/tileset/3141.png ../../../app/build/cache/tilesets/rse/tileset/3142.png ../../../app/build/cache/tilesets/rse/tileset/3143.png ../../../app/build/cache/tilesets/rse/tileset/3144.png ../../../app/build/cache/tilesets/rse/tileset/3145.png ../../../app/build/cache/tilesets/rse/tileset/3146.png ../../../app/build/cache/tilesets/rse/tileset/3147.png ../../../app/build/cache/tilesets/rse/tileset/3148.png ../../../app/build/cache/tilesets/rse/tileset/3149.png ../../../app/build/cache/tilesets/rse/tileset/315.png ../../../app/build/cache/tilesets/rse/tileset/3150.png ../../../app/build/cache/tilesets/rse/tileset/3151.png ../../../app/build/cache/tilesets/rse/tileset/3152.png ../../../app/build/cache/tilesets/rse/tileset/3153.png ../../../app/build/cache/tilesets/rse/tileset/3154.png ../../../app/build/cache/tilesets/rse/tileset/3155.png ../../../app/build/cache/tilesets/rse/tileset/3156.png ../../../app/build/cache/tilesets/rse/tileset/3157.png ../../../app/build/cache/tilesets/rse/tileset/3158.png ../../../app/build/cache/tilesets/rse/tileset/3159.png ../../../app/build/cache/tilesets/rse/tileset/316.png ../../../app/build/cache/tilesets/rse/tileset/3160.png ../../../app/build/cache/tilesets/rse/tileset/3161.png ../../../app/build/cache/tilesets/rse/tileset/3162.png ../../../app/build/cache/tilesets/rse/tileset/3163.png ../../../app/build/cache/tilesets/rse/tileset/3164.png ../../../app/build/cache/tilesets/rse/tileset/3165.png ../../../app/build/cache/tilesets/rse/tileset/3166.png ../../../app/build/cache/tilesets/rse/tileset/3167.png ../../../app/build/cache/tilesets/rse/tileset/3168.png ../../../app/build/cache/tilesets/rse/tileset/3169.png ../../../app/build/cache/tilesets/rse/tileset/317.png ../../../app/build/cache/tilesets/rse/tileset/3170.png ../../../app/build/cache/tilesets/rse/tileset/3171.png ../../../app/build/cache/tilesets/rse/tileset/3172.png ../../../app/build/cache/tilesets/rse/tileset/3173.png ../../../app/build/cache/tilesets/rse/tileset/3174.png ../../../app/build/cache/tilesets/rse/tileset/3175.png ../../../app/build/cache/tilesets/rse/tileset/3176.png ../../../app/build/cache/tilesets/rse/tileset/3177.png ../../../app/build/cache/tilesets/rse/tileset/3178.png ../../../app/build/cache/tilesets/rse/tileset/3179.png ../../../app/build/cache/tilesets/rse/tileset/318.png ../../../app/build/cache/tilesets/rse/tileset/3180.png ../../../app/build/cache/tilesets/rse/tileset/3181.png ../../../app/build/cache/tilesets/rse/tileset/3182.png ../../../app/build/cache/tilesets/rse/tileset/3183.png ../../../app/build/cache/tilesets/rse/tileset/3184.png ../../../app/build/cache/tilesets/rse/tileset/3185.png ../../../app/build/cache/tilesets/rse/tileset/3186.png ../../../app/build/cache/tilesets/rse/tileset/3187.png ../../../app/build/cache/tilesets/rse/tileset/3188.png ../../../app/build/cache/tilesets/rse/tileset/3189.png ../../../app/build/cache/tilesets/rse/tileset/319.png ../../../app/build/cache/tilesets/rse/tileset/3190.png ../../../app/build/cache/tilesets/rse/tileset/3191.png ../../../app/build/cache/tilesets/rse/tileset/3192.png ../../../app/build/cache/tilesets/rse/tileset/3193.png ../../../app/build/cache/tilesets/rse/tileset/3194.png ../../../app/build/cache/tilesets/rse/tileset/3195.png ../../../app/build/cache/tilesets/rse/tileset/3196.png ../../../app/build/cache/tilesets/rse/tileset/3197.png ../../../app/build/cache/tilesets/rse/tileset/3198.png ../../../app/build/cache/tilesets/rse/tileset/3199.png ../../../app/build/cache/tilesets/rse/tileset/32.png ../../../app/build/cache/tilesets/rse/tileset/320.png ../../../app/build/cache/tilesets/rse/tileset/3200.png ../../../app/build/cache/tilesets/rse/tileset/3201.png ../../../app/build/cache/tilesets/rse/tileset/3202.png ../../../app/build/cache/tilesets/rse/tileset/3203.png ../../../app/build/cache/tilesets/rse/tileset/3204.png ../../../app/build/cache/tilesets/rse/tileset/3205.png ../../../app/build/cache/tilesets/rse/tileset/3206.png ../../../app/build/cache/tilesets/rse/tileset/3207.png ../../../app/build/cache/tilesets/rse/tileset/3208.png ../../../app/build/cache/tilesets/rse/tileset/3209.png ../../../app/build/cache/tilesets/rse/tileset/321.png ../../../app/build/cache/tilesets/rse/tileset/3210.png ../../../app/build/cache/tilesets/rse/tileset/3211.png ../../../app/build/cache/tilesets/rse/tileset/3212.png ../../../app/build/cache/tilesets/rse/tileset/3213.png ../../../app/build/cache/tilesets/rse/tileset/3214.png ../../../app/build/cache/tilesets/rse/tileset/3215.png ../../../app/build/cache/tilesets/rse/tileset/3216.png ../../../app/build/cache/tilesets/rse/tileset/3217.png ../../../app/build/cache/tilesets/rse/tileset/3218.png ../../../app/build/cache/tilesets/rse/tileset/3219.png ../../../app/build/cache/tilesets/rse/tileset/322.png ../../../app/build/cache/tilesets/rse/tileset/3220.png ../../../app/build/cache/tilesets/rse/tileset/3221.png ../../../app/build/cache/tilesets/rse/tileset/3222.png ../../../app/build/cache/tilesets/rse/tileset/3223.png ../../../app/build/cache/tilesets/rse/tileset/3224.png ../../../app/build/cache/tilesets/rse/tileset/3225.png ../../../app/build/cache/tilesets/rse/tileset/3226.png ../../../app/build/cache/tilesets/rse/tileset/3227.png ../../../app/build/cache/tilesets/rse/tileset/3228.png ../../../app/build/cache/tilesets/rse/tileset/3229.png ../../../app/build/cache/tilesets/rse/tileset/323.png ../../../app/build/cache/tilesets/rse/tileset/3230.png ../../../app/build/cache/tilesets/rse/tileset/3231.png ../../../app/build/cache/tilesets/rse/tileset/3232.png ../../../app/build/cache/tilesets/rse/tileset/3233.png ../../../app/build/cache/tilesets/rse/tileset/3234.png ../../../app/build/cache/tilesets/rse/tileset/3235.png ../../../app/build/cache/tilesets/rse/tileset/3236.png ../../../app/build/cache/tilesets/rse/tileset/3237.png ../../../app/build/cache/tilesets/rse/tileset/3238.png ../../../app/build/cache/tilesets/rse/tileset/3239.png ../../../app/build/cache/tilesets/rse/tileset/324.png ../../../app/build/cache/tilesets/rse/tileset/3240.png ../../../app/build/cache/tilesets/rse/tileset/3241.png ../../../app/build/cache/tilesets/rse/tileset/3242.png ../../../app/build/cache/tilesets/rse/tileset/3243.png ../../../app/build/cache/tilesets/rse/tileset/3244.png ../../../app/build/cache/tilesets/rse/tileset/3245.png ../../../app/build/cache/tilesets/rse/tileset/3246.png ../../../app/build/cache/tilesets/rse/tileset/3247.png ../../../app/build/cache/tilesets/rse/tileset/3248.png ../../../app/build/cache/tilesets/rse/tileset/3249.png ../../../app/build/cache/tilesets/rse/tileset/325.png ../../../app/build/cache/tilesets/rse/tileset/3250.png ../../../app/build/cache/tilesets/rse/tileset/3251.png ../../../app/build/cache/tilesets/rse/tileset/3252.png ../../../app/build/cache/tilesets/rse/tileset/3253.png ../../../app/build/cache/tilesets/rse/tileset/3254.png ../../../app/build/cache/tilesets/rse/tileset/3255.png ../../../app/build/cache/tilesets/rse/tileset/3256.png ../../../app/build/cache/tilesets/rse/tileset/3257.png ../../../app/build/cache/tilesets/rse/tileset/3258.png ../../../app/build/cache/tilesets/rse/tileset/3259.png ../../../app/build/cache/tilesets/rse/tileset/326.png ../../../app/build/cache/tilesets/rse/tileset/3260.png ../../../app/build/cache/tilesets/rse/tileset/3261.png ../../../app/build/cache/tilesets/rse/tileset/3262.png ../../../app/build/cache/tilesets/rse/tileset/3263.png ../../../app/build/cache/tilesets/rse/tileset/3264.png ../../../app/build/cache/tilesets/rse/tileset/3265.png ../../../app/build/cache/tilesets/rse/tileset/3266.png ../../../app/build/cache/tilesets/rse/tileset/3267.png ../../../app/build/cache/tilesets/rse/tileset/3268.png ../../../app/build/cache/tilesets/rse/tileset/3269.png ../../../app/build/cache/tilesets/rse/tileset/327.png ../../../app/build/cache/tilesets/rse/tileset/3270.png ../../../app/build/cache/tilesets/rse/tileset/3271.png ../../../app/build/cache/tilesets/rse/tileset/3272.png ../../../app/build/cache/tilesets/rse/tileset/3273.png ../../../app/build/cache/tilesets/rse/tileset/3274.png ../../../app/build/cache/tilesets/rse/tileset/3275.png ../../../app/build/cache/tilesets/rse/tileset/3276.png ../../../app/build/cache/tilesets/rse/tileset/3277.png ../../../app/build/cache/tilesets/rse/tileset/3278.png ../../../app/build/cache/tilesets/rse/tileset/3279.png ../../../app/build/cache/tilesets/rse/tileset/328.png ../../../app/build/cache/tilesets/rse/tileset/3280.png ../../../app/build/cache/tilesets/rse/tileset/3281.png ../../../app/build/cache/tilesets/rse/tileset/3282.png ../../../app/build/cache/tilesets/rse/tileset/3283.png ../../../app/build/cache/tilesets/rse/tileset/3284.png ../../../app/build/cache/tilesets/rse/tileset/3285.png ../../../app/build/cache/tilesets/rse/tileset/3286.png ../../../app/build/cache/tilesets/rse/tileset/3287.png ../../../app/build/cache/tilesets/rse/tileset/3288.png ../../../app/build/cache/tilesets/rse/tileset/3289.png ../../../app/build/cache/tilesets/rse/tileset/329.png ../../../app/build/cache/tilesets/rse/tileset/3290.png ../../../app/build/cache/tilesets/rse/tileset/3291.png ../../../app/build/cache/tilesets/rse/tileset/3292.png ../../../app/build/cache/tilesets/rse/tileset/3293.png ../../../app/build/cache/tilesets/rse/tileset/3294.png ../../../app/build/cache/tilesets/rse/tileset/3295.png ../../../app/build/cache/tilesets/rse/tileset/3296.png ../../../app/build/cache/tilesets/rse/tileset/3297.png ../../../app/build/cache/tilesets/rse/tileset/3298.png ../../../app/build/cache/tilesets/rse/tileset/3299.png ../../../app/build/cache/tilesets/rse/tileset/33.png ../../../app/build/cache/tilesets/rse/tileset/330.png ../../../app/build/cache/tilesets/rse/tileset/3300.png ../../../app/build/cache/tilesets/rse/tileset/3301.png ../../../app/build/cache/tilesets/rse/tileset/3302.png ../../../app/build/cache/tilesets/rse/tileset/3303.png ../../../app/build/cache/tilesets/rse/tileset/3304.png ../../../app/build/cache/tilesets/rse/tileset/3305.png ../../../app/build/cache/tilesets/rse/tileset/3306.png ../../../app/build/cache/tilesets/rse/tileset/3307.png ../../../app/build/cache/tilesets/rse/tileset/3308.png ../../../app/build/cache/tilesets/rse/tileset/3309.png ../../../app/build/cache/tilesets/rse/tileset/331.png ../../../app/build/cache/tilesets/rse/tileset/3310.png ../../../app/build/cache/tilesets/rse/tileset/3311.png ../../../app/build/cache/tilesets/rse/tileset/3312.png ../../../app/build/cache/tilesets/rse/tileset/3313.png ../../../app/build/cache/tilesets/rse/tileset/3314.png ../../../app/build/cache/tilesets/rse/tileset/3315.png ../../../app/build/cache/tilesets/rse/tileset/3316.png ../../../app/build/cache/tilesets/rse/tileset/3317.png ../../../app/build/cache/tilesets/rse/tileset/3318.png ../../../app/build/cache/tilesets/rse/tileset/3319.png ../../../app/build/cache/tilesets/rse/tileset/332.png ../../../app/build/cache/tilesets/rse/tileset/3320.png ../../../app/build/cache/tilesets/rse/tileset/3321.png ../../../app/build/cache/tilesets/rse/tileset/3322.png ../../../app/build/cache/tilesets/rse/tileset/3323.png ../../../app/build/cache/tilesets/rse/tileset/3324.png ../../../app/build/cache/tilesets/rse/tileset/3325.png ../../../app/build/cache/tilesets/rse/tileset/3326.png ../../../app/build/cache/tilesets/rse/tileset/3327.png ../../../app/build/cache/tilesets/rse/tileset/3328.png ../../../app/build/cache/tilesets/rse/tileset/3329.png ../../../app/build/cache/tilesets/rse/tileset/333.png ../../../app/build/cache/tilesets/rse/tileset/3330.png ../../../app/build/cache/tilesets/rse/tileset/3331.png ../../../app/build/cache/tilesets/rse/tileset/3332.png ../../../app/build/cache/tilesets/rse/tileset/3333.png ../../../app/build/cache/tilesets/rse/tileset/3334.png ../../../app/build/cache/tilesets/rse/tileset/3335.png ../../../app/build/cache/tilesets/rse/tileset/3336.png ../../../app/build/cache/tilesets/rse/tileset/3337.png ../../../app/build/cache/tilesets/rse/tileset/3338.png ../../../app/build/cache/tilesets/rse/tileset/3339.png ../../../app/build/cache/tilesets/rse/tileset/334.png ../../../app/build/cache/tilesets/rse/tileset/3340.png ../../../app/build/cache/tilesets/rse/tileset/3341.png ../../../app/build/cache/tilesets/rse/tileset/3342.png ../../../app/build/cache/tilesets/rse/tileset/3343.png ../../../app/build/cache/tilesets/rse/tileset/3344.png ../../../app/build/cache/tilesets/rse/tileset/3345.png ../../../app/build/cache/tilesets/rse/tileset/3346.png ../../../app/build/cache/tilesets/rse/tileset/3347.png ../../../app/build/cache/tilesets/rse/tileset/3348.png ../../../app/build/cache/tilesets/rse/tileset/3349.png ../../../app/build/cache/tilesets/rse/tileset/335.png ../../../app/build/cache/tilesets/rse/tileset/3350.png ../../../app/build/cache/tilesets/rse/tileset/3351.png ../../../app/build/cache/tilesets/rse/tileset/3352.png ../../../app/build/cache/tilesets/rse/tileset/3353.png ../../../app/build/cache/tilesets/rse/tileset/3354.png ../../../app/build/cache/tilesets/rse/tileset/3355.png ../../../app/build/cache/tilesets/rse/tileset/3356.png ../../../app/build/cache/tilesets/rse/tileset/3357.png ../../../app/build/cache/tilesets/rse/tileset/3358.png ../../../app/build/cache/tilesets/rse/tileset/3359.png ../../../app/build/cache/tilesets/rse/tileset/336.png ../../../app/build/cache/tilesets/rse/tileset/3360.png ../../../app/build/cache/tilesets/rse/tileset/3361.png ../../../app/build/cache/tilesets/rse/tileset/3362.png ../../../app/build/cache/tilesets/rse/tileset/3363.png ../../../app/build/cache/tilesets/rse/tileset/3364.png ../../../app/build/cache/tilesets/rse/tileset/3365.png ../../../app/build/cache/tilesets/rse/tileset/3366.png ../../../app/build/cache/tilesets/rse/tileset/3367.png ../../../app/build/cache/tilesets/rse/tileset/3368.png ../../../app/build/cache/tilesets/rse/tileset/3369.png ../../../app/build/cache/tilesets/rse/tileset/337.png ../../../app/build/cache/tilesets/rse/tileset/3370.png ../../../app/build/cache/tilesets/rse/tileset/3371.png ../../../app/build/cache/tilesets/rse/tileset/3372.png ../../../app/build/cache/tilesets/rse/tileset/3373.png ../../../app/build/cache/tilesets/rse/tileset/3374.png ../../../app/build/cache/tilesets/rse/tileset/3375.png ../../../app/build/cache/tilesets/rse/tileset/3376.png ../../../app/build/cache/tilesets/rse/tileset/3377.png ../../../app/build/cache/tilesets/rse/tileset/3378.png ../../../app/build/cache/tilesets/rse/tileset/3379.png ../../../app/build/cache/tilesets/rse/tileset/338.png ../../../app/build/cache/tilesets/rse/tileset/3380.png ../../../app/build/cache/tilesets/rse/tileset/3381.png ../../../app/build/cache/tilesets/rse/tileset/3382.png ../../../app/build/cache/tilesets/rse/tileset/3383.png ../../../app/build/cache/tilesets/rse/tileset/3384.png ../../../app/build/cache/tilesets/rse/tileset/3385.png ../../../app/build/cache/tilesets/rse/tileset/3386.png ../../../app/build/cache/tilesets/rse/tileset/3387.png ../../../app/build/cache/tilesets/rse/tileset/3388.png ../../../app/build/cache/tilesets/rse/tileset/3389.png ../../../app/build/cache/tilesets/rse/tileset/339.png ../../../app/build/cache/tilesets/rse/tileset/3390.png ../../../app/build/cache/tilesets/rse/tileset/3391.png ../../../app/build/cache/tilesets/rse/tileset/3392.png ../../../app/build/cache/tilesets/rse/tileset/3393.png ../../../app/build/cache/tilesets/rse/tileset/3394.png ../../../app/build/cache/tilesets/rse/tileset/3395.png ../../../app/build/cache/tilesets/rse/tileset/3396.png ../../../app/build/cache/tilesets/rse/tileset/3397.png ../../../app/build/cache/tilesets/rse/tileset/3398.png ../../../app/build/cache/tilesets/rse/tileset/3399.png ../../../app/build/cache/tilesets/rse/tileset/34.png ../../../app/build/cache/tilesets/rse/tileset/340.png ../../../app/build/cache/tilesets/rse/tileset/3400.png ../../../app/build/cache/tilesets/rse/tileset/3401.png ../../../app/build/cache/tilesets/rse/tileset/3402.png ../../../app/build/cache/tilesets/rse/tileset/3403.png ../../../app/build/cache/tilesets/rse/tileset/3404.png ../../../app/build/cache/tilesets/rse/tileset/3405.png ../../../app/build/cache/tilesets/rse/tileset/3406.png ../../../app/build/cache/tilesets/rse/tileset/3407.png ../../../app/build/cache/tilesets/rse/tileset/3408.png ../../../app/build/cache/tilesets/rse/tileset/3409.png ../../../app/build/cache/tilesets/rse/tileset/341.png ../../../app/build/cache/tilesets/rse/tileset/3410.png ../../../app/build/cache/tilesets/rse/tileset/3411.png ../../../app/build/cache/tilesets/rse/tileset/3412.png ../../../app/build/cache/tilesets/rse/tileset/3413.png ../../../app/build/cache/tilesets/rse/tileset/3414.png ../../../app/build/cache/tilesets/rse/tileset/3415.png ../../../app/build/cache/tilesets/rse/tileset/3416.png ../../../app/build/cache/tilesets/rse/tileset/3417.png ../../../app/build/cache/tilesets/rse/tileset/3418.png ../../../app/build/cache/tilesets/rse/tileset/3419.png ../../../app/build/cache/tilesets/rse/tileset/342.png ../../../app/build/cache/tilesets/rse/tileset/3420.png ../../../app/build/cache/tilesets/rse/tileset/3421.png ../../../app/build/cache/tilesets/rse/tileset/3422.png ../../../app/build/cache/tilesets/rse/tileset/3423.png ../../../app/build/cache/tilesets/rse/tileset/3424.png ../../../app/build/cache/tilesets/rse/tileset/3425.png ../../../app/build/cache/tilesets/rse/tileset/3426.png ../../../app/build/cache/tilesets/rse/tileset/3427.png ../../../app/build/cache/tilesets/rse/tileset/3428.png ../../../app/build/cache/tilesets/rse/tileset/3429.png ../../../app/build/cache/tilesets/rse/tileset/343.png ../../../app/build/cache/tilesets/rse/tileset/3430.png ../../../app/build/cache/tilesets/rse/tileset/3431.png ../../../app/build/cache/tilesets/rse/tileset/3432.png ../../../app/build/cache/tilesets/rse/tileset/3433.png ../../../app/build/cache/tilesets/rse/tileset/3434.png ../../../app/build/cache/tilesets/rse/tileset/3435.png ../../../app/build/cache/tilesets/rse/tileset/3436.png ../../../app/build/cache/tilesets/rse/tileset/3437.png ../../../app/build/cache/tilesets/rse/tileset/3438.png ../../../app/build/cache/tilesets/rse/tileset/3439.png ../../../app/build/cache/tilesets/rse/tileset/344.png ../../../app/build/cache/tilesets/rse/tileset/3440.png ../../../app/build/cache/tilesets/rse/tileset/3441.png ../../../app/build/cache/tilesets/rse/tileset/3442.png ../../../app/build/cache/tilesets/rse/tileset/3443.png ../../../app/build/cache/tilesets/rse/tileset/3444.png ../../../app/build/cache/tilesets/rse/tileset/3445.png ../../../app/build/cache/tilesets/rse/tileset/3446.png ../../../app/build/cache/tilesets/rse/tileset/3447.png ../../../app/build/cache/tilesets/rse/tileset/3448.png ../../../app/build/cache/tilesets/rse/tileset/3449.png ../../../app/build/cache/tilesets/rse/tileset/345.png ../../../app/build/cache/tilesets/rse/tileset/3450.png ../../../app/build/cache/tilesets/rse/tileset/3451.png ../../../app/build/cache/tilesets/rse/tileset/3452.png ../../../app/build/cache/tilesets/rse/tileset/3453.png ../../../app/build/cache/tilesets/rse/tileset/3454.png ../../../app/build/cache/tilesets/rse/tileset/3455.png ../../../app/build/cache/tilesets/rse/tileset/3456.png ../../../app/build/cache/tilesets/rse/tileset/3457.png ../../../app/build/cache/tilesets/rse/tileset/3458.png ../../../app/build/cache/tilesets/rse/tileset/3459.png ../../../app/build/cache/tilesets/rse/tileset/346.png ../../../app/build/cache/tilesets/rse/tileset/3460.png ../../../app/build/cache/tilesets/rse/tileset/3461.png ../../../app/build/cache/tilesets/rse/tileset/3462.png ../../../app/build/cache/tilesets/rse/tileset/3463.png ../../../app/build/cache/tilesets/rse/tileset/3464.png ../../../app/build/cache/tilesets/rse/tileset/3465.png ../../../app/build/cache/tilesets/rse/tileset/3466.png ../../../app/build/cache/tilesets/rse/tileset/3467.png ../../../app/build/cache/tilesets/rse/tileset/3468.png ../../../app/build/cache/tilesets/rse/tileset/3469.png ../../../app/build/cache/tilesets/rse/tileset/347.png ../../../app/build/cache/tilesets/rse/tileset/3470.png ../../../app/build/cache/tilesets/rse/tileset/3471.png ../../../app/build/cache/tilesets/rse/tileset/3472.png ../../../app/build/cache/tilesets/rse/tileset/3473.png ../../../app/build/cache/tilesets/rse/tileset/3474.png ../../../app/build/cache/tilesets/rse/tileset/3475.png ../../../app/build/cache/tilesets/rse/tileset/3476.png ../../../app/build/cache/tilesets/rse/tileset/3477.png ../../../app/build/cache/tilesets/rse/tileset/3478.png ../../../app/build/cache/tilesets/rse/tileset/3479.png ../../../app/build/cache/tilesets/rse/tileset/348.png ../../../app/build/cache/tilesets/rse/tileset/3480.png ../../../app/build/cache/tilesets/rse/tileset/3481.png ../../../app/build/cache/tilesets/rse/tileset/3482.png ../../../app/build/cache/tilesets/rse/tileset/3483.png ../../../app/build/cache/tilesets/rse/tileset/3484.png ../../../app/build/cache/tilesets/rse/tileset/3485.png ../../../app/build/cache/tilesets/rse/tileset/3486.png ../../../app/build/cache/tilesets/rse/tileset/3487.png ../../../app/build/cache/tilesets/rse/tileset/3488.png ../../../app/build/cache/tilesets/rse/tileset/3489.png ../../../app/build/cache/tilesets/rse/tileset/349.png ../../../app/build/cache/tilesets/rse/tileset/3490.png ../../../app/build/cache/tilesets/rse/tileset/3491.png ../../../app/build/cache/tilesets/rse/tileset/3492.png ../../../app/build/cache/tilesets/rse/tileset/3493.png ../../../app/build/cache/tilesets/rse/tileset/3494.png ../../../app/build/cache/tilesets/rse/tileset/3495.png ../../../app/build/cache/tilesets/rse/tileset/3496.png ../../../app/build/cache/tilesets/rse/tileset/3497.png ../../../app/build/cache/tilesets/rse/tileset/3498.png ../../../app/build/cache/tilesets/rse/tileset/3499.png ../../../app/build/cache/tilesets/rse/tileset/35.png ../../../app/build/cache/tilesets/rse/tileset/350.png ../../../app/build/cache/tilesets/rse/tileset/3500.png ../../../app/build/cache/tilesets/rse/tileset/3501.png ../../../app/build/cache/tilesets/rse/tileset/3502.png ../../../app/build/cache/tilesets/rse/tileset/3503.png ../../../app/build/cache/tilesets/rse/tileset/3504.png ../../../app/build/cache/tilesets/rse/tileset/3505.png ../../../app/build/cache/tilesets/rse/tileset/3506.png ../../../app/build/cache/tilesets/rse/tileset/3507.png ../../../app/build/cache/tilesets/rse/tileset/3508.png ../../../app/build/cache/tilesets/rse/tileset/3509.png ../../../app/build/cache/tilesets/rse/tileset/351.png ../../../app/build/cache/tilesets/rse/tileset/3510.png ../../../app/build/cache/tilesets/rse/tileset/3511.png ../../../app/build/cache/tilesets/rse/tileset/3512.png ../../../app/build/cache/tilesets/rse/tileset/3513.png ../../../app/build/cache/tilesets/rse/tileset/3514.png ../../../app/build/cache/tilesets/rse/tileset/3515.png ../../../app/build/cache/tilesets/rse/tileset/3516.png ../../../app/build/cache/tilesets/rse/tileset/3517.png ../../../app/build/cache/tilesets/rse/tileset/3518.png ../../../app/build/cache/tilesets/rse/tileset/3519.png ../../../app/build/cache/tilesets/rse/tileset/352.png ../../../app/build/cache/tilesets/rse/tileset/3520.png ../../../app/build/cache/tilesets/rse/tileset/3521.png ../../../app/build/cache/tilesets/rse/tileset/3522.png ../../../app/build/cache/tilesets/rse/tileset/3523.png ../../../app/build/cache/tilesets/rse/tileset/3524.png ../../../app/build/cache/tilesets/rse/tileset/3525.png ../../../app/build/cache/tilesets/rse/tileset/3526.png ../../../app/build/cache/tilesets/rse/tileset/3527.png ../../../app/build/cache/tilesets/rse/tileset/3528.png ../../../app/build/cache/tilesets/rse/tileset/3529.png ../../../app/build/cache/tilesets/rse/tileset/353.png ../../../app/build/cache/tilesets/rse/tileset/3530.png ../../../app/build/cache/tilesets/rse/tileset/3531.png ../../../app/build/cache/tilesets/rse/tileset/3532.png ../../../app/build/cache/tilesets/rse/tileset/3533.png ../../../app/build/cache/tilesets/rse/tileset/3534.png ../../../app/build/cache/tilesets/rse/tileset/3535.png ../../../app/build/cache/tilesets/rse/tileset/3536.png ../../../app/build/cache/tilesets/rse/tileset/3537.png ../../../app/build/cache/tilesets/rse/tileset/3538.png ../../../app/build/cache/tilesets/rse/tileset/3539.png ../../../app/build/cache/tilesets/rse/tileset/354.png ../../../app/build/cache/tilesets/rse/tileset/3540.png ../../../app/build/cache/tilesets/rse/tileset/3541.png ../../../app/build/cache/tilesets/rse/tileset/3542.png ../../../app/build/cache/tilesets/rse/tileset/3543.png ../../../app/build/cache/tilesets/rse/tileset/3544.png ../../../app/build/cache/tilesets/rse/tileset/3545.png ../../../app/build/cache/tilesets/rse/tileset/3546.png ../../../app/build/cache/tilesets/rse/tileset/3547.png ../../../app/build/cache/tilesets/rse/tileset/3548.png ../../../app/build/cache/tilesets/rse/tileset/3549.png ../../../app/build/cache/tilesets/rse/tileset/355.png ../../../app/build/cache/tilesets/rse/tileset/3550.png ../../../app/build/cache/tilesets/rse/tileset/3551.png ../../../app/build/cache/tilesets/rse/tileset/3552.png ../../../app/build/cache/tilesets/rse/tileset/3553.png ../../../app/build/cache/tilesets/rse/tileset/3554.png ../../../app/build/cache/tilesets/rse/tileset/3555.png ../../../app/build/cache/tilesets/rse/tileset/3556.png ../../../app/build/cache/tilesets/rse/tileset/3557.png ../../../app/build/cache/tilesets/rse/tileset/3558.png ../../../app/build/cache/tilesets/rse/tileset/3559.png ../../../app/build/cache/tilesets/rse/tileset/356.png ../../../app/build/cache/tilesets/rse/tileset/3560.png ../../../app/build/cache/tilesets/rse/tileset/3561.png ../../../app/build/cache/tilesets/rse/tileset/3562.png ../../../app/build/cache/tilesets/rse/tileset/3563.png ../../../app/build/cache/tilesets/rse/tileset/3564.png ../../../app/build/cache/tilesets/rse/tileset/3565.png ../../../app/build/cache/tilesets/rse/tileset/3566.png ../../../app/build/cache/tilesets/rse/tileset/3567.png ../../../app/build/cache/tilesets/rse/tileset/3568.png ../../../app/build/cache/tilesets/rse/tileset/3569.png ../../../app/build/cache/tilesets/rse/tileset/357.png ../../../app/build/cache/tilesets/rse/tileset/3570.png ../../../app/build/cache/tilesets/rse/tileset/3571.png ../../../app/build/cache/tilesets/rse/tileset/3572.png ../../../app/build/cache/tilesets/rse/tileset/3573.png ../../../app/build/cache/tilesets/rse/tileset/3574.png ../../../app/build/cache/tilesets/rse/tileset/3575.png ../../../app/build/cache/tilesets/rse/tileset/3576.png ../../../app/build/cache/tilesets/rse/tileset/3577.png ../../../app/build/cache/tilesets/rse/tileset/3578.png ../../../app/build/cache/tilesets/rse/tileset/3579.png ../../../app/build/cache/tilesets/rse/tileset/358.png ../../../app/build/cache/tilesets/rse/tileset/3580.png ../../../app/build/cache/tilesets/rse/tileset/3581.png ../../../app/build/cache/tilesets/rse/tileset/3582.png ../../../app/build/cache/tilesets/rse/tileset/3583.png ../../../app/build/cache/tilesets/rse/tileset/3584.png ../../../app/build/cache/tilesets/rse/tileset/3585.png ../../../app/build/cache/tilesets/rse/tileset/3586.png ../../../app/build/cache/tilesets/rse/tileset/3587.png ../../../app/build/cache/tilesets/rse/tileset/3588.png ../../../app/build/cache/tilesets/rse/tileset/3589.png ../../../app/build/cache/tilesets/rse/tileset/359.png ../../../app/build/cache/tilesets/rse/tileset/3590.png ../../../app/build/cache/tilesets/rse/tileset/3591.png ../../../app/build/cache/tilesets/rse/tileset/3592.png ../../../app/build/cache/tilesets/rse/tileset/3593.png ../../../app/build/cache/tilesets/rse/tileset/3594.png ../../../app/build/cache/tilesets/rse/tileset/3595.png ../../../app/build/cache/tilesets/rse/tileset/3596.png ../../../app/build/cache/tilesets/rse/tileset/3597.png ../../../app/build/cache/tilesets/rse/tileset/3598.png ../../../app/build/cache/tilesets/rse/tileset/3599.png ../../../app/build/cache/tilesets/rse/tileset/36.png ../../../app/build/cache/tilesets/rse/tileset/360.png ../../../app/build/cache/tilesets/rse/tileset/3600.png ../../../app/build/cache/tilesets/rse/tileset/3601.png ../../../app/build/cache/tilesets/rse/tileset/3602.png ../../../app/build/cache/tilesets/rse/tileset/3603.png ../../../app/build/cache/tilesets/rse/tileset/3604.png ../../../app/build/cache/tilesets/rse/tileset/3605.png ../../../app/build/cache/tilesets/rse/tileset/3606.png ../../../app/build/cache/tilesets/rse/tileset/3607.png ../../../app/build/cache/tilesets/rse/tileset/3608.png ../../../app/build/cache/tilesets/rse/tileset/3609.png ../../../app/build/cache/tilesets/rse/tileset/361.png ../../../app/build/cache/tilesets/rse/tileset/3610.png ../../../app/build/cache/tilesets/rse/tileset/3611.png ../../../app/build/cache/tilesets/rse/tileset/3612.png ../../../app/build/cache/tilesets/rse/tileset/3613.png ../../../app/build/cache/tilesets/rse/tileset/3614.png ../../../app/build/cache/tilesets/rse/tileset/3615.png ../../../app/build/cache/tilesets/rse/tileset/3616.png ../../../app/build/cache/tilesets/rse/tileset/3617.png ../../../app/build/cache/tilesets/rse/tileset/3618.png ../../../app/build/cache/tilesets/rse/tileset/3619.png ../../../app/build/cache/tilesets/rse/tileset/362.png ../../../app/build/cache/tilesets/rse/tileset/3620.png ../../../app/build/cache/tilesets/rse/tileset/3621.png ../../../app/build/cache/tilesets/rse/tileset/3622.png ../../../app/build/cache/tilesets/rse/tileset/3623.png ../../../app/build/cache/tilesets/rse/tileset/3624.png ../../../app/build/cache/tilesets/rse/tileset/3625.png ../../../app/build/cache/tilesets/rse/tileset/3626.png ../../../app/build/cache/tilesets/rse/tileset/3627.png ../../../app/build/cache/tilesets/rse/tileset/3628.png ../../../app/build/cache/tilesets/rse/tileset/3629.png ../../../app/build/cache/tilesets/rse/tileset/363.png ../../../app/build/cache/tilesets/rse/tileset/3630.png ../../../app/build/cache/tilesets/rse/tileset/3631.png ../../../app/build/cache/tilesets/rse/tileset/3632.png ../../../app/build/cache/tilesets/rse/tileset/3633.png ../../../app/build/cache/tilesets/rse/tileset/3634.png ../../../app/build/cache/tilesets/rse/tileset/3635.png ../../../app/build/cache/tilesets/rse/tileset/3636.png ../../../app/build/cache/tilesets/rse/tileset/3637.png ../../../app/build/cache/tilesets/rse/tileset/3638.png ../../../app/build/cache/tilesets/rse/tileset/3639.png ../../../app/build/cache/tilesets/rse/tileset/364.png ../../../app/build/cache/tilesets/rse/tileset/3640.png ../../../app/build/cache/tilesets/rse/tileset/3641.png ../../../app/build/cache/tilesets/rse/tileset/3642.png ../../../app/build/cache/tilesets/rse/tileset/3643.png ../../../app/build/cache/tilesets/rse/tileset/3644.png ../../../app/build/cache/tilesets/rse/tileset/3645.png ../../../app/build/cache/tilesets/rse/tileset/3646.png ../../../app/build/cache/tilesets/rse/tileset/3647.png ../../../app/build/cache/tilesets/rse/tileset/3648.png ../../../app/build/cache/tilesets/rse/tileset/3649.png ../../../app/build/cache/tilesets/rse/tileset/365.png ../../../app/build/cache/tilesets/rse/tileset/3650.png ../../../app/build/cache/tilesets/rse/tileset/3651.png ../../../app/build/cache/tilesets/rse/tileset/3652.png ../../../app/build/cache/tilesets/rse/tileset/3653.png ../../../app/build/cache/tilesets/rse/tileset/3654.png ../../../app/build/cache/tilesets/rse/tileset/3655.png ../../../app/build/cache/tilesets/rse/tileset/3656.png ../../../app/build/cache/tilesets/rse/tileset/3657.png ../../../app/build/cache/tilesets/rse/tileset/3658.png ../../../app/build/cache/tilesets/rse/tileset/3659.png ../../../app/build/cache/tilesets/rse/tileset/366.png ../../../app/build/cache/tilesets/rse/tileset/3660.png ../../../app/build/cache/tilesets/rse/tileset/3661.png ../../../app/build/cache/tilesets/rse/tileset/3662.png ../../../app/build/cache/tilesets/rse/tileset/3663.png ../../../app/build/cache/tilesets/rse/tileset/3664.png ../../../app/build/cache/tilesets/rse/tileset/3665.png ../../../app/build/cache/tilesets/rse/tileset/3666.png ../../../app/build/cache/tilesets/rse/tileset/3667.png ../../../app/build/cache/tilesets/rse/tileset/3668.png ../../../app/build/cache/tilesets/rse/tileset/3669.png ../../../app/build/cache/tilesets/rse/tileset/367.png ../../../app/build/cache/tilesets/rse/tileset/3670.png ../../../app/build/cache/tilesets/rse/tileset/3671.png ../../../app/build/cache/tilesets/rse/tileset/3672.png ../../../app/build/cache/tilesets/rse/tileset/3673.png ../../../app/build/cache/tilesets/rse/tileset/3674.png ../../../app/build/cache/tilesets/rse/tileset/3675.png ../../../app/build/cache/tilesets/rse/tileset/3676.png ../../../app/build/cache/tilesets/rse/tileset/3677.png ../../../app/build/cache/tilesets/rse/tileset/3678.png ../../../app/build/cache/tilesets/rse/tileset/3679.png ../../../app/build/cache/tilesets/rse/tileset/368.png ../../../app/build/cache/tilesets/rse/tileset/3680.png ../../../app/build/cache/tilesets/rse/tileset/3681.png ../../../app/build/cache/tilesets/rse/tileset/3682.png ../../../app/build/cache/tilesets/rse/tileset/3683.png ../../../app/build/cache/tilesets/rse/tileset/3684.png ../../../app/build/cache/tilesets/rse/tileset/3685.png ../../../app/build/cache/tilesets/rse/tileset/3686.png ../../../app/build/cache/tilesets/rse/tileset/3687.png ../../../app/build/cache/tilesets/rse/tileset/3688.png ../../../app/build/cache/tilesets/rse/tileset/3689.png ../../../app/build/cache/tilesets/rse/tileset/369.png ../../../app/build/cache/tilesets/rse/tileset/3690.png ../../../app/build/cache/tilesets/rse/tileset/3691.png ../../../app/build/cache/tilesets/rse/tileset/3692.png ../../../app/build/cache/tilesets/rse/tileset/3693.png ../../../app/build/cache/tilesets/rse/tileset/3694.png ../../../app/build/cache/tilesets/rse/tileset/3695.png ../../../app/build/cache/tilesets/rse/tileset/3696.png ../../../app/build/cache/tilesets/rse/tileset/3697.png ../../../app/build/cache/tilesets/rse/tileset/3698.png ../../../app/build/cache/tilesets/rse/tileset/3699.png ../../../app/build/cache/tilesets/rse/tileset/37.png ../../../app/build/cache/tilesets/rse/tileset/370.png ../../../app/build/cache/tilesets/rse/tileset/3700.png ../../../app/build/cache/tilesets/rse/tileset/3701.png ../../../app/build/cache/tilesets/rse/tileset/3702.png ../../../app/build/cache/tilesets/rse/tileset/3703.png ../../../app/build/cache/tilesets/rse/tileset/3704.png ../../../app/build/cache/tilesets/rse/tileset/3705.png ../../../app/build/cache/tilesets/rse/tileset/3706.png ../../../app/build/cache/tilesets/rse/tileset/3707.png ../../../app/build/cache/tilesets/rse/tileset/3708.png ../../../app/build/cache/tilesets/rse/tileset/3709.png ../../../app/build/cache/tilesets/rse/tileset/371.png ../../../app/build/cache/tilesets/rse/tileset/3710.png ../../../app/build/cache/tilesets/rse/tileset/3711.png ../../../app/build/cache/tilesets/rse/tileset/3712.png ../../../app/build/cache/tilesets/rse/tileset/3713.png ../../../app/build/cache/tilesets/rse/tileset/3714.png ../../../app/build/cache/tilesets/rse/tileset/3715.png ../../../app/build/cache/tilesets/rse/tileset/3716.png ../../../app/build/cache/tilesets/rse/tileset/3717.png ../../../app/build/cache/tilesets/rse/tileset/3718.png ../../../app/build/cache/tilesets/rse/tileset/3719.png ../../../app/build/cache/tilesets/rse/tileset/372.png ../../../app/build/cache/tilesets/rse/tileset/3720.png ../../../app/build/cache/tilesets/rse/tileset/3721.png ../../../app/build/cache/tilesets/rse/tileset/3722.png ../../../app/build/cache/tilesets/rse/tileset/3723.png ../../../app/build/cache/tilesets/rse/tileset/3724.png ../../../app/build/cache/tilesets/rse/tileset/3725.png ../../../app/build/cache/tilesets/rse/tileset/3726.png ../../../app/build/cache/tilesets/rse/tileset/3727.png ../../../app/build/cache/tilesets/rse/tileset/3728.png ../../../app/build/cache/tilesets/rse/tileset/3729.png ../../../app/build/cache/tilesets/rse/tileset/373.png ../../../app/build/cache/tilesets/rse/tileset/3730.png ../../../app/build/cache/tilesets/rse/tileset/3731.png ../../../app/build/cache/tilesets/rse/tileset/3732.png ../../../app/build/cache/tilesets/rse/tileset/3733.png ../../../app/build/cache/tilesets/rse/tileset/3734.png ../../../app/build/cache/tilesets/rse/tileset/3735.png ../../../app/build/cache/tilesets/rse/tileset/3736.png ../../../app/build/cache/tilesets/rse/tileset/3737.png ../../../app/build/cache/tilesets/rse/tileset/3738.png ../../../app/build/cache/tilesets/rse/tileset/3739.png ../../../app/build/cache/tilesets/rse/tileset/374.png ../../../app/build/cache/tilesets/rse/tileset/3740.png ../../../app/build/cache/tilesets/rse/tileset/3741.png ../../../app/build/cache/tilesets/rse/tileset/3742.png ../../../app/build/cache/tilesets/rse/tileset/3743.png ../../../app/build/cache/tilesets/rse/tileset/3744.png ../../../app/build/cache/tilesets/rse/tileset/3745.png ../../../app/build/cache/tilesets/rse/tileset/3746.png ../../../app/build/cache/tilesets/rse/tileset/3747.png ../../../app/build/cache/tilesets/rse/tileset/3748.png ../../../app/build/cache/tilesets/rse/tileset/3749.png ../../../app/build/cache/tilesets/rse/tileset/375.png ../../../app/build/cache/tilesets/rse/tileset/3750.png ../../../app/build/cache/tilesets/rse/tileset/3751.png ../../../app/build/cache/tilesets/rse/tileset/3752.png ../../../app/build/cache/tilesets/rse/tileset/3753.png ../../../app/build/cache/tilesets/rse/tileset/3754.png ../../../app/build/cache/tilesets/rse/tileset/3755.png ../../../app/build/cache/tilesets/rse/tileset/3756.png ../../../app/build/cache/tilesets/rse/tileset/3757.png ../../../app/build/cache/tilesets/rse/tileset/3758.png ../../../app/build/cache/tilesets/rse/tileset/3759.png ../../../app/build/cache/tilesets/rse/tileset/376.png ../../../app/build/cache/tilesets/rse/tileset/3760.png ../../../app/build/cache/tilesets/rse/tileset/3761.png ../../../app/build/cache/tilesets/rse/tileset/3762.png ../../../app/build/cache/tilesets/rse/tileset/3763.png ../../../app/build/cache/tilesets/rse/tileset/3764.png ../../../app/build/cache/tilesets/rse/tileset/3765.png ../../../app/build/cache/tilesets/rse/tileset/3766.png ../../../app/build/cache/tilesets/rse/tileset/3767.png ../../../app/build/cache/tilesets/rse/tileset/3768.png ../../../app/build/cache/tilesets/rse/tileset/3769.png ../../../app/build/cache/tilesets/rse/tileset/377.png ../../../app/build/cache/tilesets/rse/tileset/3770.png ../../../app/build/cache/tilesets/rse/tileset/3771.png ../../../app/build/cache/tilesets/rse/tileset/3772.png ../../../app/build/cache/tilesets/rse/tileset/3773.png ../../../app/build/cache/tilesets/rse/tileset/3774.png ../../../app/build/cache/tilesets/rse/tileset/3775.png ../../../app/build/cache/tilesets/rse/tileset/3776.png ../../../app/build/cache/tilesets/rse/tileset/3777.png ../../../app/build/cache/tilesets/rse/tileset/3778.png ../../../app/build/cache/tilesets/rse/tileset/3779.png ../../../app/build/cache/tilesets/rse/tileset/378.png ../../../app/build/cache/tilesets/rse/tileset/3780.png ../../../app/build/cache/tilesets/rse/tileset/3781.png ../../../app/build/cache/tilesets/rse/tileset/3782.png ../../../app/build/cache/tilesets/rse/tileset/3783.png ../../../app/build/cache/tilesets/rse/tileset/3784.png ../../../app/build/cache/tilesets/rse/tileset/3785.png ../../../app/build/cache/tilesets/rse/tileset/3786.png ../../../app/build/cache/tilesets/rse/tileset/3787.png ../../../app/build/cache/tilesets/rse/tileset/3788.png ../../../app/build/cache/tilesets/rse/tileset/3789.png ../../../app/build/cache/tilesets/rse/tileset/3790.png ../../../app/build/cache/tilesets/rse/tileset/3791.png ../../../app/build/cache/tilesets/rse/tileset/3792.png ../../../app/build/cache/tilesets/rse/tileset/3793.png ../../../app/build/cache/tilesets/rse/tileset/3794.png ../../../app/build/cache/tilesets/rse/tileset/3795.png ../../../app/build/cache/tilesets/rse/tileset/3796.png ../../../app/build/cache/tilesets/rse/tileset/3797.png ../../../app/build/cache/tilesets/rse/tileset/3798.png ../../../app/build/cache/tilesets/rse/tileset/3799.png ../../../app/build/cache/tilesets/rse/tileset/38.png ../../../app/build/cache/tilesets/rse/tileset/380.png ../../../app/build/cache/tilesets/rse/tileset/3800.png ../../../app/build/cache/tilesets/rse/tileset/3801.png ../../../app/build/cache/tilesets/rse/tileset/3802.png ../../../app/build/cache/tilesets/rse/tileset/3803.png ../../../app/build/cache/tilesets/rse/tileset/3804.png ../../../app/build/cache/tilesets/rse/tileset/3805.png ../../../app/build/cache/tilesets/rse/tileset/3806.png ../../../app/build/cache/tilesets/rse/tileset/3807.png ../../../app/build/cache/tilesets/rse/tileset/3808.png ../../../app/build/cache/tilesets/rse/tileset/3809.png ../../../app/build/cache/tilesets/rse/tileset/381.png ../../../app/build/cache/tilesets/rse/tileset/3810.png ../../../app/build/cache/tilesets/rse/tileset/3811.png ../../../app/build/cache/tilesets/rse/tileset/3812.png ../../../app/build/cache/tilesets/rse/tileset/3813.png ../../../app/build/cache/tilesets/rse/tileset/3814.png ../../../app/build/cache/tilesets/rse/tileset/3815.png ../../../app/build/cache/tilesets/rse/tileset/3816.png ../../../app/build/cache/tilesets/rse/tileset/3817.png ../../../app/build/cache/tilesets/rse/tileset/3818.png ../../../app/build/cache/tilesets/rse/tileset/3819.png ../../../app/build/cache/tilesets/rse/tileset/382.png ../../../app/build/cache/tilesets/rse/tileset/3820.png ../../../app/build/cache/tilesets/rse/tileset/3821.png ../../../app/build/cache/tilesets/rse/tileset/3822.png ../../../app/build/cache/tilesets/rse/tileset/3823.png ../../../app/build/cache/tilesets/rse/tileset/3824.png ../../../app/build/cache/tilesets/rse/tileset/3825.png ../../../app/build/cache/tilesets/rse/tileset/3826.png ../../../app/build/cache/tilesets/rse/tileset/3827.png ../../../app/build/cache/tilesets/rse/tileset/3828.png ../../../app/build/cache/tilesets/rse/tileset/3829.png ../../../app/build/cache/tilesets/rse/tileset/383.png ../../../app/build/cache/tilesets/rse/tileset/3830.png ../../../app/build/cache/tilesets/rse/tileset/3831.png ../../../app/build/cache/tilesets/rse/tileset/3832.png ../../../app/build/cache/tilesets/rse/tileset/3833.png ../../../app/build/cache/tilesets/rse/tileset/3834.png ../../../app/build/cache/tilesets/rse/tileset/3835.png ../../../app/build/cache/tilesets/rse/tileset/3836.png ../../../app/build/cache/tilesets/rse/tileset/3837.png ../../../app/build/cache/tilesets/rse/tileset/3838.png ../../../app/build/cache/tilesets/rse/tileset/3839.png ../../../app/build/cache/tilesets/rse/tileset/384.png ../../../app/build/cache/tilesets/rse/tileset/3840.png ../../../app/build/cache/tilesets/rse/tileset/3841.png ../../../app/build/cache/tilesets/rse/tileset/3842.png ../../../app/build/cache/tilesets/rse/tileset/3843.png ../../../app/build/cache/tilesets/rse/tileset/3844.png ../../../app/build/cache/tilesets/rse/tileset/3845.png ../../../app/build/cache/tilesets/rse/tileset/3846.png ../../../app/build/cache/tilesets/rse/tileset/3847.png ../../../app/build/cache/tilesets/rse/tileset/3848.png ../../../app/build/cache/tilesets/rse/tileset/3849.png ../../../app/build/cache/tilesets/rse/tileset/385.png ../../../app/build/cache/tilesets/rse/tileset/3850.png ../../../app/build/cache/tilesets/rse/tileset/3851.png ../../../app/build/cache/tilesets/rse/tileset/3852.png ../../../app/build/cache/tilesets/rse/tileset/3853.png ../../../app/build/cache/tilesets/rse/tileset/3854.png ../../../app/build/cache/tilesets/rse/tileset/3855.png ../../../app/build/cache/tilesets/rse/tileset/3856.png ../../../app/build/cache/tilesets/rse/tileset/3857.png ../../../app/build/cache/tilesets/rse/tileset/3858.png ../../../app/build/cache/tilesets/rse/tileset/3859.png ../../../app/build/cache/tilesets/rse/tileset/386.png ../../../app/build/cache/tilesets/rse/tileset/3860.png ../../../app/build/cache/tilesets/rse/tileset/3861.png ../../../app/build/cache/tilesets/rse/tileset/3862.png ../../../app/build/cache/tilesets/rse/tileset/3863.png ../../../app/build/cache/tilesets/rse/tileset/3864.png ../../../app/build/cache/tilesets/rse/tileset/3865.png ../../../app/build/cache/tilesets/rse/tileset/3866.png ../../../app/build/cache/tilesets/rse/tileset/3867.png ../../../app/build/cache/tilesets/rse/tileset/3868.png ../../../app/build/cache/tilesets/rse/tileset/3869.png ../../../app/build/cache/tilesets/rse/tileset/387.png ../../../app/build/cache/tilesets/rse/tileset/3870.png ../../../app/build/cache/tilesets/rse/tileset/3871.png ../../../app/build/cache/tilesets/rse/tileset/3872.png ../../../app/build/cache/tilesets/rse/tileset/3873.png ../../../app/build/cache/tilesets/rse/tileset/3874.png ../../../app/build/cache/tilesets/rse/tileset/3875.png ../../../app/build/cache/tilesets/rse/tileset/3876.png ../../../app/build/cache/tilesets/rse/tileset/3877.png ../../../app/build/cache/tilesets/rse/tileset/3878.png ../../../app/build/cache/tilesets/rse/tileset/3879.png ../../../app/build/cache/tilesets/rse/tileset/388.png ../../../app/build/cache/tilesets/rse/tileset/3880.png ../../../app/build/cache/tilesets/rse/tileset/3881.png ../../../app/build/cache/tilesets/rse/tileset/3882.png ../../../app/build/cache/tilesets/rse/tileset/3883.png ../../../app/build/cache/tilesets/rse/tileset/3884.png ../../../app/build/cache/tilesets/rse/tileset/3885.png ../../../app/build/cache/tilesets/rse/tileset/3886.png ../../../app/build/cache/tilesets/rse/tileset/3887.png ../../../app/build/cache/tilesets/rse/tileset/3888.png ../../../app/build/cache/tilesets/rse/tileset/3889.png ../../../app/build/cache/tilesets/rse/tileset/389.png ../../../app/build/cache/tilesets/rse/tileset/3890.png ../../../app/build/cache/tilesets/rse/tileset/3891.png ../../../app/build/cache/tilesets/rse/tileset/3892.png ../../../app/build/cache/tilesets/rse/tileset/3893.png ../../../app/build/cache/tilesets/rse/tileset/3894.png ../../../app/build/cache/tilesets/rse/tileset/3895.png ../../../app/build/cache/tilesets/rse/tileset/3896.png ../../../app/build/cache/tilesets/rse/tileset/3897.png ../../../app/build/cache/tilesets/rse/tileset/3898.png ../../../app/build/cache/tilesets/rse/tileset/3899.png ../../../app/build/cache/tilesets/rse/tileset/39.png ../../../app/build/cache/tilesets/rse/tileset/390.png ../../../app/build/cache/tilesets/rse/tileset/3900.png ../../../app/build/cache/tilesets/rse/tileset/3901.png ../../../app/build/cache/tilesets/rse/tileset/3902.png ../../../app/build/cache/tilesets/rse/tileset/3903.png ../../../app/build/cache/tilesets/rse/tileset/3904.png ../../../app/build/cache/tilesets/rse/tileset/3905.png ../../../app/build/cache/tilesets/rse/tileset/3906.png ../../../app/build/cache/tilesets/rse/tileset/3907.png ../../../app/build/cache/tilesets/rse/tileset/3908.png ../../../app/build/cache/tilesets/rse/tileset/3909.png ../../../app/build/cache/tilesets/rse/tileset/391.png ../../../app/build/cache/tilesets/rse/tileset/3910.png ../../../app/build/cache/tilesets/rse/tileset/3911.png ../../../app/build/cache/tilesets/rse/tileset/3912.png ../../../app/build/cache/tilesets/rse/tileset/3913.png ../../../app/build/cache/tilesets/rse/tileset/3914.png ../../../app/build/cache/tilesets/rse/tileset/3915.png ../../../app/build/cache/tilesets/rse/tileset/3916.png ../../../app/build/cache/tilesets/rse/tileset/3917.png ../../../app/build/cache/tilesets/rse/tileset/3918.png ../../../app/build/cache/tilesets/rse/tileset/3919.png ../../../app/build/cache/tilesets/rse/tileset/392.png ../../../app/build/cache/tilesets/rse/tileset/3920.png ../../../app/build/cache/tilesets/rse/tileset/3921.png ../../../app/build/cache/tilesets/rse/tileset/3922.png ../../../app/build/cache/tilesets/rse/tileset/3923.png ../../../app/build/cache/tilesets/rse/tileset/3924.png ../../../app/build/cache/tilesets/rse/tileset/3925.png ../../../app/build/cache/tilesets/rse/tileset/3926.png ../../../app/build/cache/tilesets/rse/tileset/3927.png ../../../app/build/cache/tilesets/rse/tileset/3928.png ../../../app/build/cache/tilesets/rse/tileset/3929.png ../../../app/build/cache/tilesets/rse/tileset/393.png ../../../app/build/cache/tilesets/rse/tileset/3930.png ../../../app/build/cache/tilesets/rse/tileset/3931.png ../../../app/build/cache/tilesets/rse/tileset/3932.png ../../../app/build/cache/tilesets/rse/tileset/3933.png ../../../app/build/cache/tilesets/rse/tileset/3934.png ../../../app/build/cache/tilesets/rse/tileset/3935.png ../../../app/build/cache/tilesets/rse/tileset/3936.png ../../../app/build/cache/tilesets/rse/tileset/3937.png ../../../app/build/cache/tilesets/rse/tileset/3938.png ../../../app/build/cache/tilesets/rse/tileset/3939.png ../../../app/build/cache/tilesets/rse/tileset/394.png ../../../app/build/cache/tilesets/rse/tileset/3940.png ../../../app/build/cache/tilesets/rse/tileset/3941.png ../../../app/build/cache/tilesets/rse/tileset/3942.png ../../../app/build/cache/tilesets/rse/tileset/3943.png ../../../app/build/cache/tilesets/rse/tileset/3944.png ../../../app/build/cache/tilesets/rse/tileset/3945.png ../../../app/build/cache/tilesets/rse/tileset/3946.png ../../../app/build/cache/tilesets/rse/tileset/3947.png ../../../app/build/cache/tilesets/rse/tileset/3948.png ../../../app/build/cache/tilesets/rse/tileset/3949.png ../../../app/build/cache/tilesets/rse/tileset/395.png ../../../app/build/cache/tilesets/rse/tileset/3950.png ../../../app/build/cache/tilesets/rse/tileset/3951.png ../../../app/build/cache/tilesets/rse/tileset/3952.png ../../../app/build/cache/tilesets/rse/tileset/3953.png ../../../app/build/cache/tilesets/rse/tileset/3954.png ../../../app/build/cache/tilesets/rse/tileset/3955.png ../../../app/build/cache/tilesets/rse/tileset/3956.png ../../../app/build/cache/tilesets/rse/tileset/3957.png ../../../app/build/cache/tilesets/rse/tileset/3958.png ../../../app/build/cache/tilesets/rse/tileset/3959.png ../../../app/build/cache/tilesets/rse/tileset/396.png ../../../app/build/cache/tilesets/rse/tileset/3960.png ../../../app/build/cache/tilesets/rse/tileset/3961.png ../../../app/build/cache/tilesets/rse/tileset/3962.png ../../../app/build/cache/tilesets/rse/tileset/3963.png ../../../app/build/cache/tilesets/rse/tileset/3964.png ../../../app/build/cache/tilesets/rse/tileset/3965.png ../../../app/build/cache/tilesets/rse/tileset/3966.png ../../../app/build/cache/tilesets/rse/tileset/3967.png ../../../app/build/cache/tilesets/rse/tileset/3968.png ../../../app/build/cache/tilesets/rse/tileset/3969.png ../../../app/build/cache/tilesets/rse/tileset/397.png ../../../app/build/cache/tilesets/rse/tileset/3970.png ../../../app/build/cache/tilesets/rse/tileset/3971.png ../../../app/build/cache/tilesets/rse/tileset/3972.png ../../../app/build/cache/tilesets/rse/tileset/3973.png ../../../app/build/cache/tilesets/rse/tileset/3974.png ../../../app/build/cache/tilesets/rse/tileset/3975.png ../../../app/build/cache/tilesets/rse/tileset/3976.png ../../../app/build/cache/tilesets/rse/tileset/3977.png ../../../app/build/cache/tilesets/rse/tileset/3978.png ../../../app/build/cache/tilesets/rse/tileset/3979.png ../../../app/build/cache/tilesets/rse/tileset/398.png ../../../app/build/cache/tilesets/rse/tileset/3980.png ../../../app/build/cache/tilesets/rse/tileset/3981.png ../../../app/build/cache/tilesets/rse/tileset/3982.png ../../../app/build/cache/tilesets/rse/tileset/3983.png ../../../app/build/cache/tilesets/rse/tileset/3984.png ../../../app/build/cache/tilesets/rse/tileset/3985.png ../../../app/build/cache/tilesets/rse/tileset/3986.png ../../../app/build/cache/tilesets/rse/tileset/3987.png ../../../app/build/cache/tilesets/rse/tileset/3988.png ../../../app/build/cache/tilesets/rse/tileset/3989.png ../../../app/build/cache/tilesets/rse/tileset/399.png ../../../app/build/cache/tilesets/rse/tileset/3990.png ../../../app/build/cache/tilesets/rse/tileset/3991.png ../../../app/build/cache/tilesets/rse/tileset/3992.png ../../../app/build/cache/tilesets/rse/tileset/3993.png ../../../app/build/cache/tilesets/rse/tileset/3994.png ../../../app/build/cache/tilesets/rse/tileset/3995.png ../../../app/build/cache/tilesets/rse/tileset/3996.png ../../../app/build/cache/tilesets/rse/tileset/3997.png ../../../app/build/cache/tilesets/rse/tileset/3998.png ../../../app/build/cache/tilesets/rse/tileset/3999.png ../../../app/build/cache/tilesets/rse/tileset/4.png ../../../app/build/cache/tilesets/rse/tileset/40.png ../../../app/build/cache/tilesets/rse/tileset/400.png ../../../app/build/cache/tilesets/rse/tileset/4000.png ../../../app/build/cache/tilesets/rse/tileset/4001.png ../../../app/build/cache/tilesets/rse/tileset/4002.png ../../../app/build/cache/tilesets/rse/tileset/4003.png ../../../app/build/cache/tilesets/rse/tileset/4004.png ../../../app/build/cache/tilesets/rse/tileset/4005.png ../../../app/build/cache/tilesets/rse/tileset/4006.png ../../../app/build/cache/tilesets/rse/tileset/4007.png ../../../app/build/cache/tilesets/rse/tileset/4008.png ../../../app/build/cache/tilesets/rse/tileset/4009.png ../../../app/build/cache/tilesets/rse/tileset/401.png ../../../app/build/cache/tilesets/rse/tileset/4010.png ../../../app/build/cache/tilesets/rse/tileset/4011.png ../../../app/build/cache/tilesets/rse/tileset/4012.png ../../../app/build/cache/tilesets/rse/tileset/4013.png ../../../app/build/cache/tilesets/rse/tileset/4014.png ../../../app/build/cache/tilesets/rse/tileset/4015.png ../../../app/build/cache/tilesets/rse/tileset/4016.png ../../../app/build/cache/tilesets/rse/tileset/4017.png ../../../app/build/cache/tilesets/rse/tileset/4018.png ../../../app/build/cache/tilesets/rse/tileset/4019.png ../../../app/build/cache/tilesets/rse/tileset/402.png ../../../app/build/cache/tilesets/rse/tileset/4020.png ../../../app/build/cache/tilesets/rse/tileset/4021.png ../../../app/build/cache/tilesets/rse/tileset/4022.png ../../../app/build/cache/tilesets/rse/tileset/4023.png ../../../app/build/cache/tilesets/rse/tileset/4024.png ../../../app/build/cache/tilesets/rse/tileset/4025.png ../../../app/build/cache/tilesets/rse/tileset/4026.png ../../../app/build/cache/tilesets/rse/tileset/4027.png ../../../app/build/cache/tilesets/rse/tileset/4028.png ../../../app/build/cache/tilesets/rse/tileset/4029.png ../../../app/build/cache/tilesets/rse/tileset/403.png ../../../app/build/cache/tilesets/rse/tileset/4030.png ../../../app/build/cache/tilesets/rse/tileset/4031.png ../../../app/build/cache/tilesets/rse/tileset/4032.png ../../../app/build/cache/tilesets/rse/tileset/4033.png ../../../app/build/cache/tilesets/rse/tileset/4034.png ../../../app/build/cache/tilesets/rse/tileset/4035.png ../../../app/build/cache/tilesets/rse/tileset/4036.png ../../../app/build/cache/tilesets/rse/tileset/4037.png ../../../app/build/cache/tilesets/rse/tileset/4038.png ../../../app/build/cache/tilesets/rse/tileset/4039.png ../../../app/build/cache/tilesets/rse/tileset/404.png ../../../app/build/cache/tilesets/rse/tileset/4040.png ../../../app/build/cache/tilesets/rse/tileset/4041.png ../../../app/build/cache/tilesets/rse/tileset/4042.png ../../../app/build/cache/tilesets/rse/tileset/4043.png ../../../app/build/cache/tilesets/rse/tileset/4044.png ../../../app/build/cache/tilesets/rse/tileset/4045.png ../../../app/build/cache/tilesets/rse/tileset/4046.png ../../../app/build/cache/tilesets/rse/tileset/4047.png ../../../app/build/cache/tilesets/rse/tileset/4048.png ../../../app/build/cache/tilesets/rse/tileset/4049.png ../../../app/build/cache/tilesets/rse/tileset/405.png ../../../app/build/cache/tilesets/rse/tileset/4050.png ../../../app/build/cache/tilesets/rse/tileset/4051.png ../../../app/build/cache/tilesets/rse/tileset/4052.png ../../../app/build/cache/tilesets/rse/tileset/4053.png ../../../app/build/cache/tilesets/rse/tileset/4054.png ../../../app/build/cache/tilesets/rse/tileset/4055.png ../../../app/build/cache/tilesets/rse/tileset/4056.png ../../../app/build/cache/tilesets/rse/tileset/4057.png ../../../app/build/cache/tilesets/rse/tileset/4058.png ../../../app/build/cache/tilesets/rse/tileset/4059.png ../../../app/build/cache/tilesets/rse/tileset/406.png ../../../app/build/cache/tilesets/rse/tileset/4060.png ../../../app/build/cache/tilesets/rse/tileset/4061.png ../../../app/build/cache/tilesets/rse/tileset/4062.png ../../../app/build/cache/tilesets/rse/tileset/4063.png ../../../app/build/cache/tilesets/rse/tileset/4064.png ../../../app/build/cache/tilesets/rse/tileset/4065.png ../../../app/build/cache/tilesets/rse/tileset/4066.png ../../../app/build/cache/tilesets/rse/tileset/4067.png ../../../app/build/cache/tilesets/rse/tileset/4068.png ../../../app/build/cache/tilesets/rse/tileset/4069.png ../../../app/build/cache/tilesets/rse/tileset/407.png ../../../app/build/cache/tilesets/rse/tileset/4070.png ../../../app/build/cache/tilesets/rse/tileset/4071.png ../../../app/build/cache/tilesets/rse/tileset/4072.png ../../../app/build/cache/tilesets/rse/tileset/4073.png ../../../app/build/cache/tilesets/rse/tileset/4074.png ../../../app/build/cache/tilesets/rse/tileset/4075.png ../../../app/build/cache/tilesets/rse/tileset/4076.png ../../../app/build/cache/tilesets/rse/tileset/4077.png ../../../app/build/cache/tilesets/rse/tileset/4078.png ../../../app/build/cache/tilesets/rse/tileset/4079.png ../../../app/build/cache/tilesets/rse/tileset/408.png ../../../app/build/cache/tilesets/rse/tileset/4080.png ../../../app/build/cache/tilesets/rse/tileset/4081.png ../../../app/build/cache/tilesets/rse/tileset/4082.png ../../../app/build/cache/tilesets/rse/tileset/4083.png ../../../app/build/cache/tilesets/rse/tileset/4084.png ../../../app/build/cache/tilesets/rse/tileset/4085.png ../../../app/build/cache/tilesets/rse/tileset/4086.png ../../../app/build/cache/tilesets/rse/tileset/4087.png ../../../app/build/cache/tilesets/rse/tileset/4088.png ../../../app/build/cache/tilesets/rse/tileset/4089.png ../../../app/build/cache/tilesets/rse/tileset/409.png ../../../app/build/cache/tilesets/rse/tileset/4090.png ../../../app/build/cache/tilesets/rse/tileset/4091.png ../../../app/build/cache/tilesets/rse/tileset/4092.png ../../../app/build/cache/tilesets/rse/tileset/4093.png ../../../app/build/cache/tilesets/rse/tileset/4094.png ../../../app/build/cache/tilesets/rse/tileset/4095.png ../../../app/build/cache/tilesets/rse/tileset/4096.png ../../../app/build/cache/tilesets/rse/tileset/4097.png ../../../app/build/cache/tilesets/rse/tileset/4098.png ../../../app/build/cache/tilesets/rse/tileset/4099.png ../../../app/build/cache/tilesets/rse/tileset/41.png ../../../app/build/cache/tilesets/rse/tileset/410.png ../../../app/build/cache/tilesets/rse/tileset/4100.png ../../../app/build/cache/tilesets/rse/tileset/4101.png ../../../app/build/cache/tilesets/rse/tileset/4102.png ../../../app/build/cache/tilesets/rse/tileset/4103.png ../../../app/build/cache/tilesets/rse/tileset/4104.png ../../../app/build/cache/tilesets/rse/tileset/4105.png ../../../app/build/cache/tilesets/rse/tileset/4106.png ../../../app/build/cache/tilesets/rse/tileset/4107.png ../../../app/build/cache/tilesets/rse/tileset/4108.png ../../../app/build/cache/tilesets/rse/tileset/4109.png ../../../app/build/cache/tilesets/rse/tileset/411.png ../../../app/build/cache/tilesets/rse/tileset/4110.png ../../../app/build/cache/tilesets/rse/tileset/4111.png ../../../app/build/cache/tilesets/rse/tileset/4112.png ../../../app/build/cache/tilesets/rse/tileset/4113.png ../../../app/build/cache/tilesets/rse/tileset/4114.png ../../../app/build/cache/tilesets/rse/tileset/4115.png ../../../app/build/cache/tilesets/rse/tileset/4116.png ../../../app/build/cache/tilesets/rse/tileset/4117.png ../../../app/build/cache/tilesets/rse/tileset/4118.png ../../../app/build/cache/tilesets/rse/tileset/4119.png ../../../app/build/cache/tilesets/rse/tileset/412.png ../../../app/build/cache/tilesets/rse/tileset/4120.png ../../../app/build/cache/tilesets/rse/tileset/4121.png ../../../app/build/cache/tilesets/rse/tileset/4122.png ../../../app/build/cache/tilesets/rse/tileset/4123.png ../../../app/build/cache/tilesets/rse/tileset/4124.png ../../../app/build/cache/tilesets/rse/tileset/4125.png ../../../app/build/cache/tilesets/rse/tileset/4126.png ../../../app/build/cache/tilesets/rse/tileset/4127.png ../../../app/build/cache/tilesets/rse/tileset/4128.png ../../../app/build/cache/tilesets/rse/tileset/4129.png ../../../app/build/cache/tilesets/rse/tileset/413.png ../../../app/build/cache/tilesets/rse/tileset/4130.png ../../../app/build/cache/tilesets/rse/tileset/4131.png ../../../app/build/cache/tilesets/rse/tileset/4132.png ../../../app/build/cache/tilesets/rse/tileset/4133.png ../../../app/build/cache/tilesets/rse/tileset/4134.png ../../../app/build/cache/tilesets/rse/tileset/4135.png ../../../app/build/cache/tilesets/rse/tileset/4136.png ../../../app/build/cache/tilesets/rse/tileset/4137.png ../../../app/build/cache/tilesets/rse/tileset/4138.png ../../../app/build/cache/tilesets/rse/tileset/4139.png ../../../app/build/cache/tilesets/rse/tileset/414.png ../../../app/build/cache/tilesets/rse/tileset/4140.png ../../../app/build/cache/tilesets/rse/tileset/4141.png ../../../app/build/cache/tilesets/rse/tileset/4142.png ../../../app/build/cache/tilesets/rse/tileset/4143.png ../../../app/build/cache/tilesets/rse/tileset/4144.png ../../../app/build/cache/tilesets/rse/tileset/4145.png ../../../app/build/cache/tilesets/rse/tileset/4146.png ../../../app/build/cache/tilesets/rse/tileset/4147.png ../../../app/build/cache/tilesets/rse/tileset/4148.png ../../../app/build/cache/tilesets/rse/tileset/4149.png ../../../app/build/cache/tilesets/rse/tileset/415.png ../../../app/build/cache/tilesets/rse/tileset/4150.png ../../../app/build/cache/tilesets/rse/tileset/4151.png ../../../app/build/cache/tilesets/rse/tileset/4152.png ../../../app/build/cache/tilesets/rse/tileset/4153.png ../../../app/build/cache/tilesets/rse/tileset/4154.png ../../../app/build/cache/tilesets/rse/tileset/4155.png ../../../app/build/cache/tilesets/rse/tileset/4156.png ../../../app/build/cache/tilesets/rse/tileset/4157.png ../../../app/build/cache/tilesets/rse/tileset/4158.png ../../../app/build/cache/tilesets/rse/tileset/4159.png ../../../app/build/cache/tilesets/rse/tileset/416.png ../../../app/build/cache/tilesets/rse/tileset/4160.png ../../../app/build/cache/tilesets/rse/tileset/4161.png ../../../app/build/cache/tilesets/rse/tileset/4162.png ../../../app/build/cache/tilesets/rse/tileset/4163.png ../../../app/build/cache/tilesets/rse/tileset/4164.png ../../../app/build/cache/tilesets/rse/tileset/4165.png ../../../app/build/cache/tilesets/rse/tileset/4166.png ../../../app/build/cache/tilesets/rse/tileset/4167.png ../../../app/build/cache/tilesets/rse/tileset/4168.png ../../../app/build/cache/tilesets/rse/tileset/4169.png ../../../app/build/cache/tilesets/rse/tileset/417.png ../../../app/build/cache/tilesets/rse/tileset/4170.png ../../../app/build/cache/tilesets/rse/tileset/4171.png ../../../app/build/cache/tilesets/rse/tileset/4172.png ../../../app/build/cache/tilesets/rse/tileset/4173.png ../../../app/build/cache/tilesets/rse/tileset/4174.png ../../../app/build/cache/tilesets/rse/tileset/4175.png ../../../app/build/cache/tilesets/rse/tileset/4176.png ../../../app/build/cache/tilesets/rse/tileset/4177.png ../../../app/build/cache/tilesets/rse/tileset/4178.png ../../../app/build/cache/tilesets/rse/tileset/4179.png ../../../app/build/cache/tilesets/rse/tileset/418.png ../../../app/build/cache/tilesets/rse/tileset/4180.png ../../../app/build/cache/tilesets/rse/tileset/4181.png ../../../app/build/cache/tilesets/rse/tileset/4182.png ../../../app/build/cache/tilesets/rse/tileset/4183.png ../../../app/build/cache/tilesets/rse/tileset/4184.png ../../../app/build/cache/tilesets/rse/tileset/4185.png ../../../app/build/cache/tilesets/rse/tileset/4186.png ../../../app/build/cache/tilesets/rse/tileset/4187.png ../../../app/build/cache/tilesets/rse/tileset/4188.png ../../../app/build/cache/tilesets/rse/tileset/4189.png ../../../app/build/cache/tilesets/rse/tileset/419.png ../../../app/build/cache/tilesets/rse/tileset/4190.png ../../../app/build/cache/tilesets/rse/tileset/4191.png ../../../app/build/cache/tilesets/rse/tileset/4192.png ../../../app/build/cache/tilesets/rse/tileset/4193.png ../../../app/build/cache/tilesets/rse/tileset/4194.png ../../../app/build/cache/tilesets/rse/tileset/4195.png ../../../app/build/cache/tilesets/rse/tileset/4196.png ../../../app/build/cache/tilesets/rse/tileset/4197.png ../../../app/build/cache/tilesets/rse/tileset/4198.png ../../../app/build/cache/tilesets/rse/tileset/4199.png ../../../app/build/cache/tilesets/rse/tileset/42.png ../../../app/build/cache/tilesets/rse/tileset/420.png ../../../app/build/cache/tilesets/rse/tileset/4200.png ../../../app/build/cache/tilesets/rse/tileset/4201.png ../../../app/build/cache/tilesets/rse/tileset/4202.png ../../../app/build/cache/tilesets/rse/tileset/4203.png ../../../app/build/cache/tilesets/rse/tileset/4204.png ../../../app/build/cache/tilesets/rse/tileset/4205.png ../../../app/build/cache/tilesets/rse/tileset/4206.png ../../../app/build/cache/tilesets/rse/tileset/4207.png ../../../app/build/cache/tilesets/rse/tileset/4208.png ../../../app/build/cache/tilesets/rse/tileset/4209.png ../../../app/build/cache/tilesets/rse/tileset/421.png ../../../app/build/cache/tilesets/rse/tileset/4210.png ../../../app/build/cache/tilesets/rse/tileset/4211.png ../../../app/build/cache/tilesets/rse/tileset/4212.png ../../../app/build/cache/tilesets/rse/tileset/4213.png ../../../app/build/cache/tilesets/rse/tileset/4214.png ../../../app/build/cache/tilesets/rse/tileset/4215.png ../../../app/build/cache/tilesets/rse/tileset/4216.png ../../../app/build/cache/tilesets/rse/tileset/4217.png ../../../app/build/cache/tilesets/rse/tileset/4218.png ../../../app/build/cache/tilesets/rse/tileset/4219.png ../../../app/build/cache/tilesets/rse/tileset/422.png ../../../app/build/cache/tilesets/rse/tileset/4220.png ../../../app/build/cache/tilesets/rse/tileset/4221.png ../../../app/build/cache/tilesets/rse/tileset/4222.png ../../../app/build/cache/tilesets/rse/tileset/4223.png ../../../app/build/cache/tilesets/rse/tileset/4224.png ../../../app/build/cache/tilesets/rse/tileset/4225.png ../../../app/build/cache/tilesets/rse/tileset/4226.png ../../../app/build/cache/tilesets/rse/tileset/4227.png ../../../app/build/cache/tilesets/rse/tileset/4228.png ../../../app/build/cache/tilesets/rse/tileset/4229.png ../../../app/build/cache/tilesets/rse/tileset/423.png ../../../app/build/cache/tilesets/rse/tileset/4230.png ../../../app/build/cache/tilesets/rse/tileset/4231.png ../../../app/build/cache/tilesets/rse/tileset/4232.png ../../../app/build/cache/tilesets/rse/tileset/4233.png ../../../app/build/cache/tilesets/rse/tileset/4234.png ../../../app/build/cache/tilesets/rse/tileset/4235.png ../../../app/build/cache/tilesets/rse/tileset/4236.png ../../../app/build/cache/tilesets/rse/tileset/4237.png ../../../app/build/cache/tilesets/rse/tileset/4238.png ../../../app/build/cache/tilesets/rse/tileset/4239.png ../../../app/build/cache/tilesets/rse/tileset/424.png ../../../app/build/cache/tilesets/rse/tileset/4240.png ../../../app/build/cache/tilesets/rse/tileset/4241.png ../../../app/build/cache/tilesets/rse/tileset/4242.png ../../../app/build/cache/tilesets/rse/tileset/4243.png ../../../app/build/cache/tilesets/rse/tileset/4244.png ../../../app/build/cache/tilesets/rse/tileset/4245.png ../../../app/build/cache/tilesets/rse/tileset/4246.png ../../../app/build/cache/tilesets/rse/tileset/4247.png ../../../app/build/cache/tilesets/rse/tileset/4248.png ../../../app/build/cache/tilesets/rse/tileset/4249.png ../../../app/build/cache/tilesets/rse/tileset/425.png ../../../app/build/cache/tilesets/rse/tileset/4250.png ../../../app/build/cache/tilesets/rse/tileset/4251.png ../../../app/build/cache/tilesets/rse/tileset/4252.png ../../../app/build/cache/tilesets/rse/tileset/4253.png ../../../app/build/cache/tilesets/rse/tileset/4254.png ../../../app/build/cache/tilesets/rse/tileset/4255.png ../../../app/build/cache/tilesets/rse/tileset/4256.png ../../../app/build/cache/tilesets/rse/tileset/4257.png ../../../app/build/cache/tilesets/rse/tileset/4258.png ../../../app/build/cache/tilesets/rse/tileset/4259.png ../../../app/build/cache/tilesets/rse/tileset/426.png ../../../app/build/cache/tilesets/rse/tileset/4260.png ../../../app/build/cache/tilesets/rse/tileset/4261.png ../../../app/build/cache/tilesets/rse/tileset/4262.png ../../../app/build/cache/tilesets/rse/tileset/4263.png ../../../app/build/cache/tilesets/rse/tileset/4264.png ../../../app/build/cache/tilesets/rse/tileset/4265.png ../../../app/build/cache/tilesets/rse/tileset/4266.png ../../../app/build/cache/tilesets/rse/tileset/4267.png ../../../app/build/cache/tilesets/rse/tileset/4268.png ../../../app/build/cache/tilesets/rse/tileset/4269.png ../../../app/build/cache/tilesets/rse/tileset/427.png ../../../app/build/cache/tilesets/rse/tileset/4270.png ../../../app/build/cache/tilesets/rse/tileset/4271.png ../../../app/build/cache/tilesets/rse/tileset/4272.png ../../../app/build/cache/tilesets/rse/tileset/4273.png ../../../app/build/cache/tilesets/rse/tileset/4274.png ../../../app/build/cache/tilesets/rse/tileset/4275.png ../../../app/build/cache/tilesets/rse/tileset/4276.png ../../../app/build/cache/tilesets/rse/tileset/4277.png ../../../app/build/cache/tilesets/rse/tileset/4278.png ../../../app/build/cache/tilesets/rse/tileset/4279.png ../../../app/build/cache/tilesets/rse/tileset/428.png ../../../app/build/cache/tilesets/rse/tileset/4280.png ../../../app/build/cache/tilesets/rse/tileset/4281.png ../../../app/build/cache/tilesets/rse/tileset/4282.png ../../../app/build/cache/tilesets/rse/tileset/4283.png ../../../app/build/cache/tilesets/rse/tileset/4284.png ../../../app/build/cache/tilesets/rse/tileset/4285.png ../../../app/build/cache/tilesets/rse/tileset/4286.png ../../../app/build/cache/tilesets/rse/tileset/4287.png ../../../app/build/cache/tilesets/rse/tileset/4288.png ../../../app/build/cache/tilesets/rse/tileset/4289.png ../../../app/build/cache/tilesets/rse/tileset/429.png ../../../app/build/cache/tilesets/rse/tileset/4290.png ../../../app/build/cache/tilesets/rse/tileset/4291.png ../../../app/build/cache/tilesets/rse/tileset/4292.png ../../../app/build/cache/tilesets/rse/tileset/4293.png ../../../app/build/cache/tilesets/rse/tileset/4294.png ../../../app/build/cache/tilesets/rse/tileset/4295.png ../../../app/build/cache/tilesets/rse/tileset/4296.png ../../../app/build/cache/tilesets/rse/tileset/4297.png ../../../app/build/cache/tilesets/rse/tileset/4298.png ../../../app/build/cache/tilesets/rse/tileset/4299.png ../../../app/build/cache/tilesets/rse/tileset/43.png ../../../app/build/cache/tilesets/rse/tileset/430.png ../../../app/build/cache/tilesets/rse/tileset/4300.png ../../../app/build/cache/tilesets/rse/tileset/4301.png ../../../app/build/cache/tilesets/rse/tileset/4302.png ../../../app/build/cache/tilesets/rse/tileset/4303.png ../../../app/build/cache/tilesets/rse/tileset/4304.png ../../../app/build/cache/tilesets/rse/tileset/4305.png ../../../app/build/cache/tilesets/rse/tileset/4306.png ../../../app/build/cache/tilesets/rse/tileset/4307.png ../../../app/build/cache/tilesets/rse/tileset/4308.png ../../../app/build/cache/tilesets/rse/tileset/4309.png ../../../app/build/cache/tilesets/rse/tileset/431.png ../../../app/build/cache/tilesets/rse/tileset/4310.png ../../../app/build/cache/tilesets/rse/tileset/4311.png ../../../app/build/cache/tilesets/rse/tileset/4312.png ../../../app/build/cache/tilesets/rse/tileset/4313.png ../../../app/build/cache/tilesets/rse/tileset/4314.png ../../../app/build/cache/tilesets/rse/tileset/4315.png ../../../app/build/cache/tilesets/rse/tileset/4316.png ../../../app/build/cache/tilesets/rse/tileset/4317.png ../../../app/build/cache/tilesets/rse/tileset/4318.png ../../../app/build/cache/tilesets/rse/tileset/4319.png ../../../app/build/cache/tilesets/rse/tileset/432.png ../../../app/build/cache/tilesets/rse/tileset/4320.png ../../../app/build/cache/tilesets/rse/tileset/4321.png ../../../app/build/cache/tilesets/rse/tileset/4322.png ../../../app/build/cache/tilesets/rse/tileset/4323.png ../../../app/build/cache/tilesets/rse/tileset/4324.png ../../../app/build/cache/tilesets/rse/tileset/4325.png ../../../app/build/cache/tilesets/rse/tileset/4326.png ../../../app/build/cache/tilesets/rse/tileset/4327.png ../../../app/build/cache/tilesets/rse/tileset/4328.png ../../../app/build/cache/tilesets/rse/tileset/4329.png ../../../app/build/cache/tilesets/rse/tileset/433.png ../../../app/build/cache/tilesets/rse/tileset/4330.png ../../../app/build/cache/tilesets/rse/tileset/4331.png ../../../app/build/cache/tilesets/rse/tileset/4332.png ../../../app/build/cache/tilesets/rse/tileset/4333.png ../../../app/build/cache/tilesets/rse/tileset/4334.png ../../../app/build/cache/tilesets/rse/tileset/4335.png ../../../app/build/cache/tilesets/rse/tileset/4336.png ../../../app/build/cache/tilesets/rse/tileset/4337.png ../../../app/build/cache/tilesets/rse/tileset/4338.png ../../../app/build/cache/tilesets/rse/tileset/4339.png ../../../app/build/cache/tilesets/rse/tileset/434.png ../../../app/build/cache/tilesets/rse/tileset/4340.png ../../../app/build/cache/tilesets/rse/tileset/4341.png ../../../app/build/cache/tilesets/rse/tileset/4342.png ../../../app/build/cache/tilesets/rse/tileset/4343.png ../../../app/build/cache/tilesets/rse/tileset/4344.png ../../../app/build/cache/tilesets/rse/tileset/4345.png ../../../app/build/cache/tilesets/rse/tileset/4346.png ../../../app/build/cache/tilesets/rse/tileset/4347.png ../../../app/build/cache/tilesets/rse/tileset/4348.png ../../../app/build/cache/tilesets/rse/tileset/4349.png ../../../app/build/cache/tilesets/rse/tileset/435.png ../../../app/build/cache/tilesets/rse/tileset/4350.png ../../../app/build/cache/tilesets/rse/tileset/4351.png ../../../app/build/cache/tilesets/rse/tileset/4352.png ../../../app/build/cache/tilesets/rse/tileset/4353.png ../../../app/build/cache/tilesets/rse/tileset/4354.png ../../../app/build/cache/tilesets/rse/tileset/4355.png ../../../app/build/cache/tilesets/rse/tileset/4356.png ../../../app/build/cache/tilesets/rse/tileset/4357.png ../../../app/build/cache/tilesets/rse/tileset/4358.png ../../../app/build/cache/tilesets/rse/tileset/4359.png ../../../app/build/cache/tilesets/rse/tileset/436.png ../../../app/build/cache/tilesets/rse/tileset/4360.png ../../../app/build/cache/tilesets/rse/tileset/4361.png ../../../app/build/cache/tilesets/rse/tileset/4362.png ../../../app/build/cache/tilesets/rse/tileset/4363.png ../../../app/build/cache/tilesets/rse/tileset/4364.png ../../../app/build/cache/tilesets/rse/tileset/4365.png ../../../app/build/cache/tilesets/rse/tileset/4366.png ../../../app/build/cache/tilesets/rse/tileset/4367.png ../../../app/build/cache/tilesets/rse/tileset/4368.png ../../../app/build/cache/tilesets/rse/tileset/4369.png ../../../app/build/cache/tilesets/rse/tileset/437.png ../../../app/build/cache/tilesets/rse/tileset/4370.png ../../../app/build/cache/tilesets/rse/tileset/4371.png ../../../app/build/cache/tilesets/rse/tileset/4372.png ../../../app/build/cache/tilesets/rse/tileset/4373.png ../../../app/build/cache/tilesets/rse/tileset/4374.png ../../../app/build/cache/tilesets/rse/tileset/4375.png ../../../app/build/cache/tilesets/rse/tileset/4376.png ../../../app/build/cache/tilesets/rse/tileset/4377.png ../../../app/build/cache/tilesets/rse/tileset/4378.png ../../../app/build/cache/tilesets/rse/tileset/4379.png ../../../app/build/cache/tilesets/rse/tileset/438.png ../../../app/build/cache/tilesets/rse/tileset/4380.png ../../../app/build/cache/tilesets/rse/tileset/4381.png ../../../app/build/cache/tilesets/rse/tileset/4382.png ../../../app/build/cache/tilesets/rse/tileset/4383.png ../../../app/build/cache/tilesets/rse/tileset/4384.png ../../../app/build/cache/tilesets/rse/tileset/4385.png ../../../app/build/cache/tilesets/rse/tileset/4386.png ../../../app/build/cache/tilesets/rse/tileset/4387.png ../../../app/build/cache/tilesets/rse/tileset/4388.png ../../../app/build/cache/tilesets/rse/tileset/4389.png ../../../app/build/cache/tilesets/rse/tileset/439.png ../../../app/build/cache/tilesets/rse/tileset/4390.png ../../../app/build/cache/tilesets/rse/tileset/4391.png ../../../app/build/cache/tilesets/rse/tileset/4392.png ../../../app/build/cache/tilesets/rse/tileset/4393.png ../../../app/build/cache/tilesets/rse/tileset/4394.png ../../../app/build/cache/tilesets/rse/tileset/4395.png ../../../app/build/cache/tilesets/rse/tileset/4396.png ../../../app/build/cache/tilesets/rse/tileset/4397.png ../../../app/build/cache/tilesets/rse/tileset/4398.png ../../../app/build/cache/tilesets/rse/tileset/4399.png ../../../app/build/cache/tilesets/rse/tileset/44.png ../../../app/build/cache/tilesets/rse/tileset/440.png ../../../app/build/cache/tilesets/rse/tileset/4400.png ../../../app/build/cache/tilesets/rse/tileset/4401.png ../../../app/build/cache/tilesets/rse/tileset/4402.png ../../../app/build/cache/tilesets/rse/tileset/4403.png ../../../app/build/cache/tilesets/rse/tileset/4404.png ../../../app/build/cache/tilesets/rse/tileset/4405.png ../../../app/build/cache/tilesets/rse/tileset/4406.png ../../../app/build/cache/tilesets/rse/tileset/4407.png ../../../app/build/cache/tilesets/rse/tileset/4408.png ../../../app/build/cache/tilesets/rse/tileset/4409.png ../../../app/build/cache/tilesets/rse/tileset/441.png ../../../app/build/cache/tilesets/rse/tileset/4410.png ../../../app/build/cache/tilesets/rse/tileset/4411.png ../../../app/build/cache/tilesets/rse/tileset/4412.png ../../../app/build/cache/tilesets/rse/tileset/4413.png ../../../app/build/cache/tilesets/rse/tileset/4414.png ../../../app/build/cache/tilesets/rse/tileset/4415.png ../../../app/build/cache/tilesets/rse/tileset/4416.png ../../../app/build/cache/tilesets/rse/tileset/4417.png ../../../app/build/cache/tilesets/rse/tileset/4418.png ../../../app/build/cache/tilesets/rse/tileset/4419.png ../../../app/build/cache/tilesets/rse/tileset/442.png ../../../app/build/cache/tilesets/rse/tileset/4420.png ../../../app/build/cache/tilesets/rse/tileset/4421.png ../../../app/build/cache/tilesets/rse/tileset/4422.png ../../../app/build/cache/tilesets/rse/tileset/4423.png ../../../app/build/cache/tilesets/rse/tileset/4424.png ../../../app/build/cache/tilesets/rse/tileset/4425.png ../../../app/build/cache/tilesets/rse/tileset/4426.png ../../../app/build/cache/tilesets/rse/tileset/4427.png ../../../app/build/cache/tilesets/rse/tileset/4428.png ../../../app/build/cache/tilesets/rse/tileset/4429.png ../../../app/build/cache/tilesets/rse/tileset/443.png ../../../app/build/cache/tilesets/rse/tileset/4430.png ../../../app/build/cache/tilesets/rse/tileset/4431.png ../../../app/build/cache/tilesets/rse/tileset/4432.png ../../../app/build/cache/tilesets/rse/tileset/4433.png ../../../app/build/cache/tilesets/rse/tileset/4434.png ../../../app/build/cache/tilesets/rse/tileset/4435.png ../../../app/build/cache/tilesets/rse/tileset/4436.png ../../../app/build/cache/tilesets/rse/tileset/4437.png ../../../app/build/cache/tilesets/rse/tileset/4438.png ../../../app/build/cache/tilesets/rse/tileset/4439.png ../../../app/build/cache/tilesets/rse/tileset/444.png ../../../app/build/cache/tilesets/rse/tileset/4440.png ../../../app/build/cache/tilesets/rse/tileset/4441.png ../../../app/build/cache/tilesets/rse/tileset/4442.png ../../../app/build/cache/tilesets/rse/tileset/4443.png ../../../app/build/cache/tilesets/rse/tileset/4444.png ../../../app/build/cache/tilesets/rse/tileset/4445.png ../../../app/build/cache/tilesets/rse/tileset/4446.png ../../../app/build/cache/tilesets/rse/tileset/4447.png ../../../app/build/cache/tilesets/rse/tileset/4448.png ../../../app/build/cache/tilesets/rse/tileset/4449.png ../../../app/build/cache/tilesets/rse/tileset/445.png ../../../app/build/cache/tilesets/rse/tileset/4450.png ../../../app/build/cache/tilesets/rse/tileset/4451.png ../../../app/build/cache/tilesets/rse/tileset/4452.png ../../../app/build/cache/tilesets/rse/tileset/4453.png ../../../app/build/cache/tilesets/rse/tileset/4454.png ../../../app/build/cache/tilesets/rse/tileset/4455.png ../../../app/build/cache/tilesets/rse/tileset/4456.png ../../../app/build/cache/tilesets/rse/tileset/4457.png ../../../app/build/cache/tilesets/rse/tileset/4458.png ../../../app/build/cache/tilesets/rse/tileset/4459.png ../../../app/build/cache/tilesets/rse/tileset/446.png ../../../app/build/cache/tilesets/rse/tileset/4460.png ../../../app/build/cache/tilesets/rse/tileset/4461.png ../../../app/build/cache/tilesets/rse/tileset/4462.png ../../../app/build/cache/tilesets/rse/tileset/4463.png ../../../app/build/cache/tilesets/rse/tileset/4464.png ../../../app/build/cache/tilesets/rse/tileset/4465.png ../../../app/build/cache/tilesets/rse/tileset/4466.png ../../../app/build/cache/tilesets/rse/tileset/4467.png ../../../app/build/cache/tilesets/rse/tileset/4468.png ../../../app/build/cache/tilesets/rse/tileset/4469.png ../../../app/build/cache/tilesets/rse/tileset/447.png ../../../app/build/cache/tilesets/rse/tileset/4470.png ../../../app/build/cache/tilesets/rse/tileset/4471.png ../../../app/build/cache/tilesets/rse/tileset/4472.png ../../../app/build/cache/tilesets/rse/tileset/4473.png ../../../app/build/cache/tilesets/rse/tileset/4474.png ../../../app/build/cache/tilesets/rse/tileset/4475.png ../../../app/build/cache/tilesets/rse/tileset/4476.png ../../../app/build/cache/tilesets/rse/tileset/4477.png ../../../app/build/cache/tilesets/rse/tileset/4478.png ../../../app/build/cache/tilesets/rse/tileset/4479.png ../../../app/build/cache/tilesets/rse/tileset/448.png ../../../app/build/cache/tilesets/rse/tileset/4480.png ../../../app/build/cache/tilesets/rse/tileset/4481.png ../../../app/build/cache/tilesets/rse/tileset/4482.png ../../../app/build/cache/tilesets/rse/tileset/4483.png ../../../app/build/cache/tilesets/rse/tileset/4484.png ../../../app/build/cache/tilesets/rse/tileset/4485.png ../../../app/build/cache/tilesets/rse/tileset/4486.png ../../../app/build/cache/tilesets/rse/tileset/4487.png ../../../app/build/cache/tilesets/rse/tileset/4488.png ../../../app/build/cache/tilesets/rse/tileset/4489.png ../../../app/build/cache/tilesets/rse/tileset/449.png ../../../app/build/cache/tilesets/rse/tileset/4490.png ../../../app/build/cache/tilesets/rse/tileset/4491.png ../../../app/build/cache/tilesets/rse/tileset/4492.png ../../../app/build/cache/tilesets/rse/tileset/4493.png ../../../app/build/cache/tilesets/rse/tileset/4494.png ../../../app/build/cache/tilesets/rse/tileset/4495.png ../../../app/build/cache/tilesets/rse/tileset/4496.png ../../../app/build/cache/tilesets/rse/tileset/4497.png ../../../app/build/cache/tilesets/rse/tileset/4498.png ../../../app/build/cache/tilesets/rse/tileset/4499.png ../../../app/build/cache/tilesets/rse/tileset/45.png ../../../app/build/cache/tilesets/rse/tileset/450.png ../../../app/build/cache/tilesets/rse/tileset/4500.png ../../../app/build/cache/tilesets/rse/tileset/4501.png ../../../app/build/cache/tilesets/rse/tileset/4502.png ../../../app/build/cache/tilesets/rse/tileset/4503.png ../../../app/build/cache/tilesets/rse/tileset/4504.png ../../../app/build/cache/tilesets/rse/tileset/4505.png ../../../app/build/cache/tilesets/rse/tileset/4506.png ../../../app/build/cache/tilesets/rse/tileset/4507.png ../../../app/build/cache/tilesets/rse/tileset/4508.png ../../../app/build/cache/tilesets/rse/tileset/4509.png ../../../app/build/cache/tilesets/rse/tileset/451.png ../../../app/build/cache/tilesets/rse/tileset/4510.png ../../../app/build/cache/tilesets/rse/tileset/4511.png ../../../app/build/cache/tilesets/rse/tileset/4512.png ../../../app/build/cache/tilesets/rse/tileset/4513.png ../../../app/build/cache/tilesets/rse/tileset/4514.png ../../../app/build/cache/tilesets/rse/tileset/4515.png ../../../app/build/cache/tilesets/rse/tileset/4516.png ../../../app/build/cache/tilesets/rse/tileset/4517.png ../../../app/build/cache/tilesets/rse/tileset/4518.png ../../../app/build/cache/tilesets/rse/tileset/4519.png ../../../app/build/cache/tilesets/rse/tileset/452.png ../../../app/build/cache/tilesets/rse/tileset/4520.png ../../../app/build/cache/tilesets/rse/tileset/4521.png ../../../app/build/cache/tilesets/rse/tileset/4522.png ../../../app/build/cache/tilesets/rse/tileset/4523.png ../../../app/build/cache/tilesets/rse/tileset/4524.png ../../../app/build/cache/tilesets/rse/tileset/4525.png ../../../app/build/cache/tilesets/rse/tileset/4526.png ../../../app/build/cache/tilesets/rse/tileset/4527.png ../../../app/build/cache/tilesets/rse/tileset/4528.png ../../../app/build/cache/tilesets/rse/tileset/4529.png ../../../app/build/cache/tilesets/rse/tileset/453.png ../../../app/build/cache/tilesets/rse/tileset/4530.png ../../../app/build/cache/tilesets/rse/tileset/4531.png ../../../app/build/cache/tilesets/rse/tileset/4532.png ../../../app/build/cache/tilesets/rse/tileset/4533.png ../../../app/build/cache/tilesets/rse/tileset/4534.png ../../../app/build/cache/tilesets/rse/tileset/4535.png ../../../app/build/cache/tilesets/rse/tileset/4536.png ../../../app/build/cache/tilesets/rse/tileset/4537.png ../../../app/build/cache/tilesets/rse/tileset/4538.png ../../../app/build/cache/tilesets/rse/tileset/4539.png ../../../app/build/cache/tilesets/rse/tileset/454.png ../../../app/build/cache/tilesets/rse/tileset/4540.png ../../../app/build/cache/tilesets/rse/tileset/4541.png ../../../app/build/cache/tilesets/rse/tileset/4542.png ../../../app/build/cache/tilesets/rse/tileset/4543.png ../../../app/build/cache/tilesets/rse/tileset/4544.png ../../../app/build/cache/tilesets/rse/tileset/4545.png ../../../app/build/cache/tilesets/rse/tileset/4546.png ../../../app/build/cache/tilesets/rse/tileset/4547.png ../../../app/build/cache/tilesets/rse/tileset/4548.png ../../../app/build/cache/tilesets/rse/tileset/4549.png ../../../app/build/cache/tilesets/rse/tileset/455.png ../../../app/build/cache/tilesets/rse/tileset/4550.png ../../../app/build/cache/tilesets/rse/tileset/4551.png ../../../app/build/cache/tilesets/rse/tileset/4552.png ../../../app/build/cache/tilesets/rse/tileset/4553.png ../../../app/build/cache/tilesets/rse/tileset/4554.png ../../../app/build/cache/tilesets/rse/tileset/4555.png ../../../app/build/cache/tilesets/rse/tileset/4556.png ../../../app/build/cache/tilesets/rse/tileset/4557.png ../../../app/build/cache/tilesets/rse/tileset/4558.png ../../../app/build/cache/tilesets/rse/tileset/4559.png ../../../app/build/cache/tilesets/rse/tileset/456.png ../../../app/build/cache/tilesets/rse/tileset/4560.png ../../../app/build/cache/tilesets/rse/tileset/4561.png ../../../app/build/cache/tilesets/rse/tileset/4562.png ../../../app/build/cache/tilesets/rse/tileset/4563.png ../../../app/build/cache/tilesets/rse/tileset/4564.png ../../../app/build/cache/tilesets/rse/tileset/4565.png ../../../app/build/cache/tilesets/rse/tileset/4566.png ../../../app/build/cache/tilesets/rse/tileset/4567.png ../../../app/build/cache/tilesets/rse/tileset/4568.png ../../../app/build/cache/tilesets/rse/tileset/4569.png ../../../app/build/cache/tilesets/rse/tileset/457.png ../../../app/build/cache/tilesets/rse/tileset/4570.png ../../../app/build/cache/tilesets/rse/tileset/4571.png ../../../app/build/cache/tilesets/rse/tileset/4572.png ../../../app/build/cache/tilesets/rse/tileset/4573.png ../../../app/build/cache/tilesets/rse/tileset/4574.png ../../../app/build/cache/tilesets/rse/tileset/4575.png ../../../app/build/cache/tilesets/rse/tileset/4576.png ../../../app/build/cache/tilesets/rse/tileset/4577.png ../../../app/build/cache/tilesets/rse/tileset/4578.png ../../../app/build/cache/tilesets/rse/tileset/4579.png ../../../app/build/cache/tilesets/rse/tileset/458.png ../../../app/build/cache/tilesets/rse/tileset/4580.png ../../../app/build/cache/tilesets/rse/tileset/4581.png ../../../app/build/cache/tilesets/rse/tileset/4582.png ../../../app/build/cache/tilesets/rse/tileset/4583.png ../../../app/build/cache/tilesets/rse/tileset/4584.png ../../../app/build/cache/tilesets/rse/tileset/4585.png ../../../app/build/cache/tilesets/rse/tileset/4586.png ../../../app/build/cache/tilesets/rse/tileset/4587.png ../../../app/build/cache/tilesets/rse/tileset/4588.png ../../../app/build/cache/tilesets/rse/tileset/4589.png ../../../app/build/cache/tilesets/rse/tileset/459.png ../../../app/build/cache/tilesets/rse/tileset/4590.png ../../../app/build/cache/tilesets/rse/tileset/4591.png ../../../app/build/cache/tilesets/rse/tileset/4592.png ../../../app/build/cache/tilesets/rse/tileset/4593.png ../../../app/build/cache/tilesets/rse/tileset/4594.png ../../../app/build/cache/tilesets/rse/tileset/4595.png ../../../app/build/cache/tilesets/rse/tileset/4596.png ../../../app/build/cache/tilesets/rse/tileset/4597.png ../../../app/build/cache/tilesets/rse/tileset/4598.png ../../../app/build/cache/tilesets/rse/tileset/4599.png ../../../app/build/cache/tilesets/rse/tileset/46.png ../../../app/build/cache/tilesets/rse/tileset/460.png ../../../app/build/cache/tilesets/rse/tileset/4600.png ../../../app/build/cache/tilesets/rse/tileset/4601.png ../../../app/build/cache/tilesets/rse/tileset/4602.png ../../../app/build/cache/tilesets/rse/tileset/4603.png ../../../app/build/cache/tilesets/rse/tileset/4604.png ../../../app/build/cache/tilesets/rse/tileset/4605.png ../../../app/build/cache/tilesets/rse/tileset/4606.png ../../../app/build/cache/tilesets/rse/tileset/4607.png ../../../app/build/cache/tilesets/rse/tileset/4608.png ../../../app/build/cache/tilesets/rse/tileset/4609.png ../../../app/build/cache/tilesets/rse/tileset/461.png ../../../app/build/cache/tilesets/rse/tileset/4610.png ../../../app/build/cache/tilesets/rse/tileset/4611.png ../../../app/build/cache/tilesets/rse/tileset/4612.png ../../../app/build/cache/tilesets/rse/tileset/4613.png ../../../app/build/cache/tilesets/rse/tileset/4614.png ../../../app/build/cache/tilesets/rse/tileset/4615.png ../../../app/build/cache/tilesets/rse/tileset/4616.png ../../../app/build/cache/tilesets/rse/tileset/4617.png ../../../app/build/cache/tilesets/rse/tileset/4618.png ../../../app/build/cache/tilesets/rse/tileset/4619.png ../../../app/build/cache/tilesets/rse/tileset/462.png ../../../app/build/cache/tilesets/rse/tileset/4620.png ../../../app/build/cache/tilesets/rse/tileset/4621.png ../../../app/build/cache/tilesets/rse/tileset/4622.png ../../../app/build/cache/tilesets/rse/tileset/4623.png ../../../app/build/cache/tilesets/rse/tileset/4624.png ../../../app/build/cache/tilesets/rse/tileset/4625.png ../../../app/build/cache/tilesets/rse/tileset/4626.png ../../../app/build/cache/tilesets/rse/tileset/4627.png ../../../app/build/cache/tilesets/rse/tileset/4628.png ../../../app/build/cache/tilesets/rse/tileset/4629.png ../../../app/build/cache/tilesets/rse/tileset/463.png ../../../app/build/cache/tilesets/rse/tileset/4630.png ../../../app/build/cache/tilesets/rse/tileset/4631.png ../../../app/build/cache/tilesets/rse/tileset/4632.png ../../../app/build/cache/tilesets/rse/tileset/4633.png ../../../app/build/cache/tilesets/rse/tileset/4634.png ../../../app/build/cache/tilesets/rse/tileset/4635.png ../../../app/build/cache/tilesets/rse/tileset/4636.png ../../../app/build/cache/tilesets/rse/tileset/4637.png ../../../app/build/cache/tilesets/rse/tileset/4638.png ../../../app/build/cache/tilesets/rse/tileset/4639.png ../../../app/build/cache/tilesets/rse/tileset/464.png ../../../app/build/cache/tilesets/rse/tileset/4640.png ../../../app/build/cache/tilesets/rse/tileset/4641.png ../../../app/build/cache/tilesets/rse/tileset/4642.png ../../../app/build/cache/tilesets/rse/tileset/4643.png ../../../app/build/cache/tilesets/rse/tileset/4644.png ../../../app/build/cache/tilesets/rse/tileset/4645.png ../../../app/build/cache/tilesets/rse/tileset/4646.png ../../../app/build/cache/tilesets/rse/tileset/4647.png ../../../app/build/cache/tilesets/rse/tileset/4648.png ../../../app/build/cache/tilesets/rse/tileset/4649.png ../../../app/build/cache/tilesets/rse/tileset/465.png ../../../app/build/cache/tilesets/rse/tileset/4650.png ../../../app/build/cache/tilesets/rse/tileset/4651.png ../../../app/build/cache/tilesets/rse/tileset/4652.png ../../../app/build/cache/tilesets/rse/tileset/4653.png ../../../app/build/cache/tilesets/rse/tileset/4654.png ../../../app/build/cache/tilesets/rse/tileset/4655.png ../../../app/build/cache/tilesets/rse/tileset/4656.png ../../../app/build/cache/tilesets/rse/tileset/4657.png ../../../app/build/cache/tilesets/rse/tileset/4658.png ../../../app/build/cache/tilesets/rse/tileset/4659.png ../../../app/build/cache/tilesets/rse/tileset/466.png ../../../app/build/cache/tilesets/rse/tileset/4660.png ../../../app/build/cache/tilesets/rse/tileset/4661.png ../../../app/build/cache/tilesets/rse/tileset/4662.png ../../../app/build/cache/tilesets/rse/tileset/4663.png ../../../app/build/cache/tilesets/rse/tileset/4664.png ../../../app/build/cache/tilesets/rse/tileset/4665.png ../../../app/build/cache/tilesets/rse/tileset/4666.png ../../../app/build/cache/tilesets/rse/tileset/4667.png ../../../app/build/cache/tilesets/rse/tileset/4668.png ../../../app/build/cache/tilesets/rse/tileset/4669.png ../../../app/build/cache/tilesets/rse/tileset/467.png ../../../app/build/cache/tilesets/rse/tileset/4670.png ../../../app/build/cache/tilesets/rse/tileset/4671.png ../../../app/build/cache/tilesets/rse/tileset/4672.png ../../../app/build/cache/tilesets/rse/tileset/4673.png ../../../app/build/cache/tilesets/rse/tileset/4674.png ../../../app/build/cache/tilesets/rse/tileset/4675.png ../../../app/build/cache/tilesets/rse/tileset/4676.png ../../../app/build/cache/tilesets/rse/tileset/4677.png ../../../app/build/cache/tilesets/rse/tileset/4678.png ../../../app/build/cache/tilesets/rse/tileset/4679.png ../../../app/build/cache/tilesets/rse/tileset/468.png ../../../app/build/cache/tilesets/rse/tileset/4680.png ../../../app/build/cache/tilesets/rse/tileset/4681.png ../../../app/build/cache/tilesets/rse/tileset/4682.png ../../../app/build/cache/tilesets/rse/tileset/4683.png ../../../app/build/cache/tilesets/rse/tileset/4684.png ../../../app/build/cache/tilesets/rse/tileset/4685.png ../../../app/build/cache/tilesets/rse/tileset/4686.png ../../../app/build/cache/tilesets/rse/tileset/4687.png ../../../app/build/cache/tilesets/rse/tileset/4688.png ../../../app/build/cache/tilesets/rse/tileset/4689.png ../../../app/build/cache/tilesets/rse/tileset/469.png ../../../app/build/cache/tilesets/rse/tileset/4690.png ../../../app/build/cache/tilesets/rse/tileset/4691.png ../../../app/build/cache/tilesets/rse/tileset/4692.png ../../../app/build/cache/tilesets/rse/tileset/4693.png ../../../app/build/cache/tilesets/rse/tileset/4694.png ../../../app/build/cache/tilesets/rse/tileset/4695.png ../../../app/build/cache/tilesets/rse/tileset/4696.png ../../../app/build/cache/tilesets/rse/tileset/4697.png ../../../app/build/cache/tilesets/rse/tileset/4698.png ../../../app/build/cache/tilesets/rse/tileset/4699.png ../../../app/build/cache/tilesets/rse/tileset/47.png ../../../app/build/cache/tilesets/rse/tileset/470.png ../../../app/build/cache/tilesets/rse/tileset/4700.png ../../../app/build/cache/tilesets/rse/tileset/4701.png ../../../app/build/cache/tilesets/rse/tileset/4702.png ../../../app/build/cache/tilesets/rse/tileset/4703.png ../../../app/build/cache/tilesets/rse/tileset/4704.png ../../../app/build/cache/tilesets/rse/tileset/4705.png ../../../app/build/cache/tilesets/rse/tileset/4706.png ../../../app/build/cache/tilesets/rse/tileset/4707.png ../../../app/build/cache/tilesets/rse/tileset/4708.png ../../../app/build/cache/tilesets/rse/tileset/4709.png ../../../app/build/cache/tilesets/rse/tileset/471.png ../../../app/build/cache/tilesets/rse/tileset/4710.png ../../../app/build/cache/tilesets/rse/tileset/4711.png ../../../app/build/cache/tilesets/rse/tileset/4712.png ../../../app/build/cache/tilesets/rse/tileset/4713.png ../../../app/build/cache/tilesets/rse/tileset/4714.png ../../../app/build/cache/tilesets/rse/tileset/4715.png ../../../app/build/cache/tilesets/rse/tileset/4716.png ../../../app/build/cache/tilesets/rse/tileset/4717.png ../../../app/build/cache/tilesets/rse/tileset/4718.png ../../../app/build/cache/tilesets/rse/tileset/4719.png ../../../app/build/cache/tilesets/rse/tileset/472.png ../../../app/build/cache/tilesets/rse/tileset/4720.png ../../../app/build/cache/tilesets/rse/tileset/4721.png ../../../app/build/cache/tilesets/rse/tileset/4722.png ../../../app/build/cache/tilesets/rse/tileset/4723.png ../../../app/build/cache/tilesets/rse/tileset/4724.png ../../../app/build/cache/tilesets/rse/tileset/4725.png ../../../app/build/cache/tilesets/rse/tileset/4726.png ../../../app/build/cache/tilesets/rse/tileset/4727.png ../../../app/build/cache/tilesets/rse/tileset/4728.png ../../../app/build/cache/tilesets/rse/tileset/4729.png ../../../app/build/cache/tilesets/rse/tileset/473.png ../../../app/build/cache/tilesets/rse/tileset/4730.png ../../../app/build/cache/tilesets/rse/tileset/4731.png ../../../app/build/cache/tilesets/rse/tileset/4732.png ../../../app/build/cache/tilesets/rse/tileset/4733.png ../../../app/build/cache/tilesets/rse/tileset/4734.png ../../../app/build/cache/tilesets/rse/tileset/4735.png ../../../app/build/cache/tilesets/rse/tileset/4736.png ../../../app/build/cache/tilesets/rse/tileset/4737.png ../../../app/build/cache/tilesets/rse/tileset/4738.png ../../../app/build/cache/tilesets/rse/tileset/4739.png ../../../app/build/cache/tilesets/rse/tileset/474.png ../../../app/build/cache/tilesets/rse/tileset/4740.png ../../../app/build/cache/tilesets/rse/tileset/4741.png ../../../app/build/cache/tilesets/rse/tileset/4742.png ../../../app/build/cache/tilesets/rse/tileset/4743.png ../../../app/build/cache/tilesets/rse/tileset/4744.png ../../../app/build/cache/tilesets/rse/tileset/4745.png ../../../app/build/cache/tilesets/rse/tileset/4746.png ../../../app/build/cache/tilesets/rse/tileset/4747.png ../../../app/build/cache/tilesets/rse/tileset/4748.png ../../../app/build/cache/tilesets/rse/tileset/4749.png ../../../app/build/cache/tilesets/rse/tileset/475.png ../../../app/build/cache/tilesets/rse/tileset/4750.png ../../../app/build/cache/tilesets/rse/tileset/4751.png ../../../app/build/cache/tilesets/rse/tileset/4752.png ../../../app/build/cache/tilesets/rse/tileset/4753.png ../../../app/build/cache/tilesets/rse/tileset/4754.png ../../../app/build/cache/tilesets/rse/tileset/4755.png ../../../app/build/cache/tilesets/rse/tileset/4756.png ../../../app/build/cache/tilesets/rse/tileset/4757.png ../../../app/build/cache/tilesets/rse/tileset/4758.png ../../../app/build/cache/tilesets/rse/tileset/4759.png ../../../app/build/cache/tilesets/rse/tileset/476.png ../../../app/build/cache/tilesets/rse/tileset/4760.png ../../../app/build/cache/tilesets/rse/tileset/4761.png ../../../app/build/cache/tilesets/rse/tileset/4762.png ../../../app/build/cache/tilesets/rse/tileset/4763.png ../../../app/build/cache/tilesets/rse/tileset/4764.png ../../../app/build/cache/tilesets/rse/tileset/4765.png ../../../app/build/cache/tilesets/rse/tileset/4766.png ../../../app/build/cache/tilesets/rse/tileset/4767.png ../../../app/build/cache/tilesets/rse/tileset/4768.png ../../../app/build/cache/tilesets/rse/tileset/4769.png ../../../app/build/cache/tilesets/rse/tileset/477.png ../../../app/build/cache/tilesets/rse/tileset/4770.png ../../../app/build/cache/tilesets/rse/tileset/4771.png ../../../app/build/cache/tilesets/rse/tileset/4772.png ../../../app/build/cache/tilesets/rse/tileset/4773.png ../../../app/build/cache/tilesets/rse/tileset/4774.png ../../../app/build/cache/tilesets/rse/tileset/4775.png ../../../app/build/cache/tilesets/rse/tileset/4776.png ../../../app/build/cache/tilesets/rse/tileset/4777.png ../../../app/build/cache/tilesets/rse/tileset/4778.png ../../../app/build/cache/tilesets/rse/tileset/4779.png ../../../app/build/cache/tilesets/rse/tileset/478.png ../../../app/build/cache/tilesets/rse/tileset/4780.png ../../../app/build/cache/tilesets/rse/tileset/4781.png ../../../app/build/cache/tilesets/rse/tileset/4782.png ../../../app/build/cache/tilesets/rse/tileset/4783.png ../../../app/build/cache/tilesets/rse/tileset/4784.png ../../../app/build/cache/tilesets/rse/tileset/4785.png ../../../app/build/cache/tilesets/rse/tileset/4786.png ../../../app/build/cache/tilesets/rse/tileset/4787.png ../../../app/build/cache/tilesets/rse/tileset/4788.png ../../../app/build/cache/tilesets/rse/tileset/4789.png ../../../app/build/cache/tilesets/rse/tileset/479.png ../../../app/build/cache/tilesets/rse/tileset/4790.png ../../../app/build/cache/tilesets/rse/tileset/4791.png ../../../app/build/cache/tilesets/rse/tileset/4792.png ../../../app/build/cache/tilesets/rse/tileset/4793.png ../../../app/build/cache/tilesets/rse/tileset/4794.png ../../../app/build/cache/tilesets/rse/tileset/4795.png ../../../app/build/cache/tilesets/rse/tileset/4796.png ../../../app/build/cache/tilesets/rse/tileset/4797.png ../../../app/build/cache/tilesets/rse/tileset/4798.png ../../../app/build/cache/tilesets/rse/tileset/4799.png ../../../app/build/cache/tilesets/rse/tileset/48.png ../../../app/build/cache/tilesets/rse/tileset/480.png ../../../app/build/cache/tilesets/rse/tileset/4800.png ../../../app/build/cache/tilesets/rse/tileset/4801.png ../../../app/build/cache/tilesets/rse/tileset/4802.png ../../../app/build/cache/tilesets/rse/tileset/4803.png ../../../app/build/cache/tilesets/rse/tileset/4804.png ../../../app/build/cache/tilesets/rse/tileset/4805.png ../../../app/build/cache/tilesets/rse/tileset/4806.png ../../../app/build/cache/tilesets/rse/tileset/4807.png ../../../app/build/cache/tilesets/rse/tileset/4808.png ../../../app/build/cache/tilesets/rse/tileset/4809.png ../../../app/build/cache/tilesets/rse/tileset/481.png ../../../app/build/cache/tilesets/rse/tileset/4810.png ../../../app/build/cache/tilesets/rse/tileset/4811.png ../../../app/build/cache/tilesets/rse/tileset/4812.png ../../../app/build/cache/tilesets/rse/tileset/4813.png ../../../app/build/cache/tilesets/rse/tileset/4814.png ../../../app/build/cache/tilesets/rse/tileset/4815.png ../../../app/build/cache/tilesets/rse/tileset/4816.png ../../../app/build/cache/tilesets/rse/tileset/4817.png ../../../app/build/cache/tilesets/rse/tileset/4818.png ../../../app/build/cache/tilesets/rse/tileset/4819.png ../../../app/build/cache/tilesets/rse/tileset/482.png ../../../app/build/cache/tilesets/rse/tileset/4820.png ../../../app/build/cache/tilesets/rse/tileset/4821.png ../../../app/build/cache/tilesets/rse/tileset/4822.png ../../../app/build/cache/tilesets/rse/tileset/4823.png ../../../app/build/cache/tilesets/rse/tileset/4824.png ../../../app/build/cache/tilesets/rse/tileset/4825.png ../../../app/build/cache/tilesets/rse/tileset/4826.png ../../../app/build/cache/tilesets/rse/tileset/4827.png ../../../app/build/cache/tilesets/rse/tileset/4828.png ../../../app/build/cache/tilesets/rse/tileset/4829.png ../../../app/build/cache/tilesets/rse/tileset/483.png ../../../app/build/cache/tilesets/rse/tileset/4830.png ../../../app/build/cache/tilesets/rse/tileset/4831.png ../../../app/build/cache/tilesets/rse/tileset/4832.png ../../../app/build/cache/tilesets/rse/tileset/4833.png ../../../app/build/cache/tilesets/rse/tileset/4834.png ../../../app/build/cache/tilesets/rse/tileset/4835.png ../../../app/build/cache/tilesets/rse/tileset/4836.png ../../../app/build/cache/tilesets/rse/tileset/4837.png ../../../app/build/cache/tilesets/rse/tileset/4838.png ../../../app/build/cache/tilesets/rse/tileset/4839.png ../../../app/build/cache/tilesets/rse/tileset/484.png ../../../app/build/cache/tilesets/rse/tileset/4840.png ../../../app/build/cache/tilesets/rse/tileset/4841.png ../../../app/build/cache/tilesets/rse/tileset/4842.png ../../../app/build/cache/tilesets/rse/tileset/4843.png ../../../app/build/cache/tilesets/rse/tileset/4844.png ../../../app/build/cache/tilesets/rse/tileset/4845.png ../../../app/build/cache/tilesets/rse/tileset/4846.png ../../../app/build/cache/tilesets/rse/tileset/4847.png ../../../app/build/cache/tilesets/rse/tileset/4848.png ../../../app/build/cache/tilesets/rse/tileset/4849.png ../../../app/build/cache/tilesets/rse/tileset/485.png ../../../app/build/cache/tilesets/rse/tileset/4850.png ../../../app/build/cache/tilesets/rse/tileset/4851.png ../../../app/build/cache/tilesets/rse/tileset/4852.png ../../../app/build/cache/tilesets/rse/tileset/4853.png ../../../app/build/cache/tilesets/rse/tileset/4854.png ../../../app/build/cache/tilesets/rse/tileset/4855.png ../../../app/build/cache/tilesets/rse/tileset/4856.png ../../../app/build/cache/tilesets/rse/tileset/4857.png ../../../app/build/cache/tilesets/rse/tileset/4858.png ../../../app/build/cache/tilesets/rse/tileset/4859.png ../../../app/build/cache/tilesets/rse/tileset/486.png ../../../app/build/cache/tilesets/rse/tileset/4860.png ../../../app/build/cache/tilesets/rse/tileset/4861.png ../../../app/build/cache/tilesets/rse/tileset/4862.png ../../../app/build/cache/tilesets/rse/tileset/4863.png ../../../app/build/cache/tilesets/rse/tileset/4864.png ../../../app/build/cache/tilesets/rse/tileset/4865.png ../../../app/build/cache/tilesets/rse/tileset/4866.png ../../../app/build/cache/tilesets/rse/tileset/4867.png ../../../app/build/cache/tilesets/rse/tileset/4868.png ../../../app/build/cache/tilesets/rse/tileset/4869.png ../../../app/build/cache/tilesets/rse/tileset/487.png ../../../app/build/cache/tilesets/rse/tileset/4870.png ../../../app/build/cache/tilesets/rse/tileset/4871.png ../../../app/build/cache/tilesets/rse/tileset/4872.png ../../../app/build/cache/tilesets/rse/tileset/4873.png ../../../app/build/cache/tilesets/rse/tileset/4874.png ../../../app/build/cache/tilesets/rse/tileset/4875.png ../../../app/build/cache/tilesets/rse/tileset/4876.png ../../../app/build/cache/tilesets/rse/tileset/4877.png ../../../app/build/cache/tilesets/rse/tileset/4878.png ../../../app/build/cache/tilesets/rse/tileset/4879.png ../../../app/build/cache/tilesets/rse/tileset/488.png ../../../app/build/cache/tilesets/rse/tileset/4880.png ../../../app/build/cache/tilesets/rse/tileset/4881.png ../../../app/build/cache/tilesets/rse/tileset/4882.png ../../../app/build/cache/tilesets/rse/tileset/4883.png ../../../app/build/cache/tilesets/rse/tileset/4884.png ../../../app/build/cache/tilesets/rse/tileset/4885.png ../../../app/build/cache/tilesets/rse/tileset/4886.png ../../../app/build/cache/tilesets/rse/tileset/4887.png ../../../app/build/cache/tilesets/rse/tileset/4888.png ../../../app/build/cache/tilesets/rse/tileset/4889.png ../../../app/build/cache/tilesets/rse/tileset/489.png ../../../app/build/cache/tilesets/rse/tileset/4890.png ../../../app/build/cache/tilesets/rse/tileset/4891.png ../../../app/build/cache/tilesets/rse/tileset/4892.png ../../../app/build/cache/tilesets/rse/tileset/4893.png ../../../app/build/cache/tilesets/rse/tileset/4894.png ../../../app/build/cache/tilesets/rse/tileset/4895.png ../../../app/build/cache/tilesets/rse/tileset/4896.png ../../../app/build/cache/tilesets/rse/tileset/4897.png ../../../app/build/cache/tilesets/rse/tileset/4898.png ../../../app/build/cache/tilesets/rse/tileset/4899.png ../../../app/build/cache/tilesets/rse/tileset/49.png ../../../app/build/cache/tilesets/rse/tileset/490.png ../../../app/build/cache/tilesets/rse/tileset/4900.png ../../../app/build/cache/tilesets/rse/tileset/4901.png ../../../app/build/cache/tilesets/rse/tileset/4902.png ../../../app/build/cache/tilesets/rse/tileset/4903.png ../../../app/build/cache/tilesets/rse/tileset/4904.png ../../../app/build/cache/tilesets/rse/tileset/4905.png ../../../app/build/cache/tilesets/rse/tileset/4906.png ../../../app/build/cache/tilesets/rse/tileset/4907.png ../../../app/build/cache/tilesets/rse/tileset/4908.png ../../../app/build/cache/tilesets/rse/tileset/4909.png ../../../app/build/cache/tilesets/rse/tileset/491.png ../../../app/build/cache/tilesets/rse/tileset/4910.png ../../../app/build/cache/tilesets/rse/tileset/4911.png ../../../app/build/cache/tilesets/rse/tileset/4912.png ../../../app/build/cache/tilesets/rse/tileset/4913.png ../../../app/build/cache/tilesets/rse/tileset/4914.png ../../../app/build/cache/tilesets/rse/tileset/4915.png ../../../app/build/cache/tilesets/rse/tileset/4916.png ../../../app/build/cache/tilesets/rse/tileset/4917.png ../../../app/build/cache/tilesets/rse/tileset/4918.png ../../../app/build/cache/tilesets/rse/tileset/4919.png ../../../app/build/cache/tilesets/rse/tileset/492.png ../../../app/build/cache/tilesets/rse/tileset/4920.png ../../../app/build/cache/tilesets/rse/tileset/4921.png ../../../app/build/cache/tilesets/rse/tileset/4922.png ../../../app/build/cache/tilesets/rse/tileset/4923.png ../../../app/build/cache/tilesets/rse/tileset/4924.png ../../../app/build/cache/tilesets/rse/tileset/4925.png ../../../app/build/cache/tilesets/rse/tileset/4926.png ../../../app/build/cache/tilesets/rse/tileset/4927.png ../../../app/build/cache/tilesets/rse/tileset/4928.png ../../../app/build/cache/tilesets/rse/tileset/4929.png ../../../app/build/cache/tilesets/rse/tileset/493.png ../../../app/build/cache/tilesets/rse/tileset/4930.png ../../../app/build/cache/tilesets/rse/tileset/4931.png ../../../app/build/cache/tilesets/rse/tileset/4932.png ../../../app/build/cache/tilesets/rse/tileset/4933.png ../../../app/build/cache/tilesets/rse/tileset/4934.png ../../../app/build/cache/tilesets/rse/tileset/4935.png ../../../app/build/cache/tilesets/rse/tileset/4936.png ../../../app/build/cache/tilesets/rse/tileset/4937.png ../../../app/build/cache/tilesets/rse/tileset/4938.png ../../../app/build/cache/tilesets/rse/tileset/4939.png ../../../app/build/cache/tilesets/rse/tileset/494.png ../../../app/build/cache/tilesets/rse/tileset/4940.png ../../../app/build/cache/tilesets/rse/tileset/4941.png ../../../app/build/cache/tilesets/rse/tileset/4942.png ../../../app/build/cache/tilesets/rse/tileset/4943.png ../../../app/build/cache/tilesets/rse/tileset/4944.png ../../../app/build/cache/tilesets/rse/tileset/4945.png ../../../app/build/cache/tilesets/rse/tileset/4946.png ../../../app/build/cache/tilesets/rse/tileset/4947.png ../../../app/build/cache/tilesets/rse/tileset/4948.png ../../../app/build/cache/tilesets/rse/tileset/4949.png ../../../app/build/cache/tilesets/rse/tileset/495.png ../../../app/build/cache/tilesets/rse/tileset/4950.png ../../../app/build/cache/tilesets/rse/tileset/4951.png ../../../app/build/cache/tilesets/rse/tileset/4952.png ../../../app/build/cache/tilesets/rse/tileset/4953.png ../../../app/build/cache/tilesets/rse/tileset/4954.png ../../../app/build/cache/tilesets/rse/tileset/4955.png ../../../app/build/cache/tilesets/rse/tileset/4956.png ../../../app/build/cache/tilesets/rse/tileset/4957.png ../../../app/build/cache/tilesets/rse/tileset/4958.png ../../../app/build/cache/tilesets/rse/tileset/4959.png ../../../app/build/cache/tilesets/rse/tileset/496.png ../../../app/build/cache/tilesets/rse/tileset/4960.png ../../../app/build/cache/tilesets/rse/tileset/4961.png ../../../app/build/cache/tilesets/rse/tileset/4962.png ../../../app/build/cache/tilesets/rse/tileset/4963.png ../../../app/build/cache/tilesets/rse/tileset/4964.png ../../../app/build/cache/tilesets/rse/tileset/4965.png ../../../app/build/cache/tilesets/rse/tileset/4966.png ../../../app/build/cache/tilesets/rse/tileset/4967.png ../../../app/build/cache/tilesets/rse/tileset/4968.png ../../../app/build/cache/tilesets/rse/tileset/4969.png ../../../app/build/cache/tilesets/rse/tileset/497.png ../../../app/build/cache/tilesets/rse/tileset/4970.png ../../../app/build/cache/tilesets/rse/tileset/4971.png ../../../app/build/cache/tilesets/rse/tileset/4972.png ../../../app/build/cache/tilesets/rse/tileset/4973.png ../../../app/build/cache/tilesets/rse/tileset/4974.png ../../../app/build/cache/tilesets/rse/tileset/4975.png ../../../app/build/cache/tilesets/rse/tileset/4976.png ../../../app/build/cache/tilesets/rse/tileset/4977.png ../../../app/build/cache/tilesets/rse/tileset/4978.png ../../../app/build/cache/tilesets/rse/tileset/4979.png ../../../app/build/cache/tilesets/rse/tileset/498.png ../../../app/build/cache/tilesets/rse/tileset/4980.png ../../../app/build/cache/tilesets/rse/tileset/4981.png ../../../app/build/cache/tilesets/rse/tileset/4982.png ../../../app/build/cache/tilesets/rse/tileset/4983.png ../../../app/build/cache/tilesets/rse/tileset/4984.png ../../../app/build/cache/tilesets/rse/tileset/4985.png ../../../app/build/cache/tilesets/rse/tileset/4986.png ../../../app/build/cache/tilesets/rse/tileset/4987.png ../../../app/build/cache/tilesets/rse/tileset/4988.png ../../../app/build/cache/tilesets/rse/tileset/4989.png ../../../app/build/cache/tilesets/rse/tileset/499.png ../../../app/build/cache/tilesets/rse/tileset/4990.png ../../../app/build/cache/tilesets/rse/tileset/4991.png ../../../app/build/cache/tilesets/rse/tileset/4992.png ../../../app/build/cache/tilesets/rse/tileset/4993.png ../../../app/build/cache/tilesets/rse/tileset/4994.png ../../../app/build/cache/tilesets/rse/tileset/4995.png ../../../app/build/cache/tilesets/rse/tileset/4996.png ../../../app/build/cache/tilesets/rse/tileset/4997.png ../../../app/build/cache/tilesets/rse/tileset/4998.png ../../../app/build/cache/tilesets/rse/tileset/4999.png ../../../app/build/cache/tilesets/rse/tileset/5.png ../../../app/build/cache/tilesets/rse/tileset/50.png ../../../app/build/cache/tilesets/rse/tileset/500.png ../../../app/build/cache/tilesets/rse/tileset/5000.png ../../../app/build/cache/tilesets/rse/tileset/5001.png ../../../app/build/cache/tilesets/rse/tileset/5002.png ../../../app/build/cache/tilesets/rse/tileset/5003.png ../../../app/build/cache/tilesets/rse/tileset/5004.png ../../../app/build/cache/tilesets/rse/tileset/5005.png ../../../app/build/cache/tilesets/rse/tileset/5006.png ../../../app/build/cache/tilesets/rse/tileset/5007.png ../../../app/build/cache/tilesets/rse/tileset/5008.png ../../../app/build/cache/tilesets/rse/tileset/5009.png ../../../app/build/cache/tilesets/rse/tileset/501.png ../../../app/build/cache/tilesets/rse/tileset/5010.png ../../../app/build/cache/tilesets/rse/tileset/5011.png ../../../app/build/cache/tilesets/rse/tileset/5012.png ../../../app/build/cache/tilesets/rse/tileset/5013.png ../../../app/build/cache/tilesets/rse/tileset/5014.png ../../../app/build/cache/tilesets/rse/tileset/5015.png ../../../app/build/cache/tilesets/rse/tileset/5016.png ../../../app/build/cache/tilesets/rse/tileset/5017.png ../../../app/build/cache/tilesets/rse/tileset/5018.png ../../../app/build/cache/tilesets/rse/tileset/5019.png ../../../app/build/cache/tilesets/rse/tileset/502.png ../../../app/build/cache/tilesets/rse/tileset/5020.png ../../../app/build/cache/tilesets/rse/tileset/5021.png ../../../app/build/cache/tilesets/rse/tileset/5022.png ../../../app/build/cache/tilesets/rse/tileset/5023.png ../../../app/build/cache/tilesets/rse/tileset/5024.png ../../../app/build/cache/tilesets/rse/tileset/5025.png ../../../app/build/cache/tilesets/rse/tileset/5026.png ../../../app/build/cache/tilesets/rse/tileset/5027.png ../../../app/build/cache/tilesets/rse/tileset/5028.png ../../../app/build/cache/tilesets/rse/tileset/5029.png ../../../app/build/cache/tilesets/rse/tileset/503.png ../../../app/build/cache/tilesets/rse/tileset/5030.png ../../../app/build/cache/tilesets/rse/tileset/5031.png ../../../app/build/cache/tilesets/rse/tileset/5032.png ../../../app/build/cache/tilesets/rse/tileset/5033.png ../../../app/build/cache/tilesets/rse/tileset/5034.png ../../../app/build/cache/tilesets/rse/tileset/5035.png ../../../app/build/cache/tilesets/rse/tileset/5036.png ../../../app/build/cache/tilesets/rse/tileset/5037.png ../../../app/build/cache/tilesets/rse/tileset/5038.png ../../../app/build/cache/tilesets/rse/tileset/5039.png ../../../app/build/cache/tilesets/rse/tileset/504.png ../../../app/build/cache/tilesets/rse/tileset/5040.png ../../../app/build/cache/tilesets/rse/tileset/5041.png ../../../app/build/cache/tilesets/rse/tileset/5042.png ../../../app/build/cache/tilesets/rse/tileset/5043.png ../../../app/build/cache/tilesets/rse/tileset/5044.png ../../../app/build/cache/tilesets/rse/tileset/5045.png ../../../app/build/cache/tilesets/rse/tileset/5046.png ../../../app/build/cache/tilesets/rse/tileset/5047.png ../../../app/build/cache/tilesets/rse/tileset/5048.png ../../../app/build/cache/tilesets/rse/tileset/5049.png ../../../app/build/cache/tilesets/rse/tileset/505.png ../../../app/build/cache/tilesets/rse/tileset/5050.png ../../../app/build/cache/tilesets/rse/tileset/5051.png ../../../app/build/cache/tilesets/rse/tileset/5052.png ../../../app/build/cache/tilesets/rse/tileset/5053.png ../../../app/build/cache/tilesets/rse/tileset/5054.png ../../../app/build/cache/tilesets/rse/tileset/5055.png ../../../app/build/cache/tilesets/rse/tileset/5056.png ../../../app/build/cache/tilesets/rse/tileset/5057.png ../../../app/build/cache/tilesets/rse/tileset/5058.png ../../../app/build/cache/tilesets/rse/tileset/5059.png ../../../app/build/cache/tilesets/rse/tileset/506.png ../../../app/build/cache/tilesets/rse/tileset/5060.png ../../../app/build/cache/tilesets/rse/tileset/5061.png ../../../app/build/cache/tilesets/rse/tileset/5062.png ../../../app/build/cache/tilesets/rse/tileset/5063.png ../../../app/build/cache/tilesets/rse/tileset/5064.png ../../../app/build/cache/tilesets/rse/tileset/5065.png ../../../app/build/cache/tilesets/rse/tileset/5066.png ../../../app/build/cache/tilesets/rse/tileset/5067.png ../../../app/build/cache/tilesets/rse/tileset/5068.png ../../../app/build/cache/tilesets/rse/tileset/5069.png ../../../app/build/cache/tilesets/rse/tileset/507.png ../../../app/build/cache/tilesets/rse/tileset/5070.png ../../../app/build/cache/tilesets/rse/tileset/5071.png ../../../app/build/cache/tilesets/rse/tileset/5072.png ../../../app/build/cache/tilesets/rse/tileset/5073.png ../../../app/build/cache/tilesets/rse/tileset/5074.png ../../../app/build/cache/tilesets/rse/tileset/5075.png ../../../app/build/cache/tilesets/rse/tileset/5076.png ../../../app/build/cache/tilesets/rse/tileset/5077.png ../../../app/build/cache/tilesets/rse/tileset/5078.png ../../../app/build/cache/tilesets/rse/tileset/5079.png ../../../app/build/cache/tilesets/rse/tileset/508.png ../../../app/build/cache/tilesets/rse/tileset/5080.png ../../../app/build/cache/tilesets/rse/tileset/5081.png ../../../app/build/cache/tilesets/rse/tileset/5082.png ../../../app/build/cache/tilesets/rse/tileset/5083.png ../../../app/build/cache/tilesets/rse/tileset/5084.png ../../../app/build/cache/tilesets/rse/tileset/5085.png ../../../app/build/cache/tilesets/rse/tileset/5086.png ../../../app/build/cache/tilesets/rse/tileset/5087.png ../../../app/build/cache/tilesets/rse/tileset/5088.png ../../../app/build/cache/tilesets/rse/tileset/5089.png ../../../app/build/cache/tilesets/rse/tileset/509.png ../../../app/build/cache/tilesets/rse/tileset/5090.png ../../../app/build/cache/tilesets/rse/tileset/5091.png ../../../app/build/cache/tilesets/rse/tileset/5092.png ../../../app/build/cache/tilesets/rse/tileset/5093.png ../../../app/build/cache/tilesets/rse/tileset/5094.png ../../../app/build/cache/tilesets/rse/tileset/5095.png ../../../app/build/cache/tilesets/rse/tileset/5096.png ../../../app/build/cache/tilesets/rse/tileset/5097.png ../../../app/build/cache/tilesets/rse/tileset/5098.png ../../../app/build/cache/tilesets/rse/tileset/5099.png ../../../app/build/cache/tilesets/rse/tileset/51.png ../../../app/build/cache/tilesets/rse/tileset/510.png ../../../app/build/cache/tilesets/rse/tileset/5100.png ../../../app/build/cache/tilesets/rse/tileset/5101.png ../../../app/build/cache/tilesets/rse/tileset/5102.png ../../../app/build/cache/tilesets/rse/tileset/5103.png ../../../app/build/cache/tilesets/rse/tileset/5104.png ../../../app/build/cache/tilesets/rse/tileset/5105.png ../../../app/build/cache/tilesets/rse/tileset/5106.png ../../../app/build/cache/tilesets/rse/tileset/5107.png ../../../app/build/cache/tilesets/rse/tileset/5108.png ../../../app/build/cache/tilesets/rse/tileset/5109.png ../../../app/build/cache/tilesets/rse/tileset/511.png ../../../app/build/cache/tilesets/rse/tileset/5110.png ../../../app/build/cache/tilesets/rse/tileset/5111.png ../../../app/build/cache/tilesets/rse/tileset/5112.png ../../../app/build/cache/tilesets/rse/tileset/5113.png ../../../app/build/cache/tilesets/rse/tileset/5114.png ../../../app/build/cache/tilesets/rse/tileset/5115.png ../../../app/build/cache/tilesets/rse/tileset/5116.png ../../../app/build/cache/tilesets/rse/tileset/5117.png ../../../app/build/cache/tilesets/rse/tileset/5118.png ../../../app/build/cache/tilesets/rse/tileset/5119.png ../../../app/build/cache/tilesets/rse/tileset/512.png ../../../app/build/cache/tilesets/rse/tileset/5120.png ../../../app/build/cache/tilesets/rse/tileset/5121.png ../../../app/build/cache/tilesets/rse/tileset/5122.png ../../../app/build/cache/tilesets/rse/tileset/5123.png ../../../app/build/cache/tilesets/rse/tileset/5124.png ../../../app/build/cache/tilesets/rse/tileset/5125.png ../../../app/build/cache/tilesets/rse/tileset/5126.png ../../../app/build/cache/tilesets/rse/tileset/5127.png ../../../app/build/cache/tilesets/rse/tileset/5128.png ../../../app/build/cache/tilesets/rse/tileset/5129.png ../../../app/build/cache/tilesets/rse/tileset/513.png ../../../app/build/cache/tilesets/rse/tileset/5130.png ../../../app/build/cache/tilesets/rse/tileset/5131.png ../../../app/build/cache/tilesets/rse/tileset/5132.png ../../../app/build/cache/tilesets/rse/tileset/5133.png ../../../app/build/cache/tilesets/rse/tileset/5134.png ../../../app/build/cache/tilesets/rse/tileset/5135.png ../../../app/build/cache/tilesets/rse/tileset/5136.png ../../../app/build/cache/tilesets/rse/tileset/5137.png ../../../app/build/cache/tilesets/rse/tileset/5138.png ../../../app/build/cache/tilesets/rse/tileset/5139.png ../../../app/build/cache/tilesets/rse/tileset/514.png ../../../app/build/cache/tilesets/rse/tileset/5140.png ../../../app/build/cache/tilesets/rse/tileset/5141.png ../../../app/build/cache/tilesets/rse/tileset/5142.png ../../../app/build/cache/tilesets/rse/tileset/5143.png ../../../app/build/cache/tilesets/rse/tileset/5144.png ../../../app/build/cache/tilesets/rse/tileset/5145.png ../../../app/build/cache/tilesets/rse/tileset/5146.png ../../../app/build/cache/tilesets/rse/tileset/5147.png ../../../app/build/cache/tilesets/rse/tileset/5148.png ../../../app/build/cache/tilesets/rse/tileset/5149.png ../../../app/build/cache/tilesets/rse/tileset/515.png ../../../app/build/cache/tilesets/rse/tileset/5150.png ../../../app/build/cache/tilesets/rse/tileset/5151.png ../../../app/build/cache/tilesets/rse/tileset/5152.png ../../../app/build/cache/tilesets/rse/tileset/5153.png ../../../app/build/cache/tilesets/rse/tileset/5154.png ../../../app/build/cache/tilesets/rse/tileset/5155.png ../../../app/build/cache/tilesets/rse/tileset/5156.png ../../../app/build/cache/tilesets/rse/tileset/5157.png ../../../app/build/cache/tilesets/rse/tileset/5158.png ../../../app/build/cache/tilesets/rse/tileset/5159.png ../../../app/build/cache/tilesets/rse/tileset/516.png ../../../app/build/cache/tilesets/rse/tileset/5160.png ../../../app/build/cache/tilesets/rse/tileset/5161.png ../../../app/build/cache/tilesets/rse/tileset/5162.png ../../../app/build/cache/tilesets/rse/tileset/5163.png ../../../app/build/cache/tilesets/rse/tileset/5164.png ../../../app/build/cache/tilesets/rse/tileset/5165.png ../../../app/build/cache/tilesets/rse/tileset/5166.png ../../../app/build/cache/tilesets/rse/tileset/5167.png ../../../app/build/cache/tilesets/rse/tileset/5168.png ../../../app/build/cache/tilesets/rse/tileset/5169.png ../../../app/build/cache/tilesets/rse/tileset/517.png ../../../app/build/cache/tilesets/rse/tileset/5170.png ../../../app/build/cache/tilesets/rse/tileset/5171.png ../../../app/build/cache/tilesets/rse/tileset/5172.png ../../../app/build/cache/tilesets/rse/tileset/5173.png ../../../app/build/cache/tilesets/rse/tileset/5174.png ../../../app/build/cache/tilesets/rse/tileset/5175.png ../../../app/build/cache/tilesets/rse/tileset/5176.png ../../../app/build/cache/tilesets/rse/tileset/5177.png ../../../app/build/cache/tilesets/rse/tileset/5178.png ../../../app/build/cache/tilesets/rse/tileset/5179.png ../../../app/build/cache/tilesets/rse/tileset/518.png ../../../app/build/cache/tilesets/rse/tileset/5180.png ../../../app/build/cache/tilesets/rse/tileset/5181.png ../../../app/build/cache/tilesets/rse/tileset/5182.png ../../../app/build/cache/tilesets/rse/tileset/5183.png ../../../app/build/cache/tilesets/rse/tileset/5184.png ../../../app/build/cache/tilesets/rse/tileset/5185.png ../../../app/build/cache/tilesets/rse/tileset/5186.png ../../../app/build/cache/tilesets/rse/tileset/5187.png ../../../app/build/cache/tilesets/rse/tileset/5188.png ../../../app/build/cache/tilesets/rse/tileset/5189.png ../../../app/build/cache/tilesets/rse/tileset/519.png ../../../app/build/cache/tilesets/rse/tileset/5190.png ../../../app/build/cache/tilesets/rse/tileset/5191.png ../../../app/build/cache/tilesets/rse/tileset/5192.png ../../../app/build/cache/tilesets/rse/tileset/5193.png ../../../app/build/cache/tilesets/rse/tileset/5194.png ../../../app/build/cache/tilesets/rse/tileset/5195.png ../../../app/build/cache/tilesets/rse/tileset/5196.png ../../../app/build/cache/tilesets/rse/tileset/5197.png ../../../app/build/cache/tilesets/rse/tileset/5198.png ../../../app/build/cache/tilesets/rse/tileset/5199.png ../../../app/build/cache/tilesets/rse/tileset/52.png ../../../app/build/cache/tilesets/rse/tileset/520.png ../../../app/build/cache/tilesets/rse/tileset/5200.png ../../../app/build/cache/tilesets/rse/tileset/5201.png ../../../app/build/cache/tilesets/rse/tileset/5202.png ../../../app/build/cache/tilesets/rse/tileset/5203.png ../../../app/build/cache/tilesets/rse/tileset/5204.png ../../../app/build/cache/tilesets/rse/tileset/5205.png ../../../app/build/cache/tilesets/rse/tileset/5206.png ../../../app/build/cache/tilesets/rse/tileset/5207.png ../../../app/build/cache/tilesets/rse/tileset/5208.png ../../../app/build/cache/tilesets/rse/tileset/5209.png ../../../app/build/cache/tilesets/rse/tileset/521.png ../../../app/build/cache/tilesets/rse/tileset/5210.png ../../../app/build/cache/tilesets/rse/tileset/5211.png ../../../app/build/cache/tilesets/rse/tileset/5212.png ../../../app/build/cache/tilesets/rse/tileset/5213.png ../../../app/build/cache/tilesets/rse/tileset/5214.png ../../../app/build/cache/tilesets/rse/tileset/5215.png ../../../app/build/cache/tilesets/rse/tileset/5216.png ../../../app/build/cache/tilesets/rse/tileset/5217.png ../../../app/build/cache/tilesets/rse/tileset/5218.png ../../../app/build/cache/tilesets/rse/tileset/5219.png ../../../app/build/cache/tilesets/rse/tileset/522.png ../../../app/build/cache/tilesets/rse/tileset/5220.png ../../../app/build/cache/tilesets/rse/tileset/5221.png ../../../app/build/cache/tilesets/rse/tileset/5222.png ../../../app/build/cache/tilesets/rse/tileset/5223.png ../../../app/build/cache/tilesets/rse/tileset/5224.png ../../../app/build/cache/tilesets/rse/tileset/5225.png ../../../app/build/cache/tilesets/rse/tileset/5226.png ../../../app/build/cache/tilesets/rse/tileset/5227.png ../../../app/build/cache/tilesets/rse/tileset/5228.png ../../../app/build/cache/tilesets/rse/tileset/5229.png ../../../app/build/cache/tilesets/rse/tileset/523.png ../../../app/build/cache/tilesets/rse/tileset/5230.png ../../../app/build/cache/tilesets/rse/tileset/5231.png ../../../app/build/cache/tilesets/rse/tileset/5232.png ../../../app/build/cache/tilesets/rse/tileset/5233.png ../../../app/build/cache/tilesets/rse/tileset/5234.png ../../../app/build/cache/tilesets/rse/tileset/5235.png ../../../app/build/cache/tilesets/rse/tileset/5236.png ../../../app/build/cache/tilesets/rse/tileset/5237.png ../../../app/build/cache/tilesets/rse/tileset/5238.png ../../../app/build/cache/tilesets/rse/tileset/5239.png ../../../app/build/cache/tilesets/rse/tileset/524.png ../../../app/build/cache/tilesets/rse/tileset/5240.png ../../../app/build/cache/tilesets/rse/tileset/5241.png ../../../app/build/cache/tilesets/rse/tileset/5242.png ../../../app/build/cache/tilesets/rse/tileset/5243.png ../../../app/build/cache/tilesets/rse/tileset/5244.png ../../../app/build/cache/tilesets/rse/tileset/5245.png ../../../app/build/cache/tilesets/rse/tileset/5246.png ../../../app/build/cache/tilesets/rse/tileset/5247.png ../../../app/build/cache/tilesets/rse/tileset/5248.png ../../../app/build/cache/tilesets/rse/tileset/5249.png ../../../app/build/cache/tilesets/rse/tileset/525.png ../../../app/build/cache/tilesets/rse/tileset/5250.png ../../../app/build/cache/tilesets/rse/tileset/5251.png ../../../app/build/cache/tilesets/rse/tileset/5252.png ../../../app/build/cache/tilesets/rse/tileset/5253.png ../../../app/build/cache/tilesets/rse/tileset/5254.png ../../../app/build/cache/tilesets/rse/tileset/5255.png ../../../app/build/cache/tilesets/rse/tileset/5256.png ../../../app/build/cache/tilesets/rse/tileset/5257.png ../../../app/build/cache/tilesets/rse/tileset/5258.png ../../../app/build/cache/tilesets/rse/tileset/5259.png ../../../app/build/cache/tilesets/rse/tileset/526.png ../../../app/build/cache/tilesets/rse/tileset/5260.png ../../../app/build/cache/tilesets/rse/tileset/5261.png ../../../app/build/cache/tilesets/rse/tileset/5262.png ../../../app/build/cache/tilesets/rse/tileset/5263.png ../../../app/build/cache/tilesets/rse/tileset/5264.png ../../../app/build/cache/tilesets/rse/tileset/5265.png ../../../app/build/cache/tilesets/rse/tileset/5266.png ../../../app/build/cache/tilesets/rse/tileset/5267.png ../../../app/build/cache/tilesets/rse/tileset/5268.png ../../../app/build/cache/tilesets/rse/tileset/5269.png ../../../app/build/cache/tilesets/rse/tileset/527.png ../../../app/build/cache/tilesets/rse/tileset/5270.png ../../../app/build/cache/tilesets/rse/tileset/5271.png ../../../app/build/cache/tilesets/rse/tileset/5272.png ../../../app/build/cache/tilesets/rse/tileset/5273.png ../../../app/build/cache/tilesets/rse/tileset/5274.png ../../../app/build/cache/tilesets/rse/tileset/5275.png ../../../app/build/cache/tilesets/rse/tileset/5276.png ../../../app/build/cache/tilesets/rse/tileset/5277.png ../../../app/build/cache/tilesets/rse/tileset/5278.png ../../../app/build/cache/tilesets/rse/tileset/5279.png ../../../app/build/cache/tilesets/rse/tileset/528.png ../../../app/build/cache/tilesets/rse/tileset/5280.png ../../../app/build/cache/tilesets/rse/tileset/5281.png ../../../app/build/cache/tilesets/rse/tileset/5282.png ../../../app/build/cache/tilesets/rse/tileset/5283.png ../../../app/build/cache/tilesets/rse/tileset/5284.png ../../../app/build/cache/tilesets/rse/tileset/5285.png ../../../app/build/cache/tilesets/rse/tileset/5286.png ../../../app/build/cache/tilesets/rse/tileset/5287.png ../../../app/build/cache/tilesets/rse/tileset/5288.png ../../../app/build/cache/tilesets/rse/tileset/5289.png ../../../app/build/cache/tilesets/rse/tileset/529.png ../../../app/build/cache/tilesets/rse/tileset/5290.png ../../../app/build/cache/tilesets/rse/tileset/5291.png ../../../app/build/cache/tilesets/rse/tileset/5292.png ../../../app/build/cache/tilesets/rse/tileset/5293.png ../../../app/build/cache/tilesets/rse/tileset/5294.png ../../../app/build/cache/tilesets/rse/tileset/5295.png ../../../app/build/cache/tilesets/rse/tileset/5296.png ../../../app/build/cache/tilesets/rse/tileset/5297.png ../../../app/build/cache/tilesets/rse/tileset/5298.png ../../../app/build/cache/tilesets/rse/tileset/5299.png ../../../app/build/cache/tilesets/rse/tileset/53.png ../../../app/build/cache/tilesets/rse/tileset/530.png ../../../app/build/cache/tilesets/rse/tileset/5300.png ../../../app/build/cache/tilesets/rse/tileset/5301.png ../../../app/build/cache/tilesets/rse/tileset/5302.png ../../../app/build/cache/tilesets/rse/tileset/5303.png ../../../app/build/cache/tilesets/rse/tileset/5304.png ../../../app/build/cache/tilesets/rse/tileset/5305.png ../../../app/build/cache/tilesets/rse/tileset/5306.png ../../../app/build/cache/tilesets/rse/tileset/5307.png ../../../app/build/cache/tilesets/rse/tileset/5308.png ../../../app/build/cache/tilesets/rse/tileset/5309.png ../../../app/build/cache/tilesets/rse/tileset/531.png ../../../app/build/cache/tilesets/rse/tileset/5310.png ../../../app/build/cache/tilesets/rse/tileset/5311.png ../../../app/build/cache/tilesets/rse/tileset/5312.png ../../../app/build/cache/tilesets/rse/tileset/5313.png ../../../app/build/cache/tilesets/rse/tileset/5314.png ../../../app/build/cache/tilesets/rse/tileset/5315.png ../../../app/build/cache/tilesets/rse/tileset/5316.png ../../../app/build/cache/tilesets/rse/tileset/5317.png ../../../app/build/cache/tilesets/rse/tileset/5318.png ../../../app/build/cache/tilesets/rse/tileset/5319.png ../../../app/build/cache/tilesets/rse/tileset/532.png ../../../app/build/cache/tilesets/rse/tileset/5320.png ../../../app/build/cache/tilesets/rse/tileset/5321.png ../../../app/build/cache/tilesets/rse/tileset/5322.png ../../../app/build/cache/tilesets/rse/tileset/5323.png ../../../app/build/cache/tilesets/rse/tileset/5324.png ../../../app/build/cache/tilesets/rse/tileset/5325.png ../../../app/build/cache/tilesets/rse/tileset/5326.png ../../../app/build/cache/tilesets/rse/tileset/5327.png ../../../app/build/cache/tilesets/rse/tileset/5328.png ../../../app/build/cache/tilesets/rse/tileset/5329.png ../../../app/build/cache/tilesets/rse/tileset/533.png ../../../app/build/cache/tilesets/rse/tileset/5330.png ../../../app/build/cache/tilesets/rse/tileset/5331.png ../../../app/build/cache/tilesets/rse/tileset/5332.png ../../../app/build/cache/tilesets/rse/tileset/5333.png ../../../app/build/cache/tilesets/rse/tileset/5334.png ../../../app/build/cache/tilesets/rse/tileset/5335.png ../../../app/build/cache/tilesets/rse/tileset/5336.png ../../../app/build/cache/tilesets/rse/tileset/5337.png ../../../app/build/cache/tilesets/rse/tileset/5338.png ../../../app/build/cache/tilesets/rse/tileset/5339.png ../../../app/build/cache/tilesets/rse/tileset/534.png ../../../app/build/cache/tilesets/rse/tileset/5340.png ../../../app/build/cache/tilesets/rse/tileset/5341.png ../../../app/build/cache/tilesets/rse/tileset/5342.png ../../../app/build/cache/tilesets/rse/tileset/5343.png ../../../app/build/cache/tilesets/rse/tileset/5344.png ../../../app/build/cache/tilesets/rse/tileset/5345.png ../../../app/build/cache/tilesets/rse/tileset/5346.png ../../../app/build/cache/tilesets/rse/tileset/5347.png ../../../app/build/cache/tilesets/rse/tileset/5348.png ../../../app/build/cache/tilesets/rse/tileset/5349.png ../../../app/build/cache/tilesets/rse/tileset/535.png ../../../app/build/cache/tilesets/rse/tileset/5350.png ../../../app/build/cache/tilesets/rse/tileset/5351.png ../../../app/build/cache/tilesets/rse/tileset/5352.png ../../../app/build/cache/tilesets/rse/tileset/5353.png ../../../app/build/cache/tilesets/rse/tileset/5354.png ../../../app/build/cache/tilesets/rse/tileset/5355.png ../../../app/build/cache/tilesets/rse/tileset/5356.png ../../../app/build/cache/tilesets/rse/tileset/5357.png ../../../app/build/cache/tilesets/rse/tileset/5358.png ../../../app/build/cache/tilesets/rse/tileset/5359.png ../../../app/build/cache/tilesets/rse/tileset/536.png ../../../app/build/cache/tilesets/rse/tileset/5360.png ../../../app/build/cache/tilesets/rse/tileset/5361.png ../../../app/build/cache/tilesets/rse/tileset/5362.png ../../../app/build/cache/tilesets/rse/tileset/5363.png ../../../app/build/cache/tilesets/rse/tileset/5364.png ../../../app/build/cache/tilesets/rse/tileset/5365.png ../../../app/build/cache/tilesets/rse/tileset/5366.png ../../../app/build/cache/tilesets/rse/tileset/5367.png ../../../app/build/cache/tilesets/rse/tileset/5368.png ../../../app/build/cache/tilesets/rse/tileset/5369.png ../../../app/build/cache/tilesets/rse/tileset/537.png ../../../app/build/cache/tilesets/rse/tileset/5370.png ../../../app/build/cache/tilesets/rse/tileset/5371.png ../../../app/build/cache/tilesets/rse/tileset/5372.png ../../../app/build/cache/tilesets/rse/tileset/5373.png ../../../app/build/cache/tilesets/rse/tileset/5374.png ../../../app/build/cache/tilesets/rse/tileset/5375.png ../../../app/build/cache/tilesets/rse/tileset/5376.png ../../../app/build/cache/tilesets/rse/tileset/5377.png ../../../app/build/cache/tilesets/rse/tileset/5378.png ../../../app/build/cache/tilesets/rse/tileset/5379.png ../../../app/build/cache/tilesets/rse/tileset/538.png ../../../app/build/cache/tilesets/rse/tileset/5380.png ../../../app/build/cache/tilesets/rse/tileset/5381.png ../../../app/build/cache/tilesets/rse/tileset/5382.png ../../../app/build/cache/tilesets/rse/tileset/5383.png ../../../app/build/cache/tilesets/rse/tileset/5384.png ../../../app/build/cache/tilesets/rse/tileset/5385.png ../../../app/build/cache/tilesets/rse/tileset/5386.png ../../../app/build/cache/tilesets/rse/tileset/5387.png ../../../app/build/cache/tilesets/rse/tileset/5388.png ../../../app/build/cache/tilesets/rse/tileset/5389.png ../../../app/build/cache/tilesets/rse/tileset/539.png ../../../app/build/cache/tilesets/rse/tileset/5390.png ../../../app/build/cache/tilesets/rse/tileset/5391.png ../../../app/build/cache/tilesets/rse/tileset/5392.png ../../../app/build/cache/tilesets/rse/tileset/5393.png ../../../app/build/cache/tilesets/rse/tileset/5394.png ../../../app/build/cache/tilesets/rse/tileset/5395.png ../../../app/build/cache/tilesets/rse/tileset/5396.png ../../../app/build/cache/tilesets/rse/tileset/5397.png ../../../app/build/cache/tilesets/rse/tileset/5398.png ../../../app/build/cache/tilesets/rse/tileset/5399.png ../../../app/build/cache/tilesets/rse/tileset/54.png ../../../app/build/cache/tilesets/rse/tileset/540.png ../../../app/build/cache/tilesets/rse/tileset/5400.png ../../../app/build/cache/tilesets/rse/tileset/5401.png ../../../app/build/cache/tilesets/rse/tileset/5402.png ../../../app/build/cache/tilesets/rse/tileset/5403.png ../../../app/build/cache/tilesets/rse/tileset/5404.png ../../../app/build/cache/tilesets/rse/tileset/5405.png ../../../app/build/cache/tilesets/rse/tileset/5406.png ../../../app/build/cache/tilesets/rse/tileset/5407.png ../../../app/build/cache/tilesets/rse/tileset/5408.png ../../../app/build/cache/tilesets/rse/tileset/5409.png ../../../app/build/cache/tilesets/rse/tileset/541.png ../../../app/build/cache/tilesets/rse/tileset/5410.png ../../../app/build/cache/tilesets/rse/tileset/5411.png ../../../app/build/cache/tilesets/rse/tileset/5412.png ../../../app/build/cache/tilesets/rse/tileset/5413.png ../../../app/build/cache/tilesets/rse/tileset/5414.png ../../../app/build/cache/tilesets/rse/tileset/5415.png ../../../app/build/cache/tilesets/rse/tileset/5416.png ../../../app/build/cache/tilesets/rse/tileset/5417.png ../../../app/build/cache/tilesets/rse/tileset/5418.png ../../../app/build/cache/tilesets/rse/tileset/5419.png ../../../app/build/cache/tilesets/rse/tileset/542.png ../../../app/build/cache/tilesets/rse/tileset/5420.png ../../../app/build/cache/tilesets/rse/tileset/5421.png ../../../app/build/cache/tilesets/rse/tileset/5422.png ../../../app/build/cache/tilesets/rse/tileset/5423.png ../../../app/build/cache/tilesets/rse/tileset/5424.png ../../../app/build/cache/tilesets/rse/tileset/5425.png ../../../app/build/cache/tilesets/rse/tileset/5426.png ../../../app/build/cache/tilesets/rse/tileset/5427.png ../../../app/build/cache/tilesets/rse/tileset/5428.png ../../../app/build/cache/tilesets/rse/tileset/5429.png ../../../app/build/cache/tilesets/rse/tileset/543.png ../../../app/build/cache/tilesets/rse/tileset/5430.png ../../../app/build/cache/tilesets/rse/tileset/5431.png ../../../app/build/cache/tilesets/rse/tileset/5432.png ../../../app/build/cache/tilesets/rse/tileset/5433.png ../../../app/build/cache/tilesets/rse/tileset/5434.png ../../../app/build/cache/tilesets/rse/tileset/5435.png ../../../app/build/cache/tilesets/rse/tileset/5436.png ../../../app/build/cache/tilesets/rse/tileset/5437.png ../../../app/build/cache/tilesets/rse/tileset/5438.png ../../../app/build/cache/tilesets/rse/tileset/5439.png ../../../app/build/cache/tilesets/rse/tileset/544.png ../../../app/build/cache/tilesets/rse/tileset/5440.png ../../../app/build/cache/tilesets/rse/tileset/5441.png ../../../app/build/cache/tilesets/rse/tileset/5442.png ../../../app/build/cache/tilesets/rse/tileset/5443.png ../../../app/build/cache/tilesets/rse/tileset/5444.png ../../../app/build/cache/tilesets/rse/tileset/5445.png ../../../app/build/cache/tilesets/rse/tileset/5446.png ../../../app/build/cache/tilesets/rse/tileset/5447.png ../../../app/build/cache/tilesets/rse/tileset/5448.png ../../../app/build/cache/tilesets/rse/tileset/5449.png ../../../app/build/cache/tilesets/rse/tileset/545.png ../../../app/build/cache/tilesets/rse/tileset/5450.png ../../../app/build/cache/tilesets/rse/tileset/5451.png ../../../app/build/cache/tilesets/rse/tileset/5452.png ../../../app/build/cache/tilesets/rse/tileset/5453.png ../../../app/build/cache/tilesets/rse/tileset/5454.png ../../../app/build/cache/tilesets/rse/tileset/5455.png ../../../app/build/cache/tilesets/rse/tileset/5456.png ../../../app/build/cache/tilesets/rse/tileset/5457.png ../../../app/build/cache/tilesets/rse/tileset/5458.png ../../../app/build/cache/tilesets/rse/tileset/5459.png ../../../app/build/cache/tilesets/rse/tileset/546.png ../../../app/build/cache/tilesets/rse/tileset/5460.png ../../../app/build/cache/tilesets/rse/tileset/5461.png ../../../app/build/cache/tilesets/rse/tileset/5462.png ../../../app/build/cache/tilesets/rse/tileset/5463.png ../../../app/build/cache/tilesets/rse/tileset/5464.png ../../../app/build/cache/tilesets/rse/tileset/5465.png ../../../app/build/cache/tilesets/rse/tileset/5466.png ../../../app/build/cache/tilesets/rse/tileset/5467.png ../../../app/build/cache/tilesets/rse/tileset/5468.png ../../../app/build/cache/tilesets/rse/tileset/5469.png ../../../app/build/cache/tilesets/rse/tileset/547.png ../../../app/build/cache/tilesets/rse/tileset/5470.png ../../../app/build/cache/tilesets/rse/tileset/5471.png ../../../app/build/cache/tilesets/rse/tileset/5472.png ../../../app/build/cache/tilesets/rse/tileset/5473.png ../../../app/build/cache/tilesets/rse/tileset/5474.png ../../../app/build/cache/tilesets/rse/tileset/5475.png ../../../app/build/cache/tilesets/rse/tileset/5476.png ../../../app/build/cache/tilesets/rse/tileset/5477.png ../../../app/build/cache/tilesets/rse/tileset/5478.png ../../../app/build/cache/tilesets/rse/tileset/5479.png ../../../app/build/cache/tilesets/rse/tileset/548.png ../../../app/build/cache/tilesets/rse/tileset/5480.png ../../../app/build/cache/tilesets/rse/tileset/5481.png ../../../app/build/cache/tilesets/rse/tileset/5482.png ../../../app/build/cache/tilesets/rse/tileset/5483.png ../../../app/build/cache/tilesets/rse/tileset/5484.png ../../../app/build/cache/tilesets/rse/tileset/5485.png ../../../app/build/cache/tilesets/rse/tileset/5486.png ../../../app/build/cache/tilesets/rse/tileset/5487.png ../../../app/build/cache/tilesets/rse/tileset/5488.png ../../../app/build/cache/tilesets/rse/tileset/5489.png ../../../app/build/cache/tilesets/rse/tileset/549.png ../../../app/build/cache/tilesets/rse/tileset/5490.png ../../../app/build/cache/tilesets/rse/tileset/5491.png ../../../app/build/cache/tilesets/rse/tileset/5492.png ../../../app/build/cache/tilesets/rse/tileset/5493.png ../../../app/build/cache/tilesets/rse/tileset/5494.png ../../../app/build/cache/tilesets/rse/tileset/5495.png ../../../app/build/cache/tilesets/rse/tileset/5496.png ../../../app/build/cache/tilesets/rse/tileset/5497.png ../../../app/build/cache/tilesets/rse/tileset/5498.png ../../../app/build/cache/tilesets/rse/tileset/5499.png ../../../app/build/cache/tilesets/rse/tileset/55.png ../../../app/build/cache/tilesets/rse/tileset/550.png ../../../app/build/cache/tilesets/rse/tileset/5500.png ../../../app/build/cache/tilesets/rse/tileset/5501.png ../../../app/build/cache/tilesets/rse/tileset/5502.png ../../../app/build/cache/tilesets/rse/tileset/5503.png ../../../app/build/cache/tilesets/rse/tileset/5504.png ../../../app/build/cache/tilesets/rse/tileset/5505.png ../../../app/build/cache/tilesets/rse/tileset/5506.png ../../../app/build/cache/tilesets/rse/tileset/5507.png ../../../app/build/cache/tilesets/rse/tileset/5508.png ../../../app/build/cache/tilesets/rse/tileset/5509.png ../../../app/build/cache/tilesets/rse/tileset/551.png ../../../app/build/cache/tilesets/rse/tileset/5510.png ../../../app/build/cache/tilesets/rse/tileset/5511.png ../../../app/build/cache/tilesets/rse/tileset/5512.png ../../../app/build/cache/tilesets/rse/tileset/5513.png ../../../app/build/cache/tilesets/rse/tileset/5514.png ../../../app/build/cache/tilesets/rse/tileset/5515.png ../../../app/build/cache/tilesets/rse/tileset/5516.png ../../../app/build/cache/tilesets/rse/tileset/5517.png ../../../app/build/cache/tilesets/rse/tileset/5518.png ../../../app/build/cache/tilesets/rse/tileset/5519.png ../../../app/build/cache/tilesets/rse/tileset/552.png ../../../app/build/cache/tilesets/rse/tileset/5520.png ../../../app/build/cache/tilesets/rse/tileset/5521.png ../../../app/build/cache/tilesets/rse/tileset/5522.png ../../../app/build/cache/tilesets/rse/tileset/5523.png ../../../app/build/cache/tilesets/rse/tileset/5524.png ../../../app/build/cache/tilesets/rse/tileset/5525.png ../../../app/build/cache/tilesets/rse/tileset/5526.png ../../../app/build/cache/tilesets/rse/tileset/5527.png ../../../app/build/cache/tilesets/rse/tileset/5528.png ../../../app/build/cache/tilesets/rse/tileset/5529.png ../../../app/build/cache/tilesets/rse/tileset/553.png ../../../app/build/cache/tilesets/rse/tileset/5530.png ../../../app/build/cache/tilesets/rse/tileset/5531.png ../../../app/build/cache/tilesets/rse/tileset/5532.png ../../../app/build/cache/tilesets/rse/tileset/5533.png ../../../app/build/cache/tilesets/rse/tileset/5534.png ../../../app/build/cache/tilesets/rse/tileset/5535.png ../../../app/build/cache/tilesets/rse/tileset/5536.png ../../../app/build/cache/tilesets/rse/tileset/5537.png ../../../app/build/cache/tilesets/rse/tileset/5538.png ../../../app/build/cache/tilesets/rse/tileset/5539.png ../../../app/build/cache/tilesets/rse/tileset/554.png ../../../app/build/cache/tilesets/rse/tileset/5540.png ../../../app/build/cache/tilesets/rse/tileset/5541.png ../../../app/build/cache/tilesets/rse/tileset/5542.png ../../../app/build/cache/tilesets/rse/tileset/5543.png ../../../app/build/cache/tilesets/rse/tileset/5544.png ../../../app/build/cache/tilesets/rse/tileset/5545.png ../../../app/build/cache/tilesets/rse/tileset/5546.png ../../../app/build/cache/tilesets/rse/tileset/5547.png ../../../app/build/cache/tilesets/rse/tileset/5548.png ../../../app/build/cache/tilesets/rse/tileset/5549.png ../../../app/build/cache/tilesets/rse/tileset/555.png ../../../app/build/cache/tilesets/rse/tileset/5550.png ../../../app/build/cache/tilesets/rse/tileset/5551.png ../../../app/build/cache/tilesets/rse/tileset/5552.png ../../../app/build/cache/tilesets/rse/tileset/5553.png ../../../app/build/cache/tilesets/rse/tileset/5554.png ../../../app/build/cache/tilesets/rse/tileset/5555.png ../../../app/build/cache/tilesets/rse/tileset/5556.png ../../../app/build/cache/tilesets/rse/tileset/5557.png ../../../app/build/cache/tilesets/rse/tileset/5558.png ../../../app/build/cache/tilesets/rse/tileset/5559.png ../../../app/build/cache/tilesets/rse/tileset/556.png ../../../app/build/cache/tilesets/rse/tileset/5560.png ../../../app/build/cache/tilesets/rse/tileset/5561.png ../../../app/build/cache/tilesets/rse/tileset/5562.png ../../../app/build/cache/tilesets/rse/tileset/5563.png ../../../app/build/cache/tilesets/rse/tileset/5564.png ../../../app/build/cache/tilesets/rse/tileset/5565.png ../../../app/build/cache/tilesets/rse/tileset/5566.png ../../../app/build/cache/tilesets/rse/tileset/5567.png ../../../app/build/cache/tilesets/rse/tileset/5568.png ../../../app/build/cache/tilesets/rse/tileset/5569.png ../../../app/build/cache/tilesets/rse/tileset/557.png ../../../app/build/cache/tilesets/rse/tileset/5570.png ../../../app/build/cache/tilesets/rse/tileset/5571.png ../../../app/build/cache/tilesets/rse/tileset/5572.png ../../../app/build/cache/tilesets/rse/tileset/5573.png ../../../app/build/cache/tilesets/rse/tileset/5574.png ../../../app/build/cache/tilesets/rse/tileset/5575.png ../../../app/build/cache/tilesets/rse/tileset/5576.png ../../../app/build/cache/tilesets/rse/tileset/5577.png ../../../app/build/cache/tilesets/rse/tileset/5578.png ../../../app/build/cache/tilesets/rse/tileset/5579.png ../../../app/build/cache/tilesets/rse/tileset/558.png ../../../app/build/cache/tilesets/rse/tileset/5580.png ../../../app/build/cache/tilesets/rse/tileset/5581.png ../../../app/build/cache/tilesets/rse/tileset/5582.png ../../../app/build/cache/tilesets/rse/tileset/5583.png ../../../app/build/cache/tilesets/rse/tileset/5584.png ../../../app/build/cache/tilesets/rse/tileset/5585.png ../../../app/build/cache/tilesets/rse/tileset/5586.png ../../../app/build/cache/tilesets/rse/tileset/5587.png ../../../app/build/cache/tilesets/rse/tileset/5588.png ../../../app/build/cache/tilesets/rse/tileset/5589.png ../../../app/build/cache/tilesets/rse/tileset/559.png ../../../app/build/cache/tilesets/rse/tileset/5590.png ../../../app/build/cache/tilesets/rse/tileset/5591.png ../../../app/build/cache/tilesets/rse/tileset/5592.png ../../../app/build/cache/tilesets/rse/tileset/5593.png ../../../app/build/cache/tilesets/rse/tileset/5594.png ../../../app/build/cache/tilesets/rse/tileset/5595.png ../../../app/build/cache/tilesets/rse/tileset/5596.png ../../../app/build/cache/tilesets/rse/tileset/5597.png ../../../app/build/cache/tilesets/rse/tileset/5598.png ../../../app/build/cache/tilesets/rse/tileset/5599.png ../../../app/build/cache/tilesets/rse/tileset/56.png ../../../app/build/cache/tilesets/rse/tileset/560.png ../../../app/build/cache/tilesets/rse/tileset/5600.png ../../../app/build/cache/tilesets/rse/tileset/5601.png ../../../app/build/cache/tilesets/rse/tileset/5602.png ../../../app/build/cache/tilesets/rse/tileset/5603.png ../../../app/build/cache/tilesets/rse/tileset/5604.png ../../../app/build/cache/tilesets/rse/tileset/5605.png ../../../app/build/cache/tilesets/rse/tileset/5606.png ../../../app/build/cache/tilesets/rse/tileset/5607.png ../../../app/build/cache/tilesets/rse/tileset/5608.png ../../../app/build/cache/tilesets/rse/tileset/5609.png ../../../app/build/cache/tilesets/rse/tileset/561.png ../../../app/build/cache/tilesets/rse/tileset/5610.png ../../../app/build/cache/tilesets/rse/tileset/5611.png ../../../app/build/cache/tilesets/rse/tileset/5612.png ../../../app/build/cache/tilesets/rse/tileset/5613.png ../../../app/build/cache/tilesets/rse/tileset/5614.png ../../../app/build/cache/tilesets/rse/tileset/5615.png ../../../app/build/cache/tilesets/rse/tileset/5616.png ../../../app/build/cache/tilesets/rse/tileset/5617.png ../../../app/build/cache/tilesets/rse/tileset/5618.png ../../../app/build/cache/tilesets/rse/tileset/5619.png ../../../app/build/cache/tilesets/rse/tileset/562.png ../../../app/build/cache/tilesets/rse/tileset/5620.png ../../../app/build/cache/tilesets/rse/tileset/5621.png ../../../app/build/cache/tilesets/rse/tileset/5622.png ../../../app/build/cache/tilesets/rse/tileset/5623.png ../../../app/build/cache/tilesets/rse/tileset/5624.png ../../../app/build/cache/tilesets/rse/tileset/5625.png ../../../app/build/cache/tilesets/rse/tileset/5626.png ../../../app/build/cache/tilesets/rse/tileset/5627.png ../../../app/build/cache/tilesets/rse/tileset/5628.png ../../../app/build/cache/tilesets/rse/tileset/5629.png ../../../app/build/cache/tilesets/rse/tileset/563.png ../../../app/build/cache/tilesets/rse/tileset/5630.png ../../../app/build/cache/tilesets/rse/tileset/5631.png ../../../app/build/cache/tilesets/rse/tileset/5632.png ../../../app/build/cache/tilesets/rse/tileset/5633.png ../../../app/build/cache/tilesets/rse/tileset/5634.png ../../../app/build/cache/tilesets/rse/tileset/5635.png ../../../app/build/cache/tilesets/rse/tileset/5636.png ../../../app/build/cache/tilesets/rse/tileset/5637.png ../../../app/build/cache/tilesets/rse/tileset/5638.png ../../../app/build/cache/tilesets/rse/tileset/5639.png ../../../app/build/cache/tilesets/rse/tileset/564.png ../../../app/build/cache/tilesets/rse/tileset/5640.png ../../../app/build/cache/tilesets/rse/tileset/5641.png ../../../app/build/cache/tilesets/rse/tileset/5642.png ../../../app/build/cache/tilesets/rse/tileset/5643.png ../../../app/build/cache/tilesets/rse/tileset/5644.png ../../../app/build/cache/tilesets/rse/tileset/5645.png ../../../app/build/cache/tilesets/rse/tileset/5646.png ../../../app/build/cache/tilesets/rse/tileset/5647.png ../../../app/build/cache/tilesets/rse/tileset/5648.png ../../../app/build/cache/tilesets/rse/tileset/5649.png ../../../app/build/cache/tilesets/rse/tileset/565.png ../../../app/build/cache/tilesets/rse/tileset/5650.png ../../../app/build/cache/tilesets/rse/tileset/5651.png ../../../app/build/cache/tilesets/rse/tileset/5652.png ../../../app/build/cache/tilesets/rse/tileset/5653.png ../../../app/build/cache/tilesets/rse/tileset/5654.png ../../../app/build/cache/tilesets/rse/tileset/5655.png ../../../app/build/cache/tilesets/rse/tileset/5656.png ../../../app/build/cache/tilesets/rse/tileset/5657.png ../../../app/build/cache/tilesets/rse/tileset/5658.png ../../../app/build/cache/tilesets/rse/tileset/5659.png ../../../app/build/cache/tilesets/rse/tileset/566.png ../../../app/build/cache/tilesets/rse/tileset/5660.png ../../../app/build/cache/tilesets/rse/tileset/5661.png ../../../app/build/cache/tilesets/rse/tileset/5662.png ../../../app/build/cache/tilesets/rse/tileset/5663.png ../../../app/build/cache/tilesets/rse/tileset/5664.png ../../../app/build/cache/tilesets/rse/tileset/5665.png ../../../app/build/cache/tilesets/rse/tileset/5666.png ../../../app/build/cache/tilesets/rse/tileset/5667.png ../../../app/build/cache/tilesets/rse/tileset/5668.png ../../../app/build/cache/tilesets/rse/tileset/5669.png ../../../app/build/cache/tilesets/rse/tileset/567.png ../../../app/build/cache/tilesets/rse/tileset/5670.png ../../../app/build/cache/tilesets/rse/tileset/5671.png ../../../app/build/cache/tilesets/rse/tileset/5672.png ../../../app/build/cache/tilesets/rse/tileset/5673.png ../../../app/build/cache/tilesets/rse/tileset/5674.png ../../../app/build/cache/tilesets/rse/tileset/5675.png ../../../app/build/cache/tilesets/rse/tileset/5676.png ../../../app/build/cache/tilesets/rse/tileset/5677.png ../../../app/build/cache/tilesets/rse/tileset/5678.png ../../../app/build/cache/tilesets/rse/tileset/5679.png ../../../app/build/cache/tilesets/rse/tileset/568.png ../../../app/build/cache/tilesets/rse/tileset/5680.png ../../../app/build/cache/tilesets/rse/tileset/5681.png ../../../app/build/cache/tilesets/rse/tileset/5682.png ../../../app/build/cache/tilesets/rse/tileset/5683.png ../../../app/build/cache/tilesets/rse/tileset/5684.png ../../../app/build/cache/tilesets/rse/tileset/5685.png ../../../app/build/cache/tilesets/rse/tileset/5686.png ../../../app/build/cache/tilesets/rse/tileset/5687.png ../../../app/build/cache/tilesets/rse/tileset/5688.png ../../../app/build/cache/tilesets/rse/tileset/5689.png ../../../app/build/cache/tilesets/rse/tileset/569.png ../../../app/build/cache/tilesets/rse/tileset/5690.png ../../../app/build/cache/tilesets/rse/tileset/5691.png ../../../app/build/cache/tilesets/rse/tileset/5692.png ../../../app/build/cache/tilesets/rse/tileset/5693.png ../../../app/build/cache/tilesets/rse/tileset/5694.png ../../../app/build/cache/tilesets/rse/tileset/5695.png ../../../app/build/cache/tilesets/rse/tileset/5696.png ../../../app/build/cache/tilesets/rse/tileset/5697.png ../../../app/build/cache/tilesets/rse/tileset/5698.png ../../../app/build/cache/tilesets/rse/tileset/5699.png ../../../app/build/cache/tilesets/rse/tileset/57.png ../../../app/build/cache/tilesets/rse/tileset/570.png ../../../app/build/cache/tilesets/rse/tileset/5700.png ../../../app/build/cache/tilesets/rse/tileset/5701.png ../../../app/build/cache/tilesets/rse/tileset/5702.png ../../../app/build/cache/tilesets/rse/tileset/5703.png ../../../app/build/cache/tilesets/rse/tileset/5704.png ../../../app/build/cache/tilesets/rse/tileset/5705.png ../../../app/build/cache/tilesets/rse/tileset/5706.png ../../../app/build/cache/tilesets/rse/tileset/5707.png ../../../app/build/cache/tilesets/rse/tileset/5708.png ../../../app/build/cache/tilesets/rse/tileset/5709.png ../../../app/build/cache/tilesets/rse/tileset/571.png ../../../app/build/cache/tilesets/rse/tileset/5710.png ../../../app/build/cache/tilesets/rse/tileset/5711.png ../../../app/build/cache/tilesets/rse/tileset/5712.png ../../../app/build/cache/tilesets/rse/tileset/5713.png ../../../app/build/cache/tilesets/rse/tileset/5714.png ../../../app/build/cache/tilesets/rse/tileset/5715.png ../../../app/build/cache/tilesets/rse/tileset/5716.png ../../../app/build/cache/tilesets/rse/tileset/5717.png ../../../app/build/cache/tilesets/rse/tileset/5718.png ../../../app/build/cache/tilesets/rse/tileset/5719.png ../../../app/build/cache/tilesets/rse/tileset/572.png ../../../app/build/cache/tilesets/rse/tileset/5720.png ../../../app/build/cache/tilesets/rse/tileset/5721.png ../../../app/build/cache/tilesets/rse/tileset/5722.png ../../../app/build/cache/tilesets/rse/tileset/5723.png ../../../app/build/cache/tilesets/rse/tileset/5724.png ../../../app/build/cache/tilesets/rse/tileset/5725.png ../../../app/build/cache/tilesets/rse/tileset/5726.png ../../../app/build/cache/tilesets/rse/tileset/5727.png ../../../app/build/cache/tilesets/rse/tileset/5728.png ../../../app/build/cache/tilesets/rse/tileset/5729.png ../../../app/build/cache/tilesets/rse/tileset/573.png ../../../app/build/cache/tilesets/rse/tileset/5730.png ../../../app/build/cache/tilesets/rse/tileset/5731.png ../../../app/build/cache/tilesets/rse/tileset/5732.png ../../../app/build/cache/tilesets/rse/tileset/5733.png ../../../app/build/cache/tilesets/rse/tileset/5734.png ../../../app/build/cache/tilesets/rse/tileset/5735.png ../../../app/build/cache/tilesets/rse/tileset/5736.png ../../../app/build/cache/tilesets/rse/tileset/5737.png ../../../app/build/cache/tilesets/rse/tileset/5738.png ../../../app/build/cache/tilesets/rse/tileset/5739.png ../../../app/build/cache/tilesets/rse/tileset/574.png ../../../app/build/cache/tilesets/rse/tileset/5740.png ../../../app/build/cache/tilesets/rse/tileset/5741.png ../../../app/build/cache/tilesets/rse/tileset/5742.png ../../../app/build/cache/tilesets/rse/tileset/5743.png ../../../app/build/cache/tilesets/rse/tileset/5744.png ../../../app/build/cache/tilesets/rse/tileset/5745.png ../../../app/build/cache/tilesets/rse/tileset/5746.png ../../../app/build/cache/tilesets/rse/tileset/5747.png ../../../app/build/cache/tilesets/rse/tileset/5748.png ../../../app/build/cache/tilesets/rse/tileset/5749.png ../../../app/build/cache/tilesets/rse/tileset/575.png ../../../app/build/cache/tilesets/rse/tileset/5750.png ../../../app/build/cache/tilesets/rse/tileset/5751.png ../../../app/build/cache/tilesets/rse/tileset/5752.png ../../../app/build/cache/tilesets/rse/tileset/5753.png ../../../app/build/cache/tilesets/rse/tileset/5754.png ../../../app/build/cache/tilesets/rse/tileset/5755.png ../../../app/build/cache/tilesets/rse/tileset/5756.png ../../../app/build/cache/tilesets/rse/tileset/5757.png ../../../app/build/cache/tilesets/rse/tileset/5758.png ../../../app/build/cache/tilesets/rse/tileset/5759.png ../../../app/build/cache/tilesets/rse/tileset/576.png ../../../app/build/cache/tilesets/rse/tileset/5760.png ../../../app/build/cache/tilesets/rse/tileset/5761.png ../../../app/build/cache/tilesets/rse/tileset/5762.png ../../../app/build/cache/tilesets/rse/tileset/5763.png ../../../app/build/cache/tilesets/rse/tileset/5764.png ../../../app/build/cache/tilesets/rse/tileset/5765.png ../../../app/build/cache/tilesets/rse/tileset/5766.png ../../../app/build/cache/tilesets/rse/tileset/5767.png ../../../app/build/cache/tilesets/rse/tileset/5768.png ../../../app/build/cache/tilesets/rse/tileset/5769.png ../../../app/build/cache/tilesets/rse/tileset/577.png ../../../app/build/cache/tilesets/rse/tileset/5770.png ../../../app/build/cache/tilesets/rse/tileset/5771.png ../../../app/build/cache/tilesets/rse/tileset/5772.png ../../../app/build/cache/tilesets/rse/tileset/5773.png ../../../app/build/cache/tilesets/rse/tileset/5774.png ../../../app/build/cache/tilesets/rse/tileset/5775.png ../../../app/build/cache/tilesets/rse/tileset/5776.png ../../../app/build/cache/tilesets/rse/tileset/5777.png ../../../app/build/cache/tilesets/rse/tileset/5778.png ../../../app/build/cache/tilesets/rse/tileset/5779.png ../../../app/build/cache/tilesets/rse/tileset/578.png ../../../app/build/cache/tilesets/rse/tileset/5780.png ../../../app/build/cache/tilesets/rse/tileset/5781.png ../../../app/build/cache/tilesets/rse/tileset/5782.png ../../../app/build/cache/tilesets/rse/tileset/5783.png ../../../app/build/cache/tilesets/rse/tileset/5784.png ../../../app/build/cache/tilesets/rse/tileset/5785.png ../../../app/build/cache/tilesets/rse/tileset/5786.png ../../../app/build/cache/tilesets/rse/tileset/5787.png ../../../app/build/cache/tilesets/rse/tileset/5788.png ../../../app/build/cache/tilesets/rse/tileset/5789.png ../../../app/build/cache/tilesets/rse/tileset/579.png ../../../app/build/cache/tilesets/rse/tileset/5790.png ../../../app/build/cache/tilesets/rse/tileset/5791.png ../../../app/build/cache/tilesets/rse/tileset/5792.png ../../../app/build/cache/tilesets/rse/tileset/5793.png ../../../app/build/cache/tilesets/rse/tileset/5794.png ../../../app/build/cache/tilesets/rse/tileset/5795.png ../../../app/build/cache/tilesets/rse/tileset/5796.png ../../../app/build/cache/tilesets/rse/tileset/5797.png ../../../app/build/cache/tilesets/rse/tileset/5798.png ../../../app/build/cache/tilesets/rse/tileset/5799.png ../../../app/build/cache/tilesets/rse/tileset/58.png ../../../app/build/cache/tilesets/rse/tileset/580.png ../../../app/build/cache/tilesets/rse/tileset/5800.png ../../../app/build/cache/tilesets/rse/tileset/5801.png ../../../app/build/cache/tilesets/rse/tileset/5802.png ../../../app/build/cache/tilesets/rse/tileset/5803.png ../../../app/build/cache/tilesets/rse/tileset/5804.png ../../../app/build/cache/tilesets/rse/tileset/5805.png ../../../app/build/cache/tilesets/rse/tileset/5806.png ../../../app/build/cache/tilesets/rse/tileset/5807.png ../../../app/build/cache/tilesets/rse/tileset/5808.png ../../../app/build/cache/tilesets/rse/tileset/5809.png ../../../app/build/cache/tilesets/rse/tileset/581.png ../../../app/build/cache/tilesets/rse/tileset/5810.png ../../../app/build/cache/tilesets/rse/tileset/5811.png ../../../app/build/cache/tilesets/rse/tileset/5812.png ../../../app/build/cache/tilesets/rse/tileset/5813.png ../../../app/build/cache/tilesets/rse/tileset/5814.png ../../../app/build/cache/tilesets/rse/tileset/5815.png ../../../app/build/cache/tilesets/rse/tileset/5816.png ../../../app/build/cache/tilesets/rse/tileset/5817.png ../../../app/build/cache/tilesets/rse/tileset/5818.png ../../../app/build/cache/tilesets/rse/tileset/5819.png ../../../app/build/cache/tilesets/rse/tileset/582.png ../../../app/build/cache/tilesets/rse/tileset/5820.png ../../../app/build/cache/tilesets/rse/tileset/5821.png ../../../app/build/cache/tilesets/rse/tileset/5822.png ../../../app/build/cache/tilesets/rse/tileset/5823.png ../../../app/build/cache/tilesets/rse/tileset/5824.png ../../../app/build/cache/tilesets/rse/tileset/5825.png ../../../app/build/cache/tilesets/rse/tileset/5826.png ../../../app/build/cache/tilesets/rse/tileset/5827.png ../../../app/build/cache/tilesets/rse/tileset/5828.png ../../../app/build/cache/tilesets/rse/tileset/5829.png ../../../app/build/cache/tilesets/rse/tileset/583.png ../../../app/build/cache/tilesets/rse/tileset/5830.png ../../../app/build/cache/tilesets/rse/tileset/5831.png ../../../app/build/cache/tilesets/rse/tileset/5832.png ../../../app/build/cache/tilesets/rse/tileset/5833.png ../../../app/build/cache/tilesets/rse/tileset/5834.png ../../../app/build/cache/tilesets/rse/tileset/5835.png ../../../app/build/cache/tilesets/rse/tileset/5836.png ../../../app/build/cache/tilesets/rse/tileset/5837.png ../../../app/build/cache/tilesets/rse/tileset/5838.png ../../../app/build/cache/tilesets/rse/tileset/5839.png ../../../app/build/cache/tilesets/rse/tileset/584.png ../../../app/build/cache/tilesets/rse/tileset/5840.png ../../../app/build/cache/tilesets/rse/tileset/5841.png ../../../app/build/cache/tilesets/rse/tileset/5842.png ../../../app/build/cache/tilesets/rse/tileset/5843.png ../../../app/build/cache/tilesets/rse/tileset/5844.png ../../../app/build/cache/tilesets/rse/tileset/5845.png ../../../app/build/cache/tilesets/rse/tileset/5846.png ../../../app/build/cache/tilesets/rse/tileset/5847.png ../../../app/build/cache/tilesets/rse/tileset/5848.png ../../../app/build/cache/tilesets/rse/tileset/5849.png ../../../app/build/cache/tilesets/rse/tileset/585.png ../../../app/build/cache/tilesets/rse/tileset/5850.png ../../../app/build/cache/tilesets/rse/tileset/5851.png ../../../app/build/cache/tilesets/rse/tileset/5852.png ../../../app/build/cache/tilesets/rse/tileset/5853.png ../../../app/build/cache/tilesets/rse/tileset/5854.png ../../../app/build/cache/tilesets/rse/tileset/5855.png ../../../app/build/cache/tilesets/rse/tileset/5856.png ../../../app/build/cache/tilesets/rse/tileset/5857.png ../../../app/build/cache/tilesets/rse/tileset/5858.png ../../../app/build/cache/tilesets/rse/tileset/5859.png ../../../app/build/cache/tilesets/rse/tileset/586.png ../../../app/build/cache/tilesets/rse/tileset/5860.png ../../../app/build/cache/tilesets/rse/tileset/5861.png ../../../app/build/cache/tilesets/rse/tileset/5862.png ../../../app/build/cache/tilesets/rse/tileset/5863.png ../../../app/build/cache/tilesets/rse/tileset/5864.png ../../../app/build/cache/tilesets/rse/tileset/5865.png ../../../app/build/cache/tilesets/rse/tileset/5866.png ../../../app/build/cache/tilesets/rse/tileset/5867.png ../../../app/build/cache/tilesets/rse/tileset/5868.png ../../../app/build/cache/tilesets/rse/tileset/5869.png ../../../app/build/cache/tilesets/rse/tileset/587.png ../../../app/build/cache/tilesets/rse/tileset/5870.png ../../../app/build/cache/tilesets/rse/tileset/5871.png ../../../app/build/cache/tilesets/rse/tileset/5872.png ../../../app/build/cache/tilesets/rse/tileset/5873.png ../../../app/build/cache/tilesets/rse/tileset/5874.png ../../../app/build/cache/tilesets/rse/tileset/5875.png ../../../app/build/cache/tilesets/rse/tileset/5876.png ../../../app/build/cache/tilesets/rse/tileset/5877.png ../../../app/build/cache/tilesets/rse/tileset/5878.png ../../../app/build/cache/tilesets/rse/tileset/5879.png ../../../app/build/cache/tilesets/rse/tileset/588.png ../../../app/build/cache/tilesets/rse/tileset/5880.png ../../../app/build/cache/tilesets/rse/tileset/5881.png ../../../app/build/cache/tilesets/rse/tileset/5882.png ../../../app/build/cache/tilesets/rse/tileset/5883.png ../../../app/build/cache/tilesets/rse/tileset/5884.png ../../../app/build/cache/tilesets/rse/tileset/5885.png ../../../app/build/cache/tilesets/rse/tileset/5886.png ../../../app/build/cache/tilesets/rse/tileset/5887.png ../../../app/build/cache/tilesets/rse/tileset/5888.png ../../../app/build/cache/tilesets/rse/tileset/5889.png ../../../app/build/cache/tilesets/rse/tileset/589.png ../../../app/build/cache/tilesets/rse/tileset/5890.png ../../../app/build/cache/tilesets/rse/tileset/5891.png ../../../app/build/cache/tilesets/rse/tileset/5892.png ../../../app/build/cache/tilesets/rse/tileset/5893.png ../../../app/build/cache/tilesets/rse/tileset/5894.png ../../../app/build/cache/tilesets/rse/tileset/5895.png ../../../app/build/cache/tilesets/rse/tileset/5896.png ../../../app/build/cache/tilesets/rse/tileset/5897.png ../../../app/build/cache/tilesets/rse/tileset/5898.png ../../../app/build/cache/tilesets/rse/tileset/5899.png ../../../app/build/cache/tilesets/rse/tileset/59.png ../../../app/build/cache/tilesets/rse/tileset/590.png ../../../app/build/cache/tilesets/rse/tileset/5900.png ../../../app/build/cache/tilesets/rse/tileset/5901.png ../../../app/build/cache/tilesets/rse/tileset/5902.png ../../../app/build/cache/tilesets/rse/tileset/5903.png ../../../app/build/cache/tilesets/rse/tileset/5904.png ../../../app/build/cache/tilesets/rse/tileset/5905.png ../../../app/build/cache/tilesets/rse/tileset/5906.png ../../../app/build/cache/tilesets/rse/tileset/5907.png ../../../app/build/cache/tilesets/rse/tileset/5908.png ../../../app/build/cache/tilesets/rse/tileset/5909.png ../../../app/build/cache/tilesets/rse/tileset/591.png ../../../app/build/cache/tilesets/rse/tileset/5910.png ../../../app/build/cache/tilesets/rse/tileset/5911.png ../../../app/build/cache/tilesets/rse/tileset/5912.png ../../../app/build/cache/tilesets/rse/tileset/5913.png ../../../app/build/cache/tilesets/rse/tileset/5914.png ../../../app/build/cache/tilesets/rse/tileset/5915.png ../../../app/build/cache/tilesets/rse/tileset/5916.png ../../../app/build/cache/tilesets/rse/tileset/5917.png ../../../app/build/cache/tilesets/rse/tileset/5918.png ../../../app/build/cache/tilesets/rse/tileset/5919.png ../../../app/build/cache/tilesets/rse/tileset/592.png ../../../app/build/cache/tilesets/rse/tileset/5920.png ../../../app/build/cache/tilesets/rse/tileset/5921.png ../../../app/build/cache/tilesets/rse/tileset/5922.png ../../../app/build/cache/tilesets/rse/tileset/5923.png ../../../app/build/cache/tilesets/rse/tileset/5924.png ../../../app/build/cache/tilesets/rse/tileset/5925.png ../../../app/build/cache/tilesets/rse/tileset/5926.png ../../../app/build/cache/tilesets/rse/tileset/5927.png ../../../app/build/cache/tilesets/rse/tileset/5928.png ../../../app/build/cache/tilesets/rse/tileset/5929.png ../../../app/build/cache/tilesets/rse/tileset/593.png ../../../app/build/cache/tilesets/rse/tileset/5930.png ../../../app/build/cache/tilesets/rse/tileset/5931.png ../../../app/build/cache/tilesets/rse/tileset/5932.png ../../../app/build/cache/tilesets/rse/tileset/5933.png ../../../app/build/cache/tilesets/rse/tileset/5934.png ../../../app/build/cache/tilesets/rse/tileset/5935.png ../../../app/build/cache/tilesets/rse/tileset/5936.png ../../../app/build/cache/tilesets/rse/tileset/5937.png ../../../app/build/cache/tilesets/rse/tileset/5938.png ../../../app/build/cache/tilesets/rse/tileset/5939.png ../../../app/build/cache/tilesets/rse/tileset/594.png ../../../app/build/cache/tilesets/rse/tileset/5940.png ../../../app/build/cache/tilesets/rse/tileset/5941.png ../../../app/build/cache/tilesets/rse/tileset/5942.png ../../../app/build/cache/tilesets/rse/tileset/5943.png ../../../app/build/cache/tilesets/rse/tileset/5944.png ../../../app/build/cache/tilesets/rse/tileset/5945.png ../../../app/build/cache/tilesets/rse/tileset/5946.png ../../../app/build/cache/tilesets/rse/tileset/5947.png ../../../app/build/cache/tilesets/rse/tileset/5948.png ../../../app/build/cache/tilesets/rse/tileset/5949.png ../../../app/build/cache/tilesets/rse/tileset/595.png ../../../app/build/cache/tilesets/rse/tileset/5950.png ../../../app/build/cache/tilesets/rse/tileset/5951.png ../../../app/build/cache/tilesets/rse/tileset/5952.png ../../../app/build/cache/tilesets/rse/tileset/5953.png ../../../app/build/cache/tilesets/rse/tileset/5954.png ../../../app/build/cache/tilesets/rse/tileset/5955.png ../../../app/build/cache/tilesets/rse/tileset/5956.png ../../../app/build/cache/tilesets/rse/tileset/5957.png ../../../app/build/cache/tilesets/rse/tileset/5958.png ../../../app/build/cache/tilesets/rse/tileset/5959.png ../../../app/build/cache/tilesets/rse/tileset/596.png ../../../app/build/cache/tilesets/rse/tileset/5960.png ../../../app/build/cache/tilesets/rse/tileset/5961.png ../../../app/build/cache/tilesets/rse/tileset/5962.png ../../../app/build/cache/tilesets/rse/tileset/5963.png ../../../app/build/cache/tilesets/rse/tileset/5964.png ../../../app/build/cache/tilesets/rse/tileset/5965.png ../../../app/build/cache/tilesets/rse/tileset/5966.png ../../../app/build/cache/tilesets/rse/tileset/5967.png ../../../app/build/cache/tilesets/rse/tileset/5968.png ../../../app/build/cache/tilesets/rse/tileset/5969.png ../../../app/build/cache/tilesets/rse/tileset/597.png ../../../app/build/cache/tilesets/rse/tileset/5970.png ../../../app/build/cache/tilesets/rse/tileset/5971.png ../../../app/build/cache/tilesets/rse/tileset/5972.png ../../../app/build/cache/tilesets/rse/tileset/5973.png ../../../app/build/cache/tilesets/rse/tileset/5974.png ../../../app/build/cache/tilesets/rse/tileset/5975.png ../../../app/build/cache/tilesets/rse/tileset/5976.png ../../../app/build/cache/tilesets/rse/tileset/5977.png ../../../app/build/cache/tilesets/rse/tileset/5978.png ../../../app/build/cache/tilesets/rse/tileset/5979.png ../../../app/build/cache/tilesets/rse/tileset/598.png ../../../app/build/cache/tilesets/rse/tileset/5980.png ../../../app/build/cache/tilesets/rse/tileset/5981.png ../../../app/build/cache/tilesets/rse/tileset/5982.png ../../../app/build/cache/tilesets/rse/tileset/5983.png ../../../app/build/cache/tilesets/rse/tileset/5984.png ../../../app/build/cache/tilesets/rse/tileset/5985.png ../../../app/build/cache/tilesets/rse/tileset/5986.png ../../../app/build/cache/tilesets/rse/tileset/5987.png ../../../app/build/cache/tilesets/rse/tileset/5988.png ../../../app/build/cache/tilesets/rse/tileset/5989.png ../../../app/build/cache/tilesets/rse/tileset/599.png ../../../app/build/cache/tilesets/rse/tileset/5990.png ../../../app/build/cache/tilesets/rse/tileset/5991.png ../../../app/build/cache/tilesets/rse/tileset/5992.png ../../../app/build/cache/tilesets/rse/tileset/5993.png ../../../app/build/cache/tilesets/rse/tileset/5994.png ../../../app/build/cache/tilesets/rse/tileset/5995.png ../../../app/build/cache/tilesets/rse/tileset/5996.png ../../../app/build/cache/tilesets/rse/tileset/5997.png ../../../app/build/cache/tilesets/rse/tileset/5998.png ../../../app/build/cache/tilesets/rse/tileset/5999.png ../../../app/build/cache/tilesets/rse/tileset/6.png ../../../app/build/cache/tilesets/rse/tileset/60.png ../../../app/build/cache/tilesets/rse/tileset/600.png ../../../app/build/cache/tilesets/rse/tileset/6000.png ../../../app/build/cache/tilesets/rse/tileset/6001.png ../../../app/build/cache/tilesets/rse/tileset/6002.png ../../../app/build/cache/tilesets/rse/tileset/6003.png ../../../app/build/cache/tilesets/rse/tileset/6004.png ../../../app/build/cache/tilesets/rse/tileset/6005.png ../../../app/build/cache/tilesets/rse/tileset/6006.png ../../../app/build/cache/tilesets/rse/tileset/6007.png ../../../app/build/cache/tilesets/rse/tileset/6008.png ../../../app/build/cache/tilesets/rse/tileset/6009.png ../../../app/build/cache/tilesets/rse/tileset/601.png ../../../app/build/cache/tilesets/rse/tileset/6010.png ../../../app/build/cache/tilesets/rse/tileset/6011.png ../../../app/build/cache/tilesets/rse/tileset/6012.png ../../../app/build/cache/tilesets/rse/tileset/6013.png ../../../app/build/cache/tilesets/rse/tileset/6014.png ../../../app/build/cache/tilesets/rse/tileset/6015.png ../../../app/build/cache/tilesets/rse/tileset/6016.png ../../../app/build/cache/tilesets/rse/tileset/6017.png ../../../app/build/cache/tilesets/rse/tileset/6018.png ../../../app/build/cache/tilesets/rse/tileset/6019.png ../../../app/build/cache/tilesets/rse/tileset/602.png ../../../app/build/cache/tilesets/rse/tileset/6020.png ../../../app/build/cache/tilesets/rse/tileset/6021.png ../../../app/build/cache/tilesets/rse/tileset/6022.png ../../../app/build/cache/tilesets/rse/tileset/6023.png ../../../app/build/cache/tilesets/rse/tileset/6024.png ../../../app/build/cache/tilesets/rse/tileset/6025.png ../../../app/build/cache/tilesets/rse/tileset/6026.png ../../../app/build/cache/tilesets/rse/tileset/6027.png ../../../app/build/cache/tilesets/rse/tileset/6028.png ../../../app/build/cache/tilesets/rse/tileset/6029.png ../../../app/build/cache/tilesets/rse/tileset/603.png ../../../app/build/cache/tilesets/rse/tileset/6030.png ../../../app/build/cache/tilesets/rse/tileset/6031.png ../../../app/build/cache/tilesets/rse/tileset/6032.png ../../../app/build/cache/tilesets/rse/tileset/6033.png ../../../app/build/cache/tilesets/rse/tileset/6034.png ../../../app/build/cache/tilesets/rse/tileset/6035.png ../../../app/build/cache/tilesets/rse/tileset/6036.png ../../../app/build/cache/tilesets/rse/tileset/6037.png ../../../app/build/cache/tilesets/rse/tileset/6038.png ../../../app/build/cache/tilesets/rse/tileset/6039.png ../../../app/build/cache/tilesets/rse/tileset/604.png ../../../app/build/cache/tilesets/rse/tileset/6040.png ../../../app/build/cache/tilesets/rse/tileset/6041.png ../../../app/build/cache/tilesets/rse/tileset/6042.png ../../../app/build/cache/tilesets/rse/tileset/6043.png ../../../app/build/cache/tilesets/rse/tileset/6044.png ../../../app/build/cache/tilesets/rse/tileset/6045.png ../../../app/build/cache/tilesets/rse/tileset/6046.png ../../../app/build/cache/tilesets/rse/tileset/6047.png ../../../app/build/cache/tilesets/rse/tileset/6048.png ../../../app/build/cache/tilesets/rse/tileset/6049.png ../../../app/build/cache/tilesets/rse/tileset/605.png ../../../app/build/cache/tilesets/rse/tileset/6050.png ../../../app/build/cache/tilesets/rse/tileset/6051.png ../../../app/build/cache/tilesets/rse/tileset/6052.png ../../../app/build/cache/tilesets/rse/tileset/6053.png ../../../app/build/cache/tilesets/rse/tileset/6054.png ../../../app/build/cache/tilesets/rse/tileset/6055.png ../../../app/build/cache/tilesets/rse/tileset/6056.png ../../../app/build/cache/tilesets/rse/tileset/6057.png ../../../app/build/cache/tilesets/rse/tileset/6058.png ../../../app/build/cache/tilesets/rse/tileset/6059.png ../../../app/build/cache/tilesets/rse/tileset/606.png ../../../app/build/cache/tilesets/rse/tileset/6060.png ../../../app/build/cache/tilesets/rse/tileset/6061.png ../../../app/build/cache/tilesets/rse/tileset/6062.png ../../../app/build/cache/tilesets/rse/tileset/6063.png ../../../app/build/cache/tilesets/rse/tileset/6064.png ../../../app/build/cache/tilesets/rse/tileset/6065.png ../../../app/build/cache/tilesets/rse/tileset/6066.png ../../../app/build/cache/tilesets/rse/tileset/6067.png ../../../app/build/cache/tilesets/rse/tileset/6068.png ../../../app/build/cache/tilesets/rse/tileset/6069.png ../../../app/build/cache/tilesets/rse/tileset/607.png ../../../app/build/cache/tilesets/rse/tileset/6070.png ../../../app/build/cache/tilesets/rse/tileset/6071.png ../../../app/build/cache/tilesets/rse/tileset/6072.png ../../../app/build/cache/tilesets/rse/tileset/6073.png ../../../app/build/cache/tilesets/rse/tileset/6074.png ../../../app/build/cache/tilesets/rse/tileset/6075.png ../../../app/build/cache/tilesets/rse/tileset/6076.png ../../../app/build/cache/tilesets/rse/tileset/6077.png ../../../app/build/cache/tilesets/rse/tileset/6078.png ../../../app/build/cache/tilesets/rse/tileset/6079.png ../../../app/build/cache/tilesets/rse/tileset/608.png ../../../app/build/cache/tilesets/rse/tileset/6080.png ../../../app/build/cache/tilesets/rse/tileset/6081.png ../../../app/build/cache/tilesets/rse/tileset/6082.png ../../../app/build/cache/tilesets/rse/tileset/6083.png ../../../app/build/cache/tilesets/rse/tileset/6084.png ../../../app/build/cache/tilesets/rse/tileset/6085.png ../../../app/build/cache/tilesets/rse/tileset/6086.png ../../../app/build/cache/tilesets/rse/tileset/6087.png ../../../app/build/cache/tilesets/rse/tileset/6088.png ../../../app/build/cache/tilesets/rse/tileset/6089.png ../../../app/build/cache/tilesets/rse/tileset/609.png ../../../app/build/cache/tilesets/rse/tileset/6090.png ../../../app/build/cache/tilesets/rse/tileset/6091.png ../../../app/build/cache/tilesets/rse/tileset/6092.png ../../../app/build/cache/tilesets/rse/tileset/6093.png ../../../app/build/cache/tilesets/rse/tileset/6094.png ../../../app/build/cache/tilesets/rse/tileset/6095.png ../../../app/build/cache/tilesets/rse/tileset/6096.png ../../../app/build/cache/tilesets/rse/tileset/6097.png ../../../app/build/cache/tilesets/rse/tileset/6098.png ../../../app/build/cache/tilesets/rse/tileset/6099.png ../../../app/build/cache/tilesets/rse/tileset/61.png ../../../app/build/cache/tilesets/rse/tileset/610.png ../../../app/build/cache/tilesets/rse/tileset/6100.png ../../../app/build/cache/tilesets/rse/tileset/6101.png ../../../app/build/cache/tilesets/rse/tileset/6102.png ../../../app/build/cache/tilesets/rse/tileset/6103.png ../../../app/build/cache/tilesets/rse/tileset/6104.png ../../../app/build/cache/tilesets/rse/tileset/6105.png ../../../app/build/cache/tilesets/rse/tileset/6106.png ../../../app/build/cache/tilesets/rse/tileset/6107.png ../../../app/build/cache/tilesets/rse/tileset/6108.png ../../../app/build/cache/tilesets/rse/tileset/6109.png ../../../app/build/cache/tilesets/rse/tileset/611.png ../../../app/build/cache/tilesets/rse/tileset/6110.png ../../../app/build/cache/tilesets/rse/tileset/6111.png ../../../app/build/cache/tilesets/rse/tileset/6112.png ../../../app/build/cache/tilesets/rse/tileset/6113.png ../../../app/build/cache/tilesets/rse/tileset/6114.png ../../../app/build/cache/tilesets/rse/tileset/6115.png ../../../app/build/cache/tilesets/rse/tileset/6116.png ../../../app/build/cache/tilesets/rse/tileset/6117.png ../../../app/build/cache/tilesets/rse/tileset/6118.png ../../../app/build/cache/tilesets/rse/tileset/6119.png ../../../app/build/cache/tilesets/rse/tileset/612.png ../../../app/build/cache/tilesets/rse/tileset/6120.png ../../../app/build/cache/tilesets/rse/tileset/6121.png ../../../app/build/cache/tilesets/rse/tileset/6122.png ../../../app/build/cache/tilesets/rse/tileset/6123.png ../../../app/build/cache/tilesets/rse/tileset/6124.png ../../../app/build/cache/tilesets/rse/tileset/6125.png ../../../app/build/cache/tilesets/rse/tileset/6126.png ../../../app/build/cache/tilesets/rse/tileset/6127.png ../../../app/build/cache/tilesets/rse/tileset/6128.png ../../../app/build/cache/tilesets/rse/tileset/6129.png ../../../app/build/cache/tilesets/rse/tileset/613.png ../../../app/build/cache/tilesets/rse/tileset/6130.png ../../../app/build/cache/tilesets/rse/tileset/6131.png ../../../app/build/cache/tilesets/rse/tileset/6132.png ../../../app/build/cache/tilesets/rse/tileset/6133.png ../../../app/build/cache/tilesets/rse/tileset/6134.png ../../../app/build/cache/tilesets/rse/tileset/6135.png ../../../app/build/cache/tilesets/rse/tileset/6136.png ../../../app/build/cache/tilesets/rse/tileset/6137.png ../../../app/build/cache/tilesets/rse/tileset/6138.png ../../../app/build/cache/tilesets/rse/tileset/6139.png ../../../app/build/cache/tilesets/rse/tileset/614.png ../../../app/build/cache/tilesets/rse/tileset/6140.png ../../../app/build/cache/tilesets/rse/tileset/6141.png ../../../app/build/cache/tilesets/rse/tileset/6142.png ../../../app/build/cache/tilesets/rse/tileset/6143.png ../../../app/build/cache/tilesets/rse/tileset/6144.png ../../../app/build/cache/tilesets/rse/tileset/6145.png ../../../app/build/cache/tilesets/rse/tileset/6146.png ../../../app/build/cache/tilesets/rse/tileset/6147.png ../../../app/build/cache/tilesets/rse/tileset/6148.png ../../../app/build/cache/tilesets/rse/tileset/6149.png ../../../app/build/cache/tilesets/rse/tileset/615.png ../../../app/build/cache/tilesets/rse/tileset/6150.png ../../../app/build/cache/tilesets/rse/tileset/6151.png ../../../app/build/cache/tilesets/rse/tileset/6152.png ../../../app/build/cache/tilesets/rse/tileset/6153.png ../../../app/build/cache/tilesets/rse/tileset/6154.png ../../../app/build/cache/tilesets/rse/tileset/6155.png ../../../app/build/cache/tilesets/rse/tileset/6156.png ../../../app/build/cache/tilesets/rse/tileset/6157.png ../../../app/build/cache/tilesets/rse/tileset/6158.png ../../../app/build/cache/tilesets/rse/tileset/6159.png ../../../app/build/cache/tilesets/rse/tileset/616.png ../../../app/build/cache/tilesets/rse/tileset/6160.png ../../../app/build/cache/tilesets/rse/tileset/6161.png ../../../app/build/cache/tilesets/rse/tileset/6162.png ../../../app/build/cache/tilesets/rse/tileset/6163.png ../../../app/build/cache/tilesets/rse/tileset/6164.png ../../../app/build/cache/tilesets/rse/tileset/6165.png ../../../app/build/cache/tilesets/rse/tileset/6166.png ../../../app/build/cache/tilesets/rse/tileset/6167.png ../../../app/build/cache/tilesets/rse/tileset/6168.png ../../../app/build/cache/tilesets/rse/tileset/6169.png ../../../app/build/cache/tilesets/rse/tileset/617.png ../../../app/build/cache/tilesets/rse/tileset/6170.png ../../../app/build/cache/tilesets/rse/tileset/6171.png ../../../app/build/cache/tilesets/rse/tileset/6172.png ../../../app/build/cache/tilesets/rse/tileset/6173.png ../../../app/build/cache/tilesets/rse/tileset/6174.png ../../../app/build/cache/tilesets/rse/tileset/6175.png ../../../app/build/cache/tilesets/rse/tileset/6176.png ../../../app/build/cache/tilesets/rse/tileset/6177.png ../../../app/build/cache/tilesets/rse/tileset/6178.png ../../../app/build/cache/tilesets/rse/tileset/6179.png ../../../app/build/cache/tilesets/rse/tileset/618.png ../../../app/build/cache/tilesets/rse/tileset/6180.png ../../../app/build/cache/tilesets/rse/tileset/6181.png ../../../app/build/cache/tilesets/rse/tileset/6182.png ../../../app/build/cache/tilesets/rse/tileset/6183.png ../../../app/build/cache/tilesets/rse/tileset/6184.png ../../../app/build/cache/tilesets/rse/tileset/6185.png ../../../app/build/cache/tilesets/rse/tileset/6186.png ../../../app/build/cache/tilesets/rse/tileset/6187.png ../../../app/build/cache/tilesets/rse/tileset/6188.png ../../../app/build/cache/tilesets/rse/tileset/6189.png ../../../app/build/cache/tilesets/rse/tileset/619.png ../../../app/build/cache/tilesets/rse/tileset/6190.png ../../../app/build/cache/tilesets/rse/tileset/6191.png ../../../app/build/cache/tilesets/rse/tileset/6192.png ../../../app/build/cache/tilesets/rse/tileset/6193.png ../../../app/build/cache/tilesets/rse/tileset/6194.png ../../../app/build/cache/tilesets/rse/tileset/6195.png ../../../app/build/cache/tilesets/rse/tileset/6196.png ../../../app/build/cache/tilesets/rse/tileset/6197.png ../../../app/build/cache/tilesets/rse/tileset/6198.png ../../../app/build/cache/tilesets/rse/tileset/6199.png ../../../app/build/cache/tilesets/rse/tileset/62.png ../../../app/build/cache/tilesets/rse/tileset/620.png ../../../app/build/cache/tilesets/rse/tileset/6200.png ../../../app/build/cache/tilesets/rse/tileset/6201.png ../../../app/build/cache/tilesets/rse/tileset/6202.png ../../../app/build/cache/tilesets/rse/tileset/6203.png ../../../app/build/cache/tilesets/rse/tileset/6204.png ../../../app/build/cache/tilesets/rse/tileset/6205.png ../../../app/build/cache/tilesets/rse/tileset/6206.png ../../../app/build/cache/tilesets/rse/tileset/6207.png ../../../app/build/cache/tilesets/rse/tileset/6208.png ../../../app/build/cache/tilesets/rse/tileset/6209.png ../../../app/build/cache/tilesets/rse/tileset/621.png ../../../app/build/cache/tilesets/rse/tileset/6210.png ../../../app/build/cache/tilesets/rse/tileset/6211.png ../../../app/build/cache/tilesets/rse/tileset/6212.png ../../../app/build/cache/tilesets/rse/tileset/6213.png ../../../app/build/cache/tilesets/rse/tileset/6214.png ../../../app/build/cache/tilesets/rse/tileset/6215.png ../../../app/build/cache/tilesets/rse/tileset/6216.png ../../../app/build/cache/tilesets/rse/tileset/6217.png ../../../app/build/cache/tilesets/rse/tileset/6218.png ../../../app/build/cache/tilesets/rse/tileset/6219.png ../../../app/build/cache/tilesets/rse/tileset/622.png ../../../app/build/cache/tilesets/rse/tileset/6220.png ../../../app/build/cache/tilesets/rse/tileset/6221.png ../../../app/build/cache/tilesets/rse/tileset/6222.png ../../../app/build/cache/tilesets/rse/tileset/6223.png ../../../app/build/cache/tilesets/rse/tileset/6224.png ../../../app/build/cache/tilesets/rse/tileset/6225.png ../../../app/build/cache/tilesets/rse/tileset/6226.png ../../../app/build/cache/tilesets/rse/tileset/6227.png ../../../app/build/cache/tilesets/rse/tileset/6228.png ../../../app/build/cache/tilesets/rse/tileset/6229.png ../../../app/build/cache/tilesets/rse/tileset/623.png ../../../app/build/cache/tilesets/rse/tileset/6230.png ../../../app/build/cache/tilesets/rse/tileset/6231.png ../../../app/build/cache/tilesets/rse/tileset/6232.png ../../../app/build/cache/tilesets/rse/tileset/6233.png ../../../app/build/cache/tilesets/rse/tileset/6234.png ../../../app/build/cache/tilesets/rse/tileset/6235.png ../../../app/build/cache/tilesets/rse/tileset/6236.png ../../../app/build/cache/tilesets/rse/tileset/6237.png ../../../app/build/cache/tilesets/rse/tileset/6238.png ../../../app/build/cache/tilesets/rse/tileset/6239.png ../../../app/build/cache/tilesets/rse/tileset/624.png ../../../app/build/cache/tilesets/rse/tileset/6240.png ../../../app/build/cache/tilesets/rse/tileset/6241.png ../../../app/build/cache/tilesets/rse/tileset/6242.png ../../../app/build/cache/tilesets/rse/tileset/6243.png ../../../app/build/cache/tilesets/rse/tileset/6244.png ../../../app/build/cache/tilesets/rse/tileset/6245.png ../../../app/build/cache/tilesets/rse/tileset/6246.png ../../../app/build/cache/tilesets/rse/tileset/6247.png ../../../app/build/cache/tilesets/rse/tileset/6248.png ../../../app/build/cache/tilesets/rse/tileset/6249.png ../../../app/build/cache/tilesets/rse/tileset/625.png ../../../app/build/cache/tilesets/rse/tileset/6250.png ../../../app/build/cache/tilesets/rse/tileset/6251.png ../../../app/build/cache/tilesets/rse/tileset/6252.png ../../../app/build/cache/tilesets/rse/tileset/6253.png ../../../app/build/cache/tilesets/rse/tileset/6254.png ../../../app/build/cache/tilesets/rse/tileset/6255.png ../../../app/build/cache/tilesets/rse/tileset/6256.png ../../../app/build/cache/tilesets/rse/tileset/6257.png ../../../app/build/cache/tilesets/rse/tileset/6258.png ../../../app/build/cache/tilesets/rse/tileset/6259.png ../../../app/build/cache/tilesets/rse/tileset/626.png ../../../app/build/cache/tilesets/rse/tileset/6260.png ../../../app/build/cache/tilesets/rse/tileset/6261.png ../../../app/build/cache/tilesets/rse/tileset/6262.png ../../../app/build/cache/tilesets/rse/tileset/6263.png ../../../app/build/cache/tilesets/rse/tileset/6264.png ../../../app/build/cache/tilesets/rse/tileset/6265.png ../../../app/build/cache/tilesets/rse/tileset/6266.png ../../../app/build/cache/tilesets/rse/tileset/6267.png ../../../app/build/cache/tilesets/rse/tileset/6268.png ../../../app/build/cache/tilesets/rse/tileset/6269.png ../../../app/build/cache/tilesets/rse/tileset/627.png ../../../app/build/cache/tilesets/rse/tileset/6270.png ../../../app/build/cache/tilesets/rse/tileset/6271.png ../../../app/build/cache/tilesets/rse/tileset/6272.png ../../../app/build/cache/tilesets/rse/tileset/6273.png ../../../app/build/cache/tilesets/rse/tileset/6274.png ../../../app/build/cache/tilesets/rse/tileset/6275.png ../../../app/build/cache/tilesets/rse/tileset/6276.png ../../../app/build/cache/tilesets/rse/tileset/6277.png ../../../app/build/cache/tilesets/rse/tileset/6278.png ../../../app/build/cache/tilesets/rse/tileset/6279.png ../../../app/build/cache/tilesets/rse/tileset/628.png ../../../app/build/cache/tilesets/rse/tileset/6280.png ../../../app/build/cache/tilesets/rse/tileset/6281.png ../../../app/build/cache/tilesets/rse/tileset/6282.png ../../../app/build/cache/tilesets/rse/tileset/6283.png ../../../app/build/cache/tilesets/rse/tileset/6284.png ../../../app/build/cache/tilesets/rse/tileset/6285.png ../../../app/build/cache/tilesets/rse/tileset/6286.png ../../../app/build/cache/tilesets/rse/tileset/6287.png ../../../app/build/cache/tilesets/rse/tileset/6288.png ../../../app/build/cache/tilesets/rse/tileset/6289.png ../../../app/build/cache/tilesets/rse/tileset/629.png ../../../app/build/cache/tilesets/rse/tileset/6290.png ../../../app/build/cache/tilesets/rse/tileset/6291.png ../../../app/build/cache/tilesets/rse/tileset/6292.png ../../../app/build/cache/tilesets/rse/tileset/6293.png ../../../app/build/cache/tilesets/rse/tileset/6294.png ../../../app/build/cache/tilesets/rse/tileset/6295.png ../../../app/build/cache/tilesets/rse/tileset/6296.png ../../../app/build/cache/tilesets/rse/tileset/6297.png ../../../app/build/cache/tilesets/rse/tileset/6298.png ../../../app/build/cache/tilesets/rse/tileset/6299.png ../../../app/build/cache/tilesets/rse/tileset/63.png ../../../app/build/cache/tilesets/rse/tileset/630.png ../../../app/build/cache/tilesets/rse/tileset/6300.png ../../../app/build/cache/tilesets/rse/tileset/6301.png ../../../app/build/cache/tilesets/rse/tileset/6302.png ../../../app/build/cache/tilesets/rse/tileset/6303.png ../../../app/build/cache/tilesets/rse/tileset/6304.png ../../../app/build/cache/tilesets/rse/tileset/6305.png ../../../app/build/cache/tilesets/rse/tileset/6306.png ../../../app/build/cache/tilesets/rse/tileset/6307.png ../../../app/build/cache/tilesets/rse/tileset/6308.png ../../../app/build/cache/tilesets/rse/tileset/6309.png ../../../app/build/cache/tilesets/rse/tileset/631.png ../../../app/build/cache/tilesets/rse/tileset/6310.png ../../../app/build/cache/tilesets/rse/tileset/6311.png ../../../app/build/cache/tilesets/rse/tileset/6312.png ../../../app/build/cache/tilesets/rse/tileset/6313.png ../../../app/build/cache/tilesets/rse/tileset/6314.png ../../../app/build/cache/tilesets/rse/tileset/6315.png ../../../app/build/cache/tilesets/rse/tileset/6316.png ../../../app/build/cache/tilesets/rse/tileset/6317.png ../../../app/build/cache/tilesets/rse/tileset/6318.png ../../../app/build/cache/tilesets/rse/tileset/6319.png ../../../app/build/cache/tilesets/rse/tileset/632.png ../../../app/build/cache/tilesets/rse/tileset/6320.png ../../../app/build/cache/tilesets/rse/tileset/6321.png ../../../app/build/cache/tilesets/rse/tileset/6322.png ../../../app/build/cache/tilesets/rse/tileset/6323.png ../../../app/build/cache/tilesets/rse/tileset/6324.png ../../../app/build/cache/tilesets/rse/tileset/6325.png ../../../app/build/cache/tilesets/rse/tileset/6326.png ../../../app/build/cache/tilesets/rse/tileset/6327.png ../../../app/build/cache/tilesets/rse/tileset/633.png ../../../app/build/cache/tilesets/rse/tileset/634.png ../../../app/build/cache/tilesets/rse/tileset/635.png ../../../app/build/cache/tilesets/rse/tileset/636.png ../../../app/build/cache/tilesets/rse/tileset/637.png ../../../app/build/cache/tilesets/rse/tileset/638.png ../../../app/build/cache/tilesets/rse/tileset/639.png ../../../app/build/cache/tilesets/rse/tileset/64.png ../../../app/build/cache/tilesets/rse/tileset/640.png ../../../app/build/cache/tilesets/rse/tileset/641.png ../../../app/build/cache/tilesets/rse/tileset/642.png ../../../app/build/cache/tilesets/rse/tileset/643.png ../../../app/build/cache/tilesets/rse/tileset/644.png ../../../app/build/cache/tilesets/rse/tileset/645.png ../../../app/build/cache/tilesets/rse/tileset/646.png ../../../app/build/cache/tilesets/rse/tileset/647.png ../../../app/build/cache/tilesets/rse/tileset/648.png ../../../app/build/cache/tilesets/rse/tileset/649.png ../../../app/build/cache/tilesets/rse/tileset/65.png ../../../app/build/cache/tilesets/rse/tileset/650.png ../../../app/build/cache/tilesets/rse/tileset/651.png ../../../app/build/cache/tilesets/rse/tileset/652.png ../../../app/build/cache/tilesets/rse/tileset/653.png ../../../app/build/cache/tilesets/rse/tileset/654.png ../../../app/build/cache/tilesets/rse/tileset/655.png ../../../app/build/cache/tilesets/rse/tileset/656.png ../../../app/build/cache/tilesets/rse/tileset/657.png ../../../app/build/cache/tilesets/rse/tileset/658.png ../../../app/build/cache/tilesets/rse/tileset/659.png ../../../app/build/cache/tilesets/rse/tileset/66.png ../../../app/build/cache/tilesets/rse/tileset/660.png ../../../app/build/cache/tilesets/rse/tileset/661.png ../../../app/build/cache/tilesets/rse/tileset/662.png ../../../app/build/cache/tilesets/rse/tileset/663.png ../../../app/build/cache/tilesets/rse/tileset/664.png ../../../app/build/cache/tilesets/rse/tileset/665.png ../../../app/build/cache/tilesets/rse/tileset/666.png ../../../app/build/cache/tilesets/rse/tileset/667.png ../../../app/build/cache/tilesets/rse/tileset/668.png ../../../app/build/cache/tilesets/rse/tileset/669.png ../../../app/build/cache/tilesets/rse/tileset/67.png ../../../app/build/cache/tilesets/rse/tileset/670.png ../../../app/build/cache/tilesets/rse/tileset/671.png ../../../app/build/cache/tilesets/rse/tileset/672.png ../../../app/build/cache/tilesets/rse/tileset/673.png ../../../app/build/cache/tilesets/rse/tileset/674.png ../../../app/build/cache/tilesets/rse/tileset/675.png ../../../app/build/cache/tilesets/rse/tileset/676.png ../../../app/build/cache/tilesets/rse/tileset/677.png ../../../app/build/cache/tilesets/rse/tileset/678.png ../../../app/build/cache/tilesets/rse/tileset/679.png ../../../app/build/cache/tilesets/rse/tileset/68.png ../../../app/build/cache/tilesets/rse/tileset/680.png ../../../app/build/cache/tilesets/rse/tileset/681.png ../../../app/build/cache/tilesets/rse/tileset/682.png ../../../app/build/cache/tilesets/rse/tileset/683.png ../../../app/build/cache/tilesets/rse/tileset/684.png ../../../app/build/cache/tilesets/rse/tileset/685.png ../../../app/build/cache/tilesets/rse/tileset/686.png ../../../app/build/cache/tilesets/rse/tileset/687.png ../../../app/build/cache/tilesets/rse/tileset/688.png ../../../app/build/cache/tilesets/rse/tileset/689.png ../../../app/build/cache/tilesets/rse/tileset/69.png ../../../app/build/cache/tilesets/rse/tileset/690.png ../../../app/build/cache/tilesets/rse/tileset/691.png ../../../app/build/cache/tilesets/rse/tileset/692.png ../../../app/build/cache/tilesets/rse/tileset/693.png ../../../app/build/cache/tilesets/rse/tileset/694.png ../../../app/build/cache/tilesets/rse/tileset/695.png ../../../app/build/cache/tilesets/rse/tileset/696.png ../../../app/build/cache/tilesets/rse/tileset/697.png ../../../app/build/cache/tilesets/rse/tileset/698.png ../../../app/build/cache/tilesets/rse/tileset/699.png ../../../app/build/cache/tilesets/rse/tileset/7.png ../../../app/build/cache/tilesets/rse/tileset/70.png ../../../app/build/cache/tilesets/rse/tileset/700.png ../../../app/build/cache/tilesets/rse/tileset/701.png ../../../app/build/cache/tilesets/rse/tileset/702.png ../../../app/build/cache/tilesets/rse/tileset/703.png ../../../app/build/cache/tilesets/rse/tileset/704.png ../../../app/build/cache/tilesets/rse/tileset/705.png ../../../app/build/cache/tilesets/rse/tileset/706.png ../../../app/build/cache/tilesets/rse/tileset/707.png ../../../app/build/cache/tilesets/rse/tileset/708.png ../../../app/build/cache/tilesets/rse/tileset/709.png ../../../app/build/cache/tilesets/rse/tileset/71.png ../../../app/build/cache/tilesets/rse/tileset/710.png ../../../app/build/cache/tilesets/rse/tileset/711.png ../../../app/build/cache/tilesets/rse/tileset/712.png ../../../app/build/cache/tilesets/rse/tileset/713.png ../../../app/build/cache/tilesets/rse/tileset/714.png ../../../app/build/cache/tilesets/rse/tileset/715.png ../../../app/build/cache/tilesets/rse/tileset/716.png ../../../app/build/cache/tilesets/rse/tileset/717.png ../../../app/build/cache/tilesets/rse/tileset/718.png ../../../app/build/cache/tilesets/rse/tileset/719.png ../../../app/build/cache/tilesets/rse/tileset/72.png ../../../app/build/cache/tilesets/rse/tileset/720.png ../../../app/build/cache/tilesets/rse/tileset/721.png ../../../app/build/cache/tilesets/rse/tileset/722.png ../../../app/build/cache/tilesets/rse/tileset/723.png ../../../app/build/cache/tilesets/rse/tileset/724.png ../../../app/build/cache/tilesets/rse/tileset/725.png ../../../app/build/cache/tilesets/rse/tileset/726.png ../../../app/build/cache/tilesets/rse/tileset/727.png ../../../app/build/cache/tilesets/rse/tileset/728.png ../../../app/build/cache/tilesets/rse/tileset/729.png ../../../app/build/cache/tilesets/rse/tileset/73.png ../../../app/build/cache/tilesets/rse/tileset/730.png ../../../app/build/cache/tilesets/rse/tileset/731.png ../../../app/build/cache/tilesets/rse/tileset/732.png ../../../app/build/cache/tilesets/rse/tileset/733.png ../../../app/build/cache/tilesets/rse/tileset/734.png ../../../app/build/cache/tilesets/rse/tileset/735.png ../../../app/build/cache/tilesets/rse/tileset/736.png ../../../app/build/cache/tilesets/rse/tileset/737.png ../../../app/build/cache/tilesets/rse/tileset/738.png ../../../app/build/cache/tilesets/rse/tileset/739.png ../../../app/build/cache/tilesets/rse/tileset/74.png ../../../app/build/cache/tilesets/rse/tileset/740.png ../../../app/build/cache/tilesets/rse/tileset/741.png ../../../app/build/cache/tilesets/rse/tileset/742.png ../../../app/build/cache/tilesets/rse/tileset/743.png ../../../app/build/cache/tilesets/rse/tileset/744.png ../../../app/build/cache/tilesets/rse/tileset/745.png ../../../app/build/cache/tilesets/rse/tileset/746.png ../../../app/build/cache/tilesets/rse/tileset/747.png ../../../app/build/cache/tilesets/rse/tileset/748.png ../../../app/build/cache/tilesets/rse/tileset/749.png ../../../app/build/cache/tilesets/rse/tileset/75.png ../../../app/build/cache/tilesets/rse/tileset/750.png ../../../app/build/cache/tilesets/rse/tileset/751.png ../../../app/build/cache/tilesets/rse/tileset/752.png ../../../app/build/cache/tilesets/rse/tileset/753.png ../../../app/build/cache/tilesets/rse/tileset/754.png ../../../app/build/cache/tilesets/rse/tileset/755.png ../../../app/build/cache/tilesets/rse/tileset/756.png ../../../app/build/cache/tilesets/rse/tileset/757.png ../../../app/build/cache/tilesets/rse/tileset/758.png ../../../app/build/cache/tilesets/rse/tileset/759.png ../../../app/build/cache/tilesets/rse/tileset/76.png ../../../app/build/cache/tilesets/rse/tileset/760.png ../../../app/build/cache/tilesets/rse/tileset/761.png ../../../app/build/cache/tilesets/rse/tileset/762.png ../../../app/build/cache/tilesets/rse/tileset/763.png ../../../app/build/cache/tilesets/rse/tileset/764.png ../../../app/build/cache/tilesets/rse/tileset/765.png ../../../app/build/cache/tilesets/rse/tileset/766.png ../../../app/build/cache/tilesets/rse/tileset/767.png ../../../app/build/cache/tilesets/rse/tileset/768.png ../../../app/build/cache/tilesets/rse/tileset/769.png ../../../app/build/cache/tilesets/rse/tileset/77.png ../../../app/build/cache/tilesets/rse/tileset/770.png ../../../app/build/cache/tilesets/rse/tileset/771.png ../../../app/build/cache/tilesets/rse/tileset/772.png ../../../app/build/cache/tilesets/rse/tileset/773.png ../../../app/build/cache/tilesets/rse/tileset/774.png ../../../app/build/cache/tilesets/rse/tileset/775.png ../../../app/build/cache/tilesets/rse/tileset/776.png ../../../app/build/cache/tilesets/rse/tileset/777.png ../../../app/build/cache/tilesets/rse/tileset/778.png ../../../app/build/cache/tilesets/rse/tileset/779.png ../../../app/build/cache/tilesets/rse/tileset/78.png ../../../app/build/cache/tilesets/rse/tileset/780.png ../../../app/build/cache/tilesets/rse/tileset/781.png ../../../app/build/cache/tilesets/rse/tileset/782.png ../../../app/build/cache/tilesets/rse/tileset/783.png ../../../app/build/cache/tilesets/rse/tileset/784.png ../../../app/build/cache/tilesets/rse/tileset/785.png ../../../app/build/cache/tilesets/rse/tileset/786.png ../../../app/build/cache/tilesets/rse/tileset/787.png ../../../app/build/cache/tilesets/rse/tileset/788.png ../../../app/build/cache/tilesets/rse/tileset/789.png ../../../app/build/cache/tilesets/rse/tileset/79.png ../../../app/build/cache/tilesets/rse/tileset/790.png ../../../app/build/cache/tilesets/rse/tileset/791.png ../../../app/build/cache/tilesets/rse/tileset/792.png ../../../app/build/cache/tilesets/rse/tileset/793.png ../../../app/build/cache/tilesets/rse/tileset/794.png ../../../app/build/cache/tilesets/rse/tileset/795.png ../../../app/build/cache/tilesets/rse/tileset/796.png ../../../app/build/cache/tilesets/rse/tileset/797.png ../../../app/build/cache/tilesets/rse/tileset/798.png ../../../app/build/cache/tilesets/rse/tileset/799.png ../../../app/build/cache/tilesets/rse/tileset/8.png ../../../app/build/cache/tilesets/rse/tileset/80.png ../../../app/build/cache/tilesets/rse/tileset/800.png ../../../app/build/cache/tilesets/rse/tileset/801.png ../../../app/build/cache/tilesets/rse/tileset/802.png ../../../app/build/cache/tilesets/rse/tileset/803.png ../../../app/build/cache/tilesets/rse/tileset/804.png ../../../app/build/cache/tilesets/rse/tileset/805.png ../../../app/build/cache/tilesets/rse/tileset/806.png ../../../app/build/cache/tilesets/rse/tileset/807.png ../../../app/build/cache/tilesets/rse/tileset/808.png ../../../app/build/cache/tilesets/rse/tileset/809.png ../../../app/build/cache/tilesets/rse/tileset/81.png ../../../app/build/cache/tilesets/rse/tileset/810.png ../../../app/build/cache/tilesets/rse/tileset/811.png ../../../app/build/cache/tilesets/rse/tileset/812.png ../../../app/build/cache/tilesets/rse/tileset/813.png ../../../app/build/cache/tilesets/rse/tileset/814.png ../../../app/build/cache/tilesets/rse/tileset/815.png ../../../app/build/cache/tilesets/rse/tileset/816.png ../../../app/build/cache/tilesets/rse/tileset/817.png ../../../app/build/cache/tilesets/rse/tileset/818.png ../../../app/build/cache/tilesets/rse/tileset/819.png ../../../app/build/cache/tilesets/rse/tileset/82.png ../../../app/build/cache/tilesets/rse/tileset/820.png ../../../app/build/cache/tilesets/rse/tileset/821.png ../../../app/build/cache/tilesets/rse/tileset/822.png ../../../app/build/cache/tilesets/rse/tileset/823.png ../../../app/build/cache/tilesets/rse/tileset/824.png ../../../app/build/cache/tilesets/rse/tileset/825.png ../../../app/build/cache/tilesets/rse/tileset/826.png ../../../app/build/cache/tilesets/rse/tileset/827.png ../../../app/build/cache/tilesets/rse/tileset/828.png ../../../app/build/cache/tilesets/rse/tileset/829.png ../../../app/build/cache/tilesets/rse/tileset/83.png ../../../app/build/cache/tilesets/rse/tileset/830.png ../../../app/build/cache/tilesets/rse/tileset/831.png ../../../app/build/cache/tilesets/rse/tileset/832.png ../../../app/build/cache/tilesets/rse/tileset/833.png ../../../app/build/cache/tilesets/rse/tileset/834.png ../../../app/build/cache/tilesets/rse/tileset/835.png ../../../app/build/cache/tilesets/rse/tileset/836.png ../../../app/build/cache/tilesets/rse/tileset/837.png ../../../app/build/cache/tilesets/rse/tileset/838.png ../../../app/build/cache/tilesets/rse/tileset/839.png ../../../app/build/cache/tilesets/rse/tileset/84.png ../../../app/build/cache/tilesets/rse/tileset/840.png ../../../app/build/cache/tilesets/rse/tileset/841.png ../../../app/build/cache/tilesets/rse/tileset/842.png ../../../app/build/cache/tilesets/rse/tileset/843.png ../../../app/build/cache/tilesets/rse/tileset/844.png ../../../app/build/cache/tilesets/rse/tileset/845.png ../../../app/build/cache/tilesets/rse/tileset/846.png ../../../app/build/cache/tilesets/rse/tileset/847.png ../../../app/build/cache/tilesets/rse/tileset/848.png ../../../app/build/cache/tilesets/rse/tileset/849.png ../../../app/build/cache/tilesets/rse/tileset/85.png ../../../app/build/cache/tilesets/rse/tileset/850.png ../../../app/build/cache/tilesets/rse/tileset/851.png ../../../app/build/cache/tilesets/rse/tileset/852.png ../../../app/build/cache/tilesets/rse/tileset/853.png ../../../app/build/cache/tilesets/rse/tileset/854.png ../../../app/build/cache/tilesets/rse/tileset/855.png ../../../app/build/cache/tilesets/rse/tileset/856.png ../../../app/build/cache/tilesets/rse/tileset/857.png ../../../app/build/cache/tilesets/rse/tileset/858.png ../../../app/build/cache/tilesets/rse/tileset/859.png ../../../app/build/cache/tilesets/rse/tileset/86.png ../../../app/build/cache/tilesets/rse/tileset/860.png ../../../app/build/cache/tilesets/rse/tileset/861.png ../../../app/build/cache/tilesets/rse/tileset/862.png ../../../app/build/cache/tilesets/rse/tileset/863.png ../../../app/build/cache/tilesets/rse/tileset/864.png ../../../app/build/cache/tilesets/rse/tileset/865.png ../../../app/build/cache/tilesets/rse/tileset/866.png ../../../app/build/cache/tilesets/rse/tileset/867.png ../../../app/build/cache/tilesets/rse/tileset/868.png ../../../app/build/cache/tilesets/rse/tileset/869.png ../../../app/build/cache/tilesets/rse/tileset/87.png ../../../app/build/cache/tilesets/rse/tileset/870.png ../../../app/build/cache/tilesets/rse/tileset/871.png ../../../app/build/cache/tilesets/rse/tileset/872.png ../../../app/build/cache/tilesets/rse/tileset/873.png ../../../app/build/cache/tilesets/rse/tileset/874.png ../../../app/build/cache/tilesets/rse/tileset/875.png ../../../app/build/cache/tilesets/rse/tileset/876.png ../../../app/build/cache/tilesets/rse/tileset/877.png ../../../app/build/cache/tilesets/rse/tileset/878.png ../../../app/build/cache/tilesets/rse/tileset/879.png ../../../app/build/cache/tilesets/rse/tileset/88.png ../../../app/build/cache/tilesets/rse/tileset/880.png ../../../app/build/cache/tilesets/rse/tileset/881.png ../../../app/build/cache/tilesets/rse/tileset/882.png ../../../app/build/cache/tilesets/rse/tileset/883.png ../../../app/build/cache/tilesets/rse/tileset/884.png ../../../app/build/cache/tilesets/rse/tileset/885.png ../../../app/build/cache/tilesets/rse/tileset/886.png ../../../app/build/cache/tilesets/rse/tileset/887.png ../../../app/build/cache/tilesets/rse/tileset/888.png ../../../app/build/cache/tilesets/rse/tileset/889.png ../../../app/build/cache/tilesets/rse/tileset/89.png ../../../app/build/cache/tilesets/rse/tileset/890.png ../../../app/build/cache/tilesets/rse/tileset/891.png ../../../app/build/cache/tilesets/rse/tileset/892.png ../../../app/build/cache/tilesets/rse/tileset/893.png ../../../app/build/cache/tilesets/rse/tileset/894.png ../../../app/build/cache/tilesets/rse/tileset/895.png ../../../app/build/cache/tilesets/rse/tileset/896.png ../../../app/build/cache/tilesets/rse/tileset/897.png ../../../app/build/cache/tilesets/rse/tileset/898.png ../../../app/build/cache/tilesets/rse/tileset/899.png ../../../app/build/cache/tilesets/rse/tileset/9.png ../../../app/build/cache/tilesets/rse/tileset/90.png ../../../app/build/cache/tilesets/rse/tileset/900.png ../../../app/build/cache/tilesets/rse/tileset/901.png ../../../app/build/cache/tilesets/rse/tileset/902.png ../../../app/build/cache/tilesets/rse/tileset/903.png ../../../app/build/cache/tilesets/rse/tileset/904.png ../../../app/build/cache/tilesets/rse/tileset/905.png ../../../app/build/cache/tilesets/rse/tileset/906.png ../../../app/build/cache/tilesets/rse/tileset/907.png ../../../app/build/cache/tilesets/rse/tileset/908.png ../../../app/build/cache/tilesets/rse/tileset/909.png ../../../app/build/cache/tilesets/rse/tileset/91.png ../../../app/build/cache/tilesets/rse/tileset/910.png ../../../app/build/cache/tilesets/rse/tileset/911.png ../../../app/build/cache/tilesets/rse/tileset/912.png ../../../app/build/cache/tilesets/rse/tileset/913.png ../../../app/build/cache/tilesets/rse/tileset/914.png ../../../app/build/cache/tilesets/rse/tileset/915.png ../../../app/build/cache/tilesets/rse/tileset/916.png ../../../app/build/cache/tilesets/rse/tileset/917.png ../../../app/build/cache/tilesets/rse/tileset/918.png ../../../app/build/cache/tilesets/rse/tileset/919.png ../../../app/build/cache/tilesets/rse/tileset/92.png ../../../app/build/cache/tilesets/rse/tileset/920.png ../../../app/build/cache/tilesets/rse/tileset/921.png ../../../app/build/cache/tilesets/rse/tileset/922.png ../../../app/build/cache/tilesets/rse/tileset/923.png ../../../app/build/cache/tilesets/rse/tileset/924.png ../../../app/build/cache/tilesets/rse/tileset/925.png ../../../app/build/cache/tilesets/rse/tileset/926.png ../../../app/build/cache/tilesets/rse/tileset/927.png ../../../app/build/cache/tilesets/rse/tileset/928.png ../../../app/build/cache/tilesets/rse/tileset/929.png ../../../app/build/cache/tilesets/rse/tileset/93.png ../../../app/build/cache/tilesets/rse/tileset/930.png ../../../app/build/cache/tilesets/rse/tileset/931.png ../../../app/build/cache/tilesets/rse/tileset/932.png ../../../app/build/cache/tilesets/rse/tileset/933.png ../../../app/build/cache/tilesets/rse/tileset/934.png ../../../app/build/cache/tilesets/rse/tileset/935.png ../../../app/build/cache/tilesets/rse/tileset/936.png ../../../app/build/cache/tilesets/rse/tileset/937.png ../../../app/build/cache/tilesets/rse/tileset/938.png ../../../app/build/cache/tilesets/rse/tileset/939.png ../../../app/build/cache/tilesets/rse/tileset/94.png ../../../app/build/cache/tilesets/rse/tileset/940.png ../../../app/build/cache/tilesets/rse/tileset/941.png ../../../app/build/cache/tilesets/rse/tileset/942.png ../../../app/build/cache/tilesets/rse/tileset/943.png ../../../app/build/cache/tilesets/rse/tileset/944.png ../../../app/build/cache/tilesets/rse/tileset/945.png ../../../app/build/cache/tilesets/rse/tileset/946.png ../../../app/build/cache/tilesets/rse/tileset/947.png ../../../app/build/cache/tilesets/rse/tileset/948.png ../../../app/build/cache/tilesets/rse/tileset/949.png ../../../app/build/cache/tilesets/rse/tileset/95.png ../../../app/build/cache/tilesets/rse/tileset/950.png ../../../app/build/cache/tilesets/rse/tileset/951.png ../../../app/build/cache/tilesets/rse/tileset/952.png ../../../app/build/cache/tilesets/rse/tileset/953.png ../../../app/build/cache/tilesets/rse/tileset/954.png ../../../app/build/cache/tilesets/rse/tileset/955.png ../../../app/build/cache/tilesets/rse/tileset/956.png ../../../app/build/cache/tilesets/rse/tileset/957.png ../../../app/build/cache/tilesets/rse/tileset/958.png ../../../app/build/cache/tilesets/rse/tileset/959.png ../../../app/build/cache/tilesets/rse/tileset/96.png ../../../app/build/cache/tilesets/rse/tileset/960.png ../../../app/build/cache/tilesets/rse/tileset/961.png ../../../app/build/cache/tilesets/rse/tileset/962.png ../../../app/build/cache/tilesets/rse/tileset/963.png ../../../app/build/cache/tilesets/rse/tileset/964.png ../../../app/build/cache/tilesets/rse/tileset/965.png ../../../app/build/cache/tilesets/rse/tileset/966.png ../../../app/build/cache/tilesets/rse/tileset/967.png ../../../app/build/cache/tilesets/rse/tileset/968.png ../../../app/build/cache/tilesets/rse/tileset/969.png ../../../app/build/cache/tilesets/rse/tileset/97.png ../../../app/build/cache/tilesets/rse/tileset/970.png ../../../app/build/cache/tilesets/rse/tileset/971.png ../../../app/build/cache/tilesets/rse/tileset/972.png ../../../app/build/cache/tilesets/rse/tileset/973.png ../../../app/build/cache/tilesets/rse/tileset/974.png ../../../app/build/cache/tilesets/rse/tileset/975.png ../../../app/build/cache/tilesets/rse/tileset/976.png ../../../app/build/cache/tilesets/rse/tileset/977.png ../../../app/build/cache/tilesets/rse/tileset/978.png ../../../app/build/cache/tilesets/rse/tileset/979.png ../../../app/build/cache/tilesets/rse/tileset/98.png ../../../app/build/cache/tilesets/rse/tileset/980.png ../../../app/build/cache/tilesets/rse/tileset/981.png ../../../app/build/cache/tilesets/rse/tileset/982.png ../../../app/build/cache/tilesets/rse/tileset/983.png ../../../app/build/cache/tilesets/rse/tileset/984.png ../../../app/build/cache/tilesets/rse/tileset/985.png ../../../app/build/cache/tilesets/rse/tileset/986.png ../../../app/build/cache/tilesets/rse/tileset/987.png ../../../app/build/cache/tilesets/rse/tileset/988.png ../../../app/build/cache/tilesets/rse/tileset/989.png ../../../app/build/cache/tilesets/rse/tileset/99.png ../../../app/build/cache/tilesets/rse/tileset/990.png ../../../app/build/cache/tilesets/rse/tileset/991.png ../../../app/build/cache/tilesets/rse/tileset/992.png ../../../app/build/cache/tilesets/rse/tileset/993.png ../../../app/build/cache/tilesets/rse/tileset/994.png ../../../app/build/cache/tilesets/rse/tileset/995.png ../../../app/build/cache/tilesets/rse/tileset/996.png ../../../app/build/cache/tilesets/rse/tileset/997.png ../../../app/build/cache/tilesets/rse/tileset/998.png ../../../app/build/cache/tilesets/rse/tileset/999.png pivotPoint 0,0 spriteScale 1 scale9Enabled scale9Borders 4,4,8,8 scale9Paddings 4,4,8,8 scale9FromFile ../../../app/build/cache/tilesets/rse/tileset/379.png pivotPoint 0,0 spriteScale 1 scale9Enabled scale9Borders 0,0,0,0 scale9Paddings 0,0,0,0 scale9FromFile fileList ../../../app/build/cache/tilesets/rse/tileset ignoreFileList replaceList ignoredWarnings commonDivisorX 1 commonDivisorY 1 packNormalMaps autodetectNormalMaps normalMapFilter normalMapSuffix normalMapSheetFileName exporterProperties css::media-query-2x value (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) css::sprite-prefix value ================================================ FILE: copyrighted/textures/rse/tileset.tsx ================================================ ================================================ FILE: deno.json ================================================ { "meta":{ "author": "lowlighter (Simon Lecoq)", "repository":"https://github.com/lowlighter/gracidea", "license": "https://github.com/lowlighter/gracidea/blob/main/LICENSE" }, "velociraptor":{ "unstable": true, "quiet": true, "allow": { "net": ["deno.land"] }, "importMap": "deno.json", "scripts": { "fmt": { "desc": "> format code", "cmd":"deno fmt" }, "lint": { "desc": "> lint code", "cmd":"deno lint" }, "test": { "desc": "> run tests", "allow": { "read": "." }, "cmd": "deno test app/tests" }, "start": { "desc": "> start a local server (require a build first)", "allow": { "read": ".", "net": "0.0.0.0:4507" }, "cmd":"deno run https://deno.land/std/http/file_server.ts app/public" }, "build": { "desc": "> build app data, textures, client and assets", "allow": { "read": ".", "run": ["git", "npm", "tar", "which", "wsl"], "write": ["app/build/cache", "app/public"] }, "cmd": "deno run app/build/mod.ts" }, "dev-app":{ "desc": "> rebuild app client and assets", "cmd":"vr build --app --assets" }, "dev-map":{ "desc": "> rebuild app diff", "cmd":"vr build --diff" } } }, "imports": { "std/": "https://deno.land/std@0.119.0/", "x/": "https://deno.land/x/", "y/": "https://cdn.skypack.dev/", "app/": "./app/", "app/client/": "./app/client/js/app/", "app/cache/pixi.js": "./app/build/cache/pixi.js/package/dist/browser/pixi.min.mjs" }, "lint": { "files": { "include": ["app/"], "exclude": ["app/build/cache/", "app/public/"] }, "rules": { "exclude": ["require-await", "no-async-promise-executor"] } }, "fmt": { "files": { "include": ["app/"], "exclude": ["app/build/cache/", "app/public/"] }, "options": { "lineWidth": 200 } } } ================================================ FILE: maps/all/worldmap.tmx ================================================ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,110,110,110,110,110,110,110,110,110,110,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,141,142,142,142,142,142,142,142,142,142,142,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,141,142,142,142,142,142,142,142,142,142,142,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,141,142,142,142,142,142,142,142,142,142,142,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,141,142,142,142,142,142,142,142,142,142,142,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,141,142,142,142,142,142,142,142,142,142,142,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,141,142,142,142,142,142,142,142,142,142,142,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,141,142,142,142,142,142,142,142,142,142,142,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,141,142,142,142,142,142,142,142,142,142,142,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,141,142,142,142,142,142,142,142,142,142,142,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,141,142,142,142,142,142,142,142,142,142,142,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,173,174,174,174,174,174,108,142,142,142,142,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,141,142,142,142,142,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,141,142,142,142,142,138,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,174,174,174,174,175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,0,0,0,0,0,1,2,2,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,33,0,0,0,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,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,33,0,0,0,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,1,2,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,33,0,0,0,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,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,33,0,0,0,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,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,33,0,0,0,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,33,0,0,0,0,0,0,0,0,0,0,8,2,2,2,2,2,38,0,0,0,0,0,33,0,0,0,65,2,2,2,2,2,5,2,2,2,2,2,2,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,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,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,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,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,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,36,2,2,2,2,2,2,2,3,0,0,0,0,0,0,0,0,33,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,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,33,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,33,0,0,0,0,0,33,0,0,0,0,0,0,0,0,0,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,33,0,0,0,0,0,0,0,65,2,2,2,2,2,2,2,2,37,2,2,2,2,2,69,2,2,2,2,2,2,2,2,2,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,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,33,0,0,0,0,0,0,0,1,2,2,2,2,2,2,2,2,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,33,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,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,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,36,2,2,2,2,2,2,2,38,0,0,0,0,0,0,0,0,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,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,42,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,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,2,2,67,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,42,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,36,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,42,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,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,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,42,0,0,0,0,0,0,0,33,0,0,0,0,0,0,0,0,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,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,42,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,67,0,0,0,0,0,0,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,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,74,11,11,11,11,12,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,65,11,11,11,11,11,11,11,11,11,11,11,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,11,2,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,11,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,8,11,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,74,11,2,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,8,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,0,0,0,0,0,0,0,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,33,0,0,0,0,0,0,0,0,0,0,100,72,67,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65,3,0,0,0,0,0,0,0,0,0,164,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,11,11,78,11,11,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,19,20,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,21,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83,20,56,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,20,21,0,0,0,0,0,0,26,20,56,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,83,20,20,20,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,20,20,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,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,25,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,55,20,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,193,194,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,193,194,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,225,226,227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,226,227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,257,258,259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,257,258,259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,193,194,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,289,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,225,226,227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,321,322,323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,257,258,259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,353,354,355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,199,200,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,289,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,231,232,233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,321,322,323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,263,264,265,0,0,0,0,0,193,194,195,0,0,0,0,0,0,196,197,198,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,353,354,355,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,225,226,227,0,0,0,0,0,0,228,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,257,258,259,0,0,0,0,0,0,260,261,262,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,193,194,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,226,227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,257,258,259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,199,200,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,193,194,195,0,0,0,193,194,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,231,232,233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,225,226,227,0,0,0,225,226,227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,263,264,265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,257,258,259,0,0,0,257,258,259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,193,194,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,226,227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,199,200,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,257,258,259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,193,194,195,0,0,0,0,0,0,231,232,233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,225,226,227,0,0,0,0,0,0,263,264,265,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,193,194,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,257,258,259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,226,227,0,0,0,0,0,193,194,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,257,258,259,0,0,0,0,0,225,226,227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,257,258,259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,193,194,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,193,194,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,225,226,227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,226,227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,257,258,259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,257,258,259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,193,194,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,226,227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,257,258,259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,193,194,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,226,227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,257,258,259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,193,194,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,226,227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,193,194,195,0,0,0,0,0,0,0,0,0,257,258,259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,225,226,227,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,257,258,259,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,214,215,216,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,246,247,248,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,278,279,280,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,243,244,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,211,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,243,244,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,243,244,245,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,0,0,0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,211,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,243,244,245,0,0,0,0,0,0,211,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,243,244,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,211,212,213,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,243,244,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,211,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,243,244,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,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,385,0,0,0,0,0,0,0,0,0,385,0,0,0,0,388,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,385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,420,421,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,450,451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,385,0,0,0,0,0,0,0,0,0,385,0,0,0,0,0,0,0,0,0,0,385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,385,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,468,469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,0,403,0,0,0,0,0,0,403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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: maps/gracidea.world ================================================ { "maps": [ { "fileName": "hoenn/hoenn-route-101.tmx", "height": 512, "width": 512, "x": 0, "y": -1344 }, { "fileName": "hoenn/oldale-town.tmx", "height": 512, "width": 512, "x": 0, "y": -1664 }, { "fileName": "hoenn/hoenn-route-102.tmx", "height": 512, "width": 1024, "x": -800, "y": -1696 }, { "fileName": "hoenn/hoenn-route-103.tmx", "height": 512, "width": 1280, "x": 0, "y": -2016 }, { "fileName": "hoenn/petalburg-city.tmx", "height": 512, "width": 512, "x": -1280, "y": -1856 }, { "fileName": "hoenn/hoenn-route-104.tmx", "height": 1280, "width": 768, "x": -1920, "y": -2656 }, { "fileName": "hoenn/hoenn-route-105.tmx", "height": 1280, "width": 768, "x": -1920, "y": -1376 }, { "fileName": "hoenn/hoenn-route-106.tmx", "height": 512, "width": 1280, "x": -1920, "y": -96 }, { "fileName": "hoenn/anime-oldale-ruins.tmx", "height": 320, "width": 384, "x": 320, "y": -1664 }, { "fileName": "hoenn/hoenn-route-110.tmx", "height": 1792, "width": 768, "x": 1280, "y": -2976 }, { "fileName": "hoenn/dewford-town.tmx", "height": 512, "width": 512, "x": -960, "y": 224 }, { "fileName": "hoenn/hoenn-route-109.tmx", "height": 1024, "width": 768, "x": 1280, "y": -416 }, { "fileName": "hoenn/hoenn-route-108.tmx", "height": 1616, "width": 1600, "x": 320, "y": 224 }, { "fileName": "hoenn/hoenn-route-107.tmx", "height": 512, "width": 1024, "x": -640, "y": 224 }, { "fileName": "hoenn/slateport-city.tmx", "height": 1024, "width": 768, "x": 1280, "y": -1376 }, { "fileName": "hoenn/anime-littleroot-port.tmx", "height": 512, "width": 512, "x": -512, "y": -928 }, { "fileName": "hoenn/fill-002.tmx", "height": 512, "width": 1280, "x": -1536, "y": 224 }, { "fileName": "hoenn/fill-003.tmx", "height": 256, "width": 256, "x": -640, "y": 96 }, { "fileName": "hoenn/fill-004.tmx", "height": 512, "width": 1280, "x": -1280, "y": -1376 }, { "fileName": "hoenn/mauville-city.tmx", "height": 512, "width": 768, "x": 1280, "y": -3296 }, { "fileName": "hoenn/hoenn-route-117.tmx", "height": 512, "width": 1024, "x": 320, "y": -3296 }, { "fileName": "hoenn/verdanturf-town.tmx", "height": 512, "width": 512, "x": 0, "y": -3296 }, { "fileName": "hoenn/anime-foothill-town.tmx", "height": 256, "width": 512, "x": 480, "y": -3504 }, { "fileName": "hoenn/anime-misty-village.tmx", "height": 512, "width": 512, "x": 848, "y": -2976 }, { "fileName": "hoenn/hoenn-route-111.tmx", "height": 2304, "width": 768, "x": 1280, "y": -5536 }, { "fileName": "hoenn/hoenn-route-112.tmx", "height": 1024, "width": 768, "x": 640, "y": -5216 }, { "fileName": "hoenn/rustboro-city.tmx", "height": 1600, "width": 1632, "x": -1920, "y": -3616 }, { "fileName": "hoenn/hoenn-route-116.tmx", "height": 512, "width": 1792, "x": -1280, "y": -3616 }, { "fileName": "hoenn/anime-north-petalburg.tmx", "height": 320, "width": 544, "x": -800, "y": -2016 }, { "fileName": "hoenn/anime-rinshin-town.tmx", "height": 512, "width": 512, "x": -800, "y": -2944 }, { "fileName": "hoenn/fill-005.tmx", "height": 256, "width": 256, "x": 0, "y": -2976 }, { "fileName": "hoenn/fill-006.tmx", "height": 512, "width": 768, "x": 592, "y": -2432 }, { "fileName": "hoenn/lavaridge-town.tmx", "height": 512, "width": 512, "x": 320, "y": -4576 }, { "fileName": "hoenn/hoenn-route-115.tmx", "height": 1296, "width": 768, "x": -1920, "y": -4896 }, { "fileName": "hoenn/hoenn-route-114.tmx", "height": 1280, "width": 768, "x": -1280, "y": -5536 }, { "fileName": "hoenn/hoenn-route-113.tmx", "height": 512, "width": 1792, "x": -320, "y": -5536 }, { "fileName": "hoenn/fallarbor-town.tmx", "height": 512, "width": 512, "x": -704, "y": -5536 }, { "fileName": "hoenn/hoenn-route-118.tmx", "height": 512, "width": 1280, "x": 1920, "y": -3296 }, { "fileName": "hoenn/hoenn-route-119.tmx", "height": 2304, "width": 768, "x": 2560, "y": -5536 }, { "fileName": "hoenn/fortree-city.tmx", "height": 512, "width": 768, "x": 3200, "y": -5536 }, { "fileName": "hoenn/anime-valley-of-steel.tmx", "height": 1600, "width": 1856, "x": 576, "y": -4256 }, { "fileName": "hoenn/anime-lake-may.tmx", "height": 256, "width": 256, "x": 832, "y": -3744 }, { "fileName": "hoenn/anime-forina.tmx", "height": 768, "width": 768, "x": 144, "y": -4288 }, { "fileName": "hoenn/hoenn-route-120.tmx", "height": 1792, "width": 768, "x": 3840, "y": -5536 }, { "fileName": "hoenn/anime-forbidden-forest.tmx", "height": 1600, "width": 1856, "x": 1920, "y": -4112 }, { "fileName": "hoenn/anime-crossgate-town.tmx", "height": 256, "width": 256, "x": 3200, "y": -5024 }, { "fileName": "hoenn/anime-shroomish-forest.tmx", "height": 256, "width": 256, "x": 3200, "y": -5216 }, { "fileName": "hoenn/anime-rubello-town.tmx", "height": 512, "width": 512, "x": 3840, "y": -3936 }, { "fileName": "hoenn/anime-mount-kirikiri.tmx", "height": 256, "width": 256, "x": 3520, "y": -5040 }, { "fileName": "hoenn/anime-mirage-kingdom.tmx", "height": 768, "width": 512, "x": 1920, "y": -5632 }, { "fileName": "hoenn/anime-the-greenhouse.tmx", "height": 256, "width": 256, "x": 1536, "y": -5792 }, { "fileName": "hoenn/hoenn-route-123.tmx", "height": 512, "width": 2304, "x": 3200, "y": -3296 }, { "fileName": "hoenn/hoenn-route-121.tmx", "height": 512, "width": 1280, "x": 4480, "y": -4256 }, { "fileName": "hoenn/hoenn-route-122.tmx", "height": 768, "width": 768, "x": 4800, "y": -3936 }, { "fileName": "hoenn/lilycove-city.tmx", "height": 768, "width": 1280, "x": 5760, "y": -4416 }, { "fileName": "hoenn/hoenn-route-124.tmx", "height": 1280, "width": 1280, "x": 7040, "y": -4576 }, { "fileName": "hoenn/hoenn-route-125.tmx", "height": 768, "width": 1280, "x": 8320, "y": -4576 }, { "fileName": "hoenn/hoenn-route-126.tmx", "height": 1280, "width": 1280, "x": 7040, "y": -3296 }, { "fileName": "hoenn/hoenn-route-127.tmx", "height": 1280, "width": 1280, "x": 8320, "y": -3296 }, { "fileName": "hoenn/hoenn-route-128.tmx", "height": 768, "width": 2048, "x": 8320, "y": -2016 }, { "fileName": "hoenn/hoenn-route-129.tmx", "height": 768, "width": 1280, "x": 8320, "y": -1376 }, { "fileName": "hoenn/hoenn-route-130.tmx", "height": 768, "width": 1280, "x": 7040, "y": -1376 }, { "fileName": "hoenn/mossdeep-city.tmx", "height": 768, "width": 1280, "x": 8320, "y": -3936 }, { "fileName": "hoenn/fill-007.tmx", "height": 416, "width": 112, "x": -2032, "y": -3072 }, { "fileName": "hoenn/fill-010.tmx", "height": 768, "width": 768, "x": -1280, "y": -4256 }, { "fileName": "hoenn/fill-011.tmx", "height": 512, "width": 512, "x": 320, "y": -3616 }, { "fileName": "hoenn/fill-012.tmx", "height": 256, "width": 768, "x": -1280, "y": -5728 }, { "fileName": "hoenn/fill-013.tmx", "height": 176, "width": 576, "x": -704, "y": -5696 }, { "fileName": "hoenn/fill-014.tmx", "height": 512, "width": 768, "x": 1920, "y": -4560 }, { "fileName": "hoenn/fill-015.tmx", "height": 512, "width": 768, "x": 1920, "y": -3648 }, { "fileName": "hoenn/fill-016.tmx", "height": 768, "width": 256, "x": 4352, "y": -3936 }, { "fileName": "hoenn/fill-017.tmx", "height": 768, "width": 512, "x": -720, "y": -4576 }, { "fileName": "hoenn/fill-018.tmx", "height": 768, "width": 256, "x": -704, "y": -5216 }, { "fileName": "hoenn/fill-019.tmx", "height": 512, "width": 1024, "x": -720, "y": -4000 }, { "fileName": "hoenn/fill-020.tmx", "height": 256, "width": 256, "x": -1280, "y": -3296 }, { "fileName": "hoenn/fill-021.tmx", "height": 512, "width": 512, "x": -288, "y": -2432 }, { "fileName": "hoenn/fill-022.tmx", "height": 416, "width": 512, "x": -1280, "y": -2656 }, { "fileName": "hoenn/fill-023.tmx", "height": 512, "width": 512, "x": 128, "y": -5216 }, { "fileName": "hoenn/fill-024.tmx", "height": 256, "width": 256, "x": -448, "y": -5216 }, { "fileName": "hoenn/fill-025.tmx", "height": 352, "width": 768, "x": -800, "y": -3296 }, { "fileName": "hoenn/fill-026.tmx", "height": 256, "width": 256, "x": 0, "y": -2464 }, { "fileName": "hoenn/fill-027.tmx", "height": 768, "width": 768, "x": -576, "y": -4688 }, { "fileName": "hoenn/hoenn-safari-zone-se.tmx", "height": 256, "width": 512, "x": 4656, "y": -4512 }, { "fileName": "hoenn/hoenn-safari-zone-sw.tmx", "height": 256, "width": 256, "x": 4480, "y": -4512 }, { "fileName": "hoenn/hoenn-safari-zone-nwmach-bike-area.tmx", "height": 256, "width": 256, "x": 4480, "y": -4768 }, { "fileName": "hoenn/hoenn-safari-zone-neacro-bike-area.tmx", "height": 256, "width": 256, "x": 4848, "y": -4768 }, { "fileName": "hoenn/hoenn-safari-zone-expansion-south.tmx", "height": 256, "width": 512, "x": 5104, "y": -4512 }, { "fileName": "hoenn/hoenn-safari-zone-expansion-north.tmx", "height": 1648, "width": 1600, "x": 5104, "y": -4816 }, { "fileName": "hoenn/anime-larousse-city.tmx", "height": 512, "width": 512, "x": 5920, "y": -5760 }, { "fileName": "hoenn/fill-028.tmx", "height": 256, "width": 256, "x": 3200, "y": -3888 }, { "fileName": "hoenn/fill-029.tmx", "height": 256, "width": 256, "x": 3200, "y": -3424 }, { "fileName": "hoenn/fill-030.tmx", "height": 256, "width": 256, "x": 3840, "y": -3424 }, { "fileName": "hoenn/fill-031.tmx", "height": 256, "width": 256, "x": 3200, "y": -4336 }, { "fileName": "hoenn/anime-volley-town.tmx", "height": 256, "width": 256, "x": 5184, "y": -5232 }, { "fileName": "hoenn/fill-032.tmx", "height": 256, "width": 256, "x": 5488, "y": -4592 }, { "fileName": "hoenn/anime-banana-slakoth-garden.tmx", "height": 256, "width": 256, "x": 4720, "y": -5360 }, { "fileName": "hoenn/fill-033.tmx", "height": 256, "width": 256, "x": 1920, "y": -4864 }, { "fileName": "hoenn/fill-034.tmx", "height": 256, "width": 1600, "x": -320, "y": -5792 }, { "fileName": "hoenn/fill-035.tmx", "height": 64, "width": 272, "x": 1280, "y": -5600 }, { "fileName": "hoenn/fill-036.tmx", "height": 256, "width": 512, "x": 2816, "y": -2976 }, { "fileName": "hoenn/fill-037.tmx", "height": 256, "width": 768, "x": 3328, "y": -2976 }, { "fileName": "hoenn/fill-038.tmx", "height": 256, "width": 768, "x": 4096, "y": -2976 }, { "fileName": "hoenn/fill-039.tmx", "height": 256, "width": 768, "x": 4864, "y": -2976 }, { "fileName": "hoenn/fill-040.tmx", "height": 512, "width": 512, "x": 5440, "y": -3472 }, { "fileName": "hoenn/hoenn-route-134.tmx", "height": 768, "width": 1280, "x": 1920, "y": -1376 }, { "fileName": "hoenn/hoenn-route-133.tmx", "height": 768, "width": 1280, "x": 3200, "y": -1376 }, { "fileName": "hoenn/hoenn-route-132.tmx", "height": 768, "width": 1280, "x": 4480, "y": -1376 }, { "fileName": "hoenn/pacifidlog-town.tmx", "height": 768, "width": 512, "x": 5760, "y": -1376 }, { "fileName": "hoenn/hoenn-route-131.tmx", "height": 640, "width": 960, "x": 6080, "y": -1376 }, { "fileName": "hoenn/fill-041.tmx", "height": 256, "width": 256, "x": 4480, "y": -5024 }, { "fileName": "hoenn/sky-pillar.tmx", "height": 400, "width": 496, "x": 6416, "y": -1776 }, { "fileName": "hoenn/ever-grande-city.tmx", "height": 1024, "width": 768, "x": 10240, "y": -3008 }, { "fileName": "hoenn/littleroot-town.tmx", "height": 320, "width": 320, "x": 0, "y": -1024 }, { "fileName": "hoenn/fill-042.tmx", "height": 208, "width": 320, "x": 0, "y": -704 }, { "fileName": "hoenn/fill-043.tmx", "height": 320, "width": 432, "x": 320, "y": -1024 }, { "fileName": "hoenn/fill-044.tmx", "height": 160, "width": 304, "x": 320, "y": -704 }, { "fileName": "hoenn/fill-045.tmx", "height": 320, "width": 320, "x": 320, "y": -1344 }, { "fileName": "hoenn/fill-046.tmx", "height": 320, "width": 320, "x": 640, "y": -1344 }, { "fileName": "hoenn/fill-047.tmx", "height": 128, "width": 320, "x": 960, "y": -1344 }, { "fileName": "hoenn/fill-048.tmx", "height": 320, "width": 320, "x": 960, "y": -1664 }, { "fileName": "hoenn/fill-049.tmx", "height": 512, "width": 512, "x": 704, "y": -1664 }, { "fileName": "hoenn/fill-052.tmx", "height": 512, "width": 512, "x": -800, "y": -1376 }, { "fileName": "hoenn/fill-051.tmx", "height": 448, "width": 448, "x": -448, "y": -1376 }, { "fileName": "hoenn/fill-050.tmx", "height": 160, "width": 480, "x": -960, "y": 544 }, { "fileName": "hoenn/fill-053.tmx", "height": 640, "width": 112, "x": -2032, "y": -2656 }, { "fileName": "hoenn/fill-055.tmx", "height": 400, "width": 656, "x": -1936, "y": -5264 }, { "fileName": "hoenn/fill-054.tmx", "height": 384, "width": 336, "x": -1616, "y": -5648 }, { "fileName": "hoenn/fill-056.tmx", "height": 176, "width": 480, "x": -1440, "y": 544 }, { "fileName": "hoenn/fill-057.tmx", "height": 512, "width": 1024, "x": -800, "y": -2432 }, { "fileName": "hoenn/fill-058.tmx", "height": 512, "width": 512, "x": -288, "y": -3296 }, { "fileName": "hoenn/fill-059.tmx", "height": 512, "width": 512, "x": -288, "y": -2944 }, { "fileName": "hoenn/fill-060.tmx", "height": 512, "width": 512, "x": -288, "y": -2016 }, { "fileName": "hoenn/birth-island.tmx", "height": 480, "width": 480, "x": 14768, "y": 2048 }, { "fileName": "hoenn/navel-rock.tmx", "height": 384, "width": 336, "x": 13376, "y": 800 }, { "fileName": "hoenn/southern-island.tmx", "height": 480, "width": 528, "x": 2960, "y": 48 }, { "fileName": "hoenn/faraway-island.tmx", "height": 736, "width": 544, "x": -3040, "y": 3488 } ], "onlyShowAdjacentMaps": false, "type": "world" } ================================================ FILE: maps/hoenn/anime-banana-slakoth-garden.tmx ================================================ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,2306,0,0,0,0,0, 0,0,0,0,0,0,0,0,2417,2418,2419,2420,2421,0,0,0, 0,0,0,0,0,0,0,0,2530,2531,2532,2533,2534,0,0,0, 0,0,0,0,0,0,0,0,2643,2644,2645,2646,2647,0,0,0, 0,0,0,0,0,0,0,0,2756,2757,2757,2757,2760,0,0,0, 0,0,0,0,0,0,0,0,2869,2870,2871,2870,2873,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,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: maps/hoenn/anime-crossgate-town.tmx ================================================ 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,116,116,116,0,114,114,114,114,114,114,114,114,114, 0,0,0,116,116,116,116,0,0,0,0,0,0,0,0,0, 114,114,0,0,0,116,0,0,114,114,114,114,114,114,114,114, 114,114,114,114,0,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,0,114,0,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,116,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,116,0,0,114,114,114,114,114,114,114,114,114,114, 114,114,114,0,0,116,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,0,116,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,0,116,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,116,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,116,114,114,114,114,114,114,114,114,114 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,0,0,114,114, 114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,114, 114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0, 114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 0,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 0,0,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,114,114,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,114,0,0,0,0,0,0,0,0,0, 0,0,0,0,114,114,114,0,0,0,0,0,0,0,0,0, 0,0,0,0,114,114,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,114,114,114,114,0,0,0,0,0,0,0,0, 0,0,0,114,114,114,114,114,0,0,0,0,0,0,0,0, 0,0,0,114,114,114,114,114,0,0,0,0,0,0,0,0, 0,0,0,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0 114,114,114,114,114,114,116,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,116,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,116,0,0,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,116,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,116,0,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,0,116,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,116,0,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,0,116,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,0,116,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,116,0,0,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,0,116,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,116,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,116,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,116,0,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,0,116,0,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,0 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0 114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116, 114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116, 114,114,114,114,114,114,114,114,0,116,116,116,116,116,116,116, 114,114,114,114,114,114,114,0,116,116,116,116,116,116,116,116, 114,114,114,114,114,114,114,0,116,116,116,116,116,116,116,116, 114,114,114,114,114,114,114,0,116,116,116,116,116,116,116,116, 114,114,114,114,114,114,114,0,116,116,116,116,116,116,116,116, 114,114,114,114,114,114,114,0,116,116,116,116,116,116,116,116, 114,114,114,114,114,114,114,0,0,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,0,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,0,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,0,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,0,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,0,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0, 116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0, 116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 0,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 229,229,229,229,342,0,0,0,0,0,0,0,0,0,0,0, 229,229,229,342,228,229,342,0,0,0,0,0,0,0,0,0, 229,229,342,228,229,342,228,229,229,229,229,229,229,229,229,342, 0,0,228,229,342,228,229,342,0,0,0,0,0,0,0,228, 0,0,0,0,115,0,0,228,229,229,229,342,0,0,0,0, 0,0,0,0,115,0,0,0,0,0,0,228,229,229,229,229, 0,0,0,0,228,229,229,229,342,0,0,0,0,0,0,0, 229,229,229,342,0,0,0,0,228,229,342,0,0,0,0,0, 229,229,342,115,0,0,0,0,0,0,228,229,229,229,229,229, 0,0,115,228,229,342,0,0,0,0,0,0,0,0,0,0, 0,0,228,229,342,115,0,0,0,0,0,0,2491,2493,0,0, 0,0,0,0,115,228,342,0,0,0,0,0,2604,2606,0,0, 0,0,0,0,228,342,115,0,0,0,0,0,2604,2606,0,0, 0,0,0,0,0,115,115,0,0,0,0,0,2604,2606,0,0, 0,0,0,0,0,115,115,0,0,0,0,0,2604,2606,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 229,229,229,229,229,229,229,229,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,341,0,0,0,0,0,0,0,0,0, 229,229,229,229,229,229,0,0,0,0,0,0,0,0,0,0, 0,0,341,229,229,0,0,0,0,0,0,0,0,0,0,0, 341,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0, 230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,3,3,3,3,0,0,0,0,0,0,0,0, 0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,3,3,4,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,3,3,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,115,115,0,0,0,0,0,2604,2605,2492,2492, 0,0,0,0,0,115,115,0,0,0,0,2491,2605,2605,2605,2605, 0,0,0,0,0,115,228,229,342,0,0,2604,2717,2718,2605,0, 0,0,0,0,0,228,229,342,115,0,0,2717,0,0,0,0, 0,0,0,0,0,0,0,115,228,342,0,0,0,0,0,0, 0,0,0,0,0,0,0,228,342,115,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,115,228,342,0,0,0,0,2491, 0,0,0,0,0,0,0,0,228,342,115,0,0,0,0,2717, 0,0,0,0,0,0,0,0,0,115,115,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,115,228,229,342,0,0,0, 0,0,0,0,0,0,0,0,0,228,229,342,115,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,115,115,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,115,115,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,115,228,342,0,0, 0,0,0,0,0,0,0,0,0,0,0,228,342,228,342,0, 0,0,0,0,0,0,0,0,0,0,0,0,115,0,228,342 2492,2492,2492,2493,0,0,0,0,0,0,0,0,2491,2493,0,0, 2605,2605,2605,2605,2493,0,0,0,0,0,0,0,2604,2606,0,0, 2604,2605,2605,2605,2605,2492,2492,2493,0,0,0,0,2604,2606,0,0, 2604,2605,2605,2605,2605,2605,2605,2606,0,0,0,0,2604,2606,0,0, 2604,2605,2605,2605,2605,2605,2605,2605,2492,2492,2492,2492,2605,2606,0,0, 2604,2605,2605,2605,2605,2605,2605,2605,2718,2718,2718,2718,2718,2719,0,0, 2605,2605,2605,2605,2605,2605,2718,2719,0,0,0,0,0,0,0,0, 2718,2718,2718,2718,2605,2606,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,2605,2606,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,2604,2606,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,2604,2606,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,2604,2492,2492,2492,2492,2492,2492,2492,2492,2493,0,0, 0,0,0,0,2604,2605,2718,2718,2718,2718,2718,2718,2718,2719,0,0, 2491,2492,2492,2492,2605,2606,0,0,0,0,0,0,0,0,0,0, 2717,2718,2718,2718,2718,2719,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,228, 0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0, 0,0,0,0,0,0,0,0,0,0,2,3,3,0,0,0, 0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0, 0,0,0,0,0,0,0,2,3,3,0,0,0,0,0,0, 0,0,0,0,0,0,0,115,0,0,341,229,229,229,229,229, 0,0,0,0,0,0,0,115,0,0,117,2491,2492,2492,2492,2492, 0,0,0,0,0,0,0,115,0,0,117,2604,2605,2605,2605,2605, 0,0,0,0,0,0,0,115,0,0,117,2604,2605,2605,2605,2605, 0,0,0,0,0,0,0,115,0,0,117,2604,2605,2605,2605,2605, 0,0,0,0,0,0,0,228,342,0,117,2717,2718,2718,2718,2718, 0,0,0,0,0,0,0,0,115,0,3,3,3,3,3,3, 0,0,0,0,0,0,0,0,228,342,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,228,229,229,342,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,228,229,229,229, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 229,229,342,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,228,229,342,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,228,342,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,228,229,342,0,0,0,0,0,0,0,0, 229,229,229,342,0,0,0,228,229,229,342,0,0,0,0,0, 2492,2492,2493,115,0,0,0,0,0,0,228,229,229,229,342,0, 2605,2605,2606,115,0,0,0,0,0,0,0,0,0,0,228,229, 2605,2605,2606,115,0,0,0,0,0,0,0,0,0,0,341,229, 2605,2605,2606,115,0,0,0,0,0,0,0,0,0,341,230,0, 2718,2718,2719,115,0,0,0,0,0,0,0,0,0,117,0,0, 3,3,3,3,0,0,0,0,0,0,0,0,0,117,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0, 0,0,0,0,0,0,341,229,229,229,229,229,229,230,0,0, 229,229,229,229,229,229,230,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 229,229,229,229,229,229,229,229,0,0,0,0,0,0,0,0, 229,229,229,229,229,229,229,229,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,1810,1810,1810,1810,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,1810,1810,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,1810,1810,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,1348,1349,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,1348,1349,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,1348,1349,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,331,331,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,1348,1349,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,1348,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 331,331,331,331,331,219,219,219,219,219,219,219,0,0,219,219, 0,0,0,0,0,331,331,219,219,219,219,331,0,0,331,219, 0,0,0,0,0,0,0,331,331,331,331,0,0,0,0,331, 0,0,0,0,0,0,0,0,0,218,0,218,0,0,0,0, 219,219,0,0,0,0,218,0,0,331,0,331,0,0,0,0, 219,219,219,219,0,218,219,218,218,0,218,0,0,0,0,0, 219,219,219,219,0,331,331,331,331,218,331,0,0,0,0,0, 331,331,331,331,218,218,0,218,0,331,0,0,0,0,0,0, 0,0,0,0,219,219,218,219,218,0,0,0,0,0,0,0, 218,218,0,0,331,331,219,219,219,218,218,218,0,0,0,0, 219,219,0,0,0,0,219,219,219,219,219,331,0,0,0,0, 219,219,218,0,0,0,331,219,219,219,219,0,0,0,0,0, 219,219,219,218,0,0,0,331,219,219,331,0,0,0,0,0, 219,219,219,219,0,0,0,0,331,219,0,0,0,0,0,0, 219,219,219,219,218,0,0,0,0,331,0,0,0,0,0,0, 219,219,219,219,219,0,0,0,0,0,0,0,0,0,0,0 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,0,0,219,219, 219,219,219,219,219,219,219,219,219,219,219,0,0,0,0,219, 331,331,331,331,331,331,331,331,331,0,0,0,0,0,0,0, 0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,331,0,0,0,0,0,0,0,0,0,0,0,0,0, 218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 331,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,218,219,0,0,0,0,0,0,0,0,0,0,0,0, 0,218,219,219,0,0,0,0,0,0,0,0,0,0,0,0, 0,331,219,219,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,219,219,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,23,24,25,26,0,0,0,0,0,0,0,0,0,0, 0,0,136,137,138,139,0,0,0,0,0,0,0,0,0,0, 0,0,249,250,251,252,0,0,0,0,0,0,0,0,0,0, 0,0,362,363,364,365,218,218,331,219,219,219,0,0,219,219 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 0,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 0,0,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 0,0,0,0,0,218,218,218,0,0,0,0,0,0,0,0, 0,0,0,0,0,219,331,219,0,0,0,0,0,0,0,0, 0,0,0,0,218,218,0,219,0,0,0,0,0,0,0,0, 0,0,0,0,219,219,0,219,0,0,0,0,0,0,0,0, 0,0,0,0,219,219,218,218,0,0,0,0,0,0,0,0, 0,0,0,218,219,219,219,219,0,0,0,0,0,0,0,0, 0,0,218,219,219,219,219,219,0,0,0,0,0,0,0,0, 0,0,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 0,0,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0 219,219,219,219,219,0,0,0,0,0,0,0,0,0,0,0, 219,219,219,219,219,0,0,0,0,0,0,0,0,0,0,0, 219,219,219,219,219,0,0,0,0,0,0,0,932,933,933,933, 219,219,219,219,219,0,218,0,0,0,0,0,1045,1046,1046,1046, 219,219,219,219,219,218,219,0,0,0,0,0,1158,1047,1160,1159, 219,219,219,219,219,219,219,0,0,0,0,0,1266,1269,1268,1267, 219,219,219,219,219,219,219,218,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,219,218,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,219,219,0,0,0,0,0,0,27, 219,219,219,219,219,219,219,219,219,0,218,0,0,0,0,140, 219,219,219,219,219,219,219,219,219,218,219,0,0,0,0,253, 219,219,219,219,219,219,219,219,219,219,219,0,0,0,0,362, 219,219,219,219,219,219,219,219,219,219,219,0,0,0,0,0, 219,219,219,219,219,219,219,219,219,219,219,218,0,0,0,0, 219,219,219,219,219,219,219,219,219,219,219,219,0,0,0,0 0,0,0,0,0,0,331,331,0,219,219,219,0,0,331,219, 0,0,0,0,0,0,0,0,0,331,219,331,0,0,0,331, 935,0,0,0,0,0,0,0,0,0,331,0,0,0,0,0, 1048,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1161,0,0,0,205,0,0,0,0,0,0,0,0,0,0,0, 1270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,932,933,933,933,935,0, 0,0,0,0,0,0,0,0,0,0,1045,1046,1046,1046,1048,0, 28,28,30,0,0,0,0,0,0,0,1158,1159,1160,1047,1161,0, 141,142,143,0,0,0,0,0,0,0,1266,1267,1268,1269,1270,0, 254,255,256,0,0,0,0,0,0,0,0,0,0,0,0,0, 363,368,369,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 331,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 0,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 0,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 0,331,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 0,0,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 0,0,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 0,218,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 0,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 0,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 218,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0 219,219,219,219,219,219,219,219,219,219,219,219,0,0,0,0, 219,219,219,219,219,219,219,219,219,219,331,331,0,0,0,0, 219,219,219,219,219,219,219,219,219,331,0,0,0,0,0,0, 219,219,219,219,219,219,219,331,331,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,0,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,0,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,0,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,0,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,0,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,0,0,0,0,0,0,0,0,0, 331,331,331,331,331,331,331,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,218,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,331,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 331,331,331,331,331,331,331,331,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 218,218,0,218,218,0,0,218,0,0,0,0,0,0,0,0, 219,219,218,219,219,218,218,219,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,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: maps/hoenn/anime-foothill-town.tmx ================================================ 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114 229,229,229,342,0,0,0,0,0,0,0,0,0,0,0,0,341,229,229,229,229,229, 0,0,0,228,229,229,342,0,0,0,0,0,0,341,229,229,230,0,0,0,0,0, 0,0,0,0,0,0,0,0,229,229,229,342,0,117,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,228,229,230,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,2488,2489,2490,659,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,2714,2715,2716,0,0,0,0,0,2827,2828,2829,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,659,0,0,0,0,0,659,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 218,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,218,0,218,218, 219,218,219,0,0,0,0,0,0,0,0,0,0,0,218,218,218,219,219,218,219,219, 219,219,219,218,3752,3753,3753,3755,218,0,218,0,0,0,219,219,219,219,219,219,219,219, 219,219,219,219,3865,3866,3866,3868,219,218,331,0,3752,3753,3753,3755,219,219,219,219,219,219, 219,219,219,219,3978,3979,3980,3981,331,219,0,218,3865,3866,3866,3868,219,219,219,219,219,219, 219,219,219,331,4091,4092,4093,4094,0,331,0,331,3978,3979,3980,3981,331,219,219,219,331,331, 219,219,219,0,206,0,0,0,0,0,0,0,4091,4092,4093,4094,0,331,331,331,0,0, 219,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218, 219,219,219,218,0,0,0,0,0,206,0,0,0,0,0,0,218,218,218,218,218,219, 219,219,219,219,218,0,0,0,0,0,0,0,218,218,218,218,219,219,219,219,219,219, 219,219,219,219,219,218,218,0,0,0,218,218,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,218,0,0,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,0,0,219,219,219,219,219,219,219,219,219,219,219,219 ================================================ FILE: maps/hoenn/anime-forbidden-forest.tmx ================================================ 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,341,229,230,0,117,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,341,229,230,0,117,341,229,229,230,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,341,229,230,0,341,229,230,117,0,341,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,117,0,341,230,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,117,0,341,229,230,0,117,341,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,117,341,230,341,229,229,230,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,341,229,230,117,341,230,341,229,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,341,229,230,341,229,230,117,341,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,117,0,0,117,0,341,230,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,117,0,0,117,0,117,341,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,117,0,0,117,341,230,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,341,230,0,0,117,117,341,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,117,0,0,0,117,117,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,117,0,0,0,117,117,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,117,0,0,0,117,117,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,117,0,0,0,117,117,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,3,4,0,0,117,117,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,3,4,0,117,117,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,117,0,117,117,0,3,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,117,0,117,117,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,341,230,0,117,3,4,0,0,3,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,117,0,0,117,0,3,3,4,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,117,0,0,3,4,0,0,117,0,0,3,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,229,229,229,229,229, 0,0,0,0,0,0,0,117,0,0,0,117,0,0,3,3,4,0,0,3,3,4,0,0,0,0,0,0,0,0,0,0,0,341,230,0,0,0,0,0, 0,0,0,0,0,0,0,117,0,0,0,117,0,0,0,0,117,0,0,0,0,3,4,0,0,0,0,0,341,229,229,229,229,230,0,0,0,0,0,0, 0,0,0,0,0,0,0,3,4,0,0,3,4,0,0,0,117,0,0,0,0,0,117,0,0,0,341,229,230,0,0,0,0,0,0,0,0,0,4524,4636, 0,0,0,0,0,0,0,0,117,0,0,0,117,0,0,0,3,4,0,0,0,0,117,341,229,229,230,0,0,0,0,0,0,0,0,0,0,4524,4636,0, 0,0,0,0,0,0,0,0,3,4,0,0,3,4,0,0,0,117,0,0,0,0,117,117,0,0,0,0,0,0,0,0,0,4524,4636,4636,4636,4636,0,0, 0,0,0,0,0,0,0,0,0,117,0,0,0,117,0,0,0,117,341,229,229,229,230,117,0,0,0,0,0,0,0,0,0,4524,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,0,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,218,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,218,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,218,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,331,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,331,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,331,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,331,219,219,219,219,219,219,219,219,219,219,219,219,219,219,331,331,331,331,331,331, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,331,219,219,219,219,219,219,219,219,219,219,219,331,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,219,219,219,219,219,331,331,331,331,331,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,331,331,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,331,331,0,0,0,0,0,0,0,0,0,0,0,0,218,218, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,218,218,218,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219 ================================================ FILE: maps/hoenn/anime-forina.tmx ================================================ 116,125,125,125,125,125,125,125,125,125,125,0,0,0,0,0, 116,125,125,125,125,125,125,125,125,125,125,0,0,0,0,0, 116,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 116,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 116,0,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 116,116,116,0,125,125,125,125,125,125,125,125,125,125,125,125, 116,116,116,116,0,125,125,125,125,125,125,125,125,125,125,125, 116,116,116,116,116,0,125,125,125,125,125,125,125,125,125,0, 116,116,116,116,116,116,116,116,116,125,125,125,0,0,0,0, 116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0, 116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0, 116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0, 116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0, 116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0, 116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 125,125,125,125,125,125,125,125,125,125,125,0,0,0,0,0, 125,125,125,125,125,125,125,125,125,125,125,0,0,0,0,0, 125,125,125,125,125,125,125,125,125,125,125,0,0,0,0,0, 125,125,125,125,125,125,125,125,125,125,125,0,0,0,0,0, 125,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,0, 0,0,0,0,0,0,0,0,0,0,116,116,116,116,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0, 116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0, 116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0, 116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0, 116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0, 116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0, 116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0, 116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0, 116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0, 116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0, 116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 124,0,0,124,0,0,0,0,0,12,13,0,0,0,0,0, 124,0,0,237,238,351,0,0,0,0,12,0,0,0,0,0, 124,0,0,0,0,237,351,0,0,0,0,12,12,12,13,0, 124,0,0,0,0,0,237,351,0,0,0,0,0,0,12,12, 237,351,0,0,0,0,0,124,0,0,0,0,0,0,0,0, 0,237,238,351,0,0,0,237,351,0,0,0,0,350,238,238, 3,3,4,237,351,0,0,0,237,238,238,238,238,239,0,0, 0,0,3,4,237,351,0,0,0,0,0,0,0,0,0,350, 3,3,4,3,4,237,238,238,351,0,0,0,350,238,238,239, 0,0,3,4,3,3,3,4,237,238,238,238,239,0,0,0, 3,4,0,117,0,0,0,117,0,0,0,0,0,0,0,0, 0,117,0,117,0,0,0,3,3,4,0,0,0,0,0,0, 0,117,0,3,4,0,0,0,0,117,0,0,0,0,0,0, 0,117,0,0,117,0,0,0,0,3,3,3,3,4,0,0, 0,3,3,4,3,3,4,0,0,0,0,0,0,117,0,0, 0,0,0,117,0,0,3,3,3,3,4,0,0,3,3,4 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,350,238,238,238,238,238,238,238,238,0,0,0,0,0, 238,238,239,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,3,4,0,0,0,0,0,3,3,4,0,0,3, 0,0,0,0,117,0,0,0,0,0,0,0,117,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,4, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,3,3,3,4,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,4, 0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,3, 0,0,0,0,0,0,0,0,0,0,229,230,0,0,0,341, 0,0,0,0,0,0,0,0,0,0,0,0,0,341,229,230, 0,0,0,0,0,0,0,0,0,0,0,0,341,230,0,0, 0,0,0,0,0,0,0,0,0,0,229,229,230,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,229, 0,0,0,0,0,0,0,0,0,0,341,229,229,229,230,0, 0,0,0,0,0,0,0,0,0,0,230,0,0,0,0,341, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,230 3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,3,3,4,0,0,0,0,0,0,0,0,0,0,0,0, 3,4,0,117,0,0,0,0,0,0,0,0,0,0,0,0, 0,117,0,3,4,0,0,0,0,0,0,0,0,0,0,0, 0,3,4,0,117,0,0,0,0,0,0,0,0,0,0,0, 0,0,3,4,117,0,0,0,0,0,0,0,0,0,0,0, 4,0,0,117,117,0,0,0,0,0,0,0,0,0,0,0, 230,0,0,117,117,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,117,117,0,0,0,0,0,0,0,0,0,0,0, 0,341,229,230,117,0,0,0,0,0,0,0,0,0,0,0, 341,230,0,0,117,0,0,0,0,0,0,0,0,0,0,0, 230,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,341,230,0,0,0,0,0,0,0,0,0,0,0, 229,229,229,230,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,341,229,230,0, 0,0,0,0,0,0,0,0,0,0,229,229,230,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,341,229,229,229,342,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,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: maps/hoenn/anime-lake-may.tmx ================================================ 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,116,116,116,116,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116, 114,114,4184,4184,4184,4184,4184,4184,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116, 114,114,4184,4184,4184,4184,4184,4184,4184,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116, 114,114,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,114,114,114,114,114,114,116,116,116,116,116,116,116, 114,114,4184,4184,4184,114,114,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,114,116,116,116,116,116,116,116, 114,114,4184,4184,4184,114,114,114,114,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,114,116,116,116,116,116,116,116, 114,114,4184,4184,4184,114,114,114,114,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,114,116,116,116,116,116,116,116, 114,114,4184,4184,4184,114,114,114,114,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,114,116,116,116,116,116,116,116,116, 114,114,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,114,116,116,116,116,116,116,116,116, 114,114,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,114,116,116,116,116,116,116,116,116, 114,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,114,116,116,116,116,116,116,116,116,116, 114,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,114,116,116,116,116,116,116,116,116,116, 114,114,114,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,114,116,116,116,116,116,116,116,116,116, 114,114,114,114,114,114,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,114,116,116,116,116,116,116,116,116,116, 114,114,114,114,114,114,114,114,114,114,114,4184,4184,4184,4184,4184,4184,4184,114,0,116,116,116,116,116,116,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,116,116,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114 219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,2,3,115,0,0, 219,0,0,0,0,0,0,0,0,0,95,95,95,0,0,0,0,0,0,0,0,115,0,115,2,3,0,0, 219,0,4409,4410,4410,4410,4410,4411,0,95,95,95,95,95,95,95,95,95,0,0,0,115,0,115,115,0,0,0, 0,0,4522,0,0,0,0,4637,4411,95,95,95,95,95,95,95,95,95,95,95,2,3,0,115,115,0,0,0, 0,0,4522,0,0,0,0,0,4637,4410,4410,4410,4410,4410,4411,95,95,95,95,95,115,0,0,115,115,0,0,0, 0,0,4522,0,4524,4636,4636,4522,0,0,0,0,0,0,4637,4410,4410,4410,4410,4411,115,0,0,115,228,342,0,0, 0,0,4522,0,4524,0,0,95,95,4522,0,0,0,0,0,0,0,0,0,4524,115,0,0,115,0,115,0,0, 0,0,4522,0,4524,95,95,95,95,4522,0,0,0,0,0,0,0,0,0,4524,115,0,0,115,0,115,0,0, 0,0,4522,0,4524,95,95,95,95,4522,0,0,0,0,0,0,0,0,4524,2,3,0,0,115,0,115,0,0, 0,0,4522,0,4637,4410,4410,4410,4410,4635,0,0,0,0,0,0,0,0,4524,115,0,0,0,115,2,3,0,0, 0,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,115,0,0,0,115,115,0,0,0, 0,4409,4635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,2,3,0,0,2,3,115,0,0,0, 0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,115,0,0,0,115,0,115,0,0,0, 229,342,4636,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,115,0,0,0,115,0,228,229,229,229, 0,115,0,4636,4636,4636,4522,0,0,0,0,0,0,0,0,0,0,4524,115,0,0,0,115,0,0,0,0,0, 342,228,229,342,0,0,4636,4636,4636,4636,4636,4522,0,0,0,0,0,4524,228,342,0,0,115,0,0,0,0,0, 228,342,0,228,229,229,229,229,342,0,0,4636,4636,4636,4636,4636,4636,4636,0,115,0,0,228,229,229,229,229,229, 0,228,229,229,229,229,229,342,115,0,0,0,0,0,0,0,0,0,0,228,1348,229,229,342,0,0,0,0, 0,0,0,0,0,0,0,115,228,229,1348,1349,229,229,229,229,1348,229,342,0,0,0,0,228,229,229,229,229, 0,0,0,0,0,0,0,228,229,229,1348,1349,229,342,0,0,0,0,228,229,229,1348,229,342,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,115,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,228,342,0,0,0,0,0,0,95,95,228,229,229,229,229, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,342,0,0,0,0,95,95,95,95,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,229,229,229,342,95,95,95,95,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,95,95,95,95,95,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,229,229,229,229,229,229,229,229, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,4070,4071,4071,4072,0,0,0,0,0,0,0,0,0,0,0,0,0 0,218,219,219,219,219,219,219,219,219,331,331,331,219,219,331,219,219,219,219,219,0,0,0,0,0,0,0, 0,219,331,331,331,331,331,331,219,331,0,0,0,331,331,0,331,331,219,219,219,0,0,0,0,0,0,0, 218,219,0,0,0,0,0,0,331,0,0,0,0,0,0,0,0,0,331,331,331,0,0,0,0,0,0,0, 219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,219,0,0,0,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,219,0,0,0,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,219,0,0,0,325,326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 331,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,219,218,218,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,331,331,219,219,218,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,331,331,331,331,0,0,0,0,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0, 218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,219,0,0,0,0,0,0,0,0,0, 219,218,218,218,218,218,218,0,0,0,0,0,0,0,0,0,0,331,331,0,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,0,0,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,0,0,0,0,0,0,0,218,219,0,0,218,218,0,0,0,0,0,0,0,0, 331,331,219,219,219,219,219,0,0,0,0,0,0,0,331,219,0,0,331,331,0,0,0,0,0,0,0,0, 0,0,331,331,331,331,331,0,0,0,0,0,0,0,0,331,218,0,0,0,0,0,0,0,0,218,0,0, 0,0,0,0,0,0,0,0,0,0,0,218,218,218,0,0,331,0,0,0,0,0,0,0,218,331,0,0, 0,218,218,218,0,218,218,218,218,218,218,219,219,219,218,218,218,218,218,0,0,0,0,0,331,218,0,0, 218,219,219,219,218,219,219,219,219,219,219,219,219,219,219,219,219,219,219,0,0,0,0,0,0,331,0,0, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,218,218,218,218,218,218,218,218,218, 219,219,219,219,219,219,219,219,219,219,219,331,331,331,331,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,331,331,331,331,331,0,0,0,0,331,331,331,331,331,331,331,331,331,331,331,331,331 ================================================ FILE: maps/hoenn/anime-larousse-city.tmx ================================================ 114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,44,45,47,48,49, 0,0,0,0,0,0,0,0,0,0,0,157,158,160,161,162, 0,0,0,0,0,0,0,0,0,0,0,270,271,273,274,275, 0,0,0,0,0,0,0,0,0,0,0,383,384,386,387,388, 0,0,0,0,0,0,0,0,0,0,0,496,497,499,500,501, 0,0,0,0,0,0,0,0,0,0,0,0,0,612,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 50,51,53,54,0,0,0,0,0,0,0,0,0,0,0,0, 163,164,166,167,0,0,0,0,0,0,0,0,0,0,0,0, 276,277,279,280,0,0,0,0,0,0,0,0,0,0,0,0, 389,390,392,393,0,0,0,0,0,0,0,0,0,0,0,0, 502,503,505,506,0,0,0,0,0,0,0,0,0,0,0,0, 0,616,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,114,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,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: maps/hoenn/anime-littleroot-port.tmx ================================================ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,3,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,2,3,3,3,3,116,2617,2617,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,115,116,2617,2617,2617,2617,2617,2617,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,115,116,2617,2617,2617,2617,2617,2617,2617,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,115,116,2617,2617,2617,2617,2617,2617,2617,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,2,116,2617,2617,2617,2617,2617,2617,2617,2617,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,115,116,2617,2617,2617,2617,2617,2617,2617,2617,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,115,116,2617,2617,2617,2617,2617,2617,2617,2617,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,115,116,2617,2617,2617,2617,2617,2617,2617,2617,2617,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,115,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,115,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,114,114,114,114,114,114,114,114, 0,0,0,0,0,2620,2620,2620,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,114,114,114,114,114,114,114,114, 0,0,0,0,0,2620,2620,2620,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,114,114,114,114,114,114,114, 0,0,0,0,0,2620,2620,2620,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,114,114,114,114,114, 0,0,0,0,0,2620,2620,2620,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,114,0,0,114, 0,0,0,0,0,2620,2620,2620,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,0,0,0,114, 0,0,0,0,0,2620,2620,2620,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,0,0,0,0, 0,0,0,0,0,2620,2620,2620,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,341,230,0,0,0, 0,0,0,0,0,2620,2620,2620,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2620,2620,2620,2620,2620,2620,117,0,0,0,0, 0,0,0,0,0,2620,2620,2620,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2620,2620,2620,2620,2620,2620,117,0,0,0,0, 0,0,0,0,0,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,117,0,0,0,0, 0,0,0,0,0,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,117,0,0,0,0, 0,0,0,0,0,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,117,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2620,2620,2620,2620,0,0,0,0,0,229,230,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2620,2620,2620,2620,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1810,0,0,0,326,325,326,325,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,2503,2504,1810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,2503,2504,2504,2504,2504,2504,2504,2618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,2616,0,0,0,0,0,0,2618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,2616,0,0,0,0,0,0,3288,3289,3289,3289,3289,3289,3289,3289,3289,3289,3290,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,2616,0,0,0,0,0,0,3401,3402,3515,3515,3515,3515,3515,3515,3515,3515,3516,0,0,0,0,0, 0,0,0,0,0,0,0,0,2503,0,0,0,0,0,0,0,3401,3403,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,2616,0,0,3288,3289,3289,3289,3289,3402,3403,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,2616,0,0,3514,3515,3515,3515,3402,3402,3403,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,2616,0,0,0,0,0,0,3401,3402,3403,2504,2504,2504,2505,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3401,3402,3403,0,0,0,0,2504,2504,2505,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3401,3402,3403,0,0,0,0,0,0,2618,0,0,0,0,0,0,0, 0,0,0,0,2,0,0,0,2508,0,0,0,0,0,0,3401,3402,3403,0,0,0,0,0,0,2618,0,0,0,0,0,0,0, 0,0,0,0,115,0,0,0,2621,0,0,0,0,0,0,3401,3402,3403,0,0,0,0,0,0,0,2504,2505,0,0,0,0,0, 0,0,0,0,115,0,0,0,2621,0,0,0,0,0,0,3401,3402,3403,0,0,0,0,0,0,0,0,0,2505,0,0,0,0, 0,0,0,0,115,0,0,0,2621,0,0,0,0,0,0,3401,3402,3403,0,0,0,0,0,0,0,0,0,0,341,229,342,0, 0,0,0,0,115,0,0,0,2621,0,0,0,0,0,0,3401,3402,3403,0,0,0,0,0,0,0,0,0,0,117,0,115,0, 0,0,0,0,115,0,0,0,2621,0,0,0,0,0,0,3401,3402,3403,0,0,0,0,0,0,0,0,0,0,117,0,228,342, 0,0,0,0,115,0,0,0,2621,0,0,0,0,0,0,3514,3515,3516,0,0,0,0,0,0,0,0,0,0,230,0,0,115, 0,0,0,0,115,0,0,0,2621,0,0,0,0,0,0,0,0,0,0,0,0,2506,2507,2507,2507,2507,2507,0,0,0,0,228, 0,0,0,0,115,0,0,0,2620,2507,2507,2507,2507,2507,2507,2507,2507,2507,2507,2507,2507,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,115,0,0,0,0,0,0,0,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,229,229,229,229,229,229,229,229,229,229,229,342,0,0,0,0,341,229,229,229,229,229,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,117,0,0,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,229,229,229,229,230,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,325,326,325,23,24,25,26,326,438,439,438,439,438,439, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2505,0,0,0,0,136,137,138,139,0,212,213,212,213,212,213, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2709,0,659,0,659,0,249,250,251,252,0,325,326,325,326,325,326, 0,0,0,0,0,0,0,0,0,0,27,28,28,30,0,2822,0,0,659,0,659,362,363,364,365,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,140,141,142,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,100, 0,0,0,0,0,0,0,0,0,0,253,254,255,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213, 0,0,0,0,0,0,0,0,0,2709,362,363,368,369,0,205,0,0,0,0,99,100,0,0,0,0,0,0,99,100,438,439, 0,0,0,0,0,0,0,0,0,2822,0,0,0,0,0,0,0,0,0,0,212,213,99,100,0,0,0,0,212,213,212,213, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1455,1459,325,326,212,213,3665,3666,3666,3669,438,439,438,439, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1568,0,0,0,325,326,3778,3779,3779,3782,212,213,212,213, 0,0,0,0,0,0,0,3665,3666,3666,3666,3666,3666,3669,0,0,0,0,1568,0,0,0,0,0,3891,3892,3892,3895,438,439,438,439, 0,0,0,0,0,0,0,3778,3779,3779,3779,3779,3779,3782,0,0,0,0,1568,0,0,0,0,0,4004,4007,4007,4008,212,213,212,213, 0,0,0,0,0,3297,3298,3891,3892,3892,3892,3892,3892,3895,2709,0,0,0,1568,3658,3659,3659,3663,3664,4004,4006,4006,4008,438,439,438,439, 0,0,0,0,0,3410,0,4004,4006,4007,4006,4007,4006,4008,2822,0,0,0,1568,3771,3772,3772,3776,3777,4004,4007,4007,4008,212,213,212,213, 0,0,0,0,0,3410,0,4004,4007,4007,4007,4007,4007,4008,0,0,0,0,1568,3884,3885,3885,3885,3888,4004,4006,4006,4008,325,326,325,326, 0,0,0,0,0,3410,0,4004,4006,4005,4006,4007,4006,4008,0,0,0,0,1568,3997,3999,3998,3999,4001,4117,4119,4119,4121,0,0,0,0, 0,0,0,0,0,3410,0,4117,4119,4118,4119,2937,4119,4121,2937,0,0,0,1568,4110,4112,4111,4112,4114,0,0,0,0,0,0,0,0, 0,0,0,0,0,3410,0,0,0,0,0,3049,3051,2936,3050,0,0,0,1455,1456,1457,0,1455,1456,1456,1456,1456,1457,0,0,0,0, 0,0,0,0,0,3410,0,0,0,0,0,3162,2936,0,2938,0,0,0,0,0,0,0,0,3272,3273,0,0,0,0,0,0,0, 0,0,0,0,0,3410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3385,3386,0,3412,0,0,0,0,0, 0,0,0,0,0,3410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3498,3499,0,3412,0,0,0,0,0, 0,0,0,0,0,3410,3154,3155,3156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3611,3612,0,3412,0,0,2364,2365,0, 0,0,0,0,0,3410,3267,3268,3269,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3274,0,2476,2477,2478,0, 0,0,0,0,0,3523,3524,3524,3524,3524,3524,3274,3524,3524,3524,3274,3524,0,0,0,0,3524,3524,3524,3524,3524,3525,0,2589,2590,2591,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,2816,2817,0,3410,0,0,3412,0,0,0,0,0,0,0,2702,2703,2704,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,2928,2929,2930,0,3523,3524,3524,3525,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,3041,3042,3043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,2816,2817,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,2928,2929,2930,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,3041,3042,3043,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,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: maps/hoenn/anime-mirage-kingdom.tmx ================================================ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,114,114,114,114,0,0,0,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,114,114,114,116,114,114,114,116,0,0,0,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,114,114,114,116,114,114,114,114,114,114,114,114,116,0,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 116,116,114,114,114,114,114,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 116,116,114,114,114,114,0,114,114,114,116,114,114,114,114,114,114,114,116,114,114,114,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0, 116,116,114,114,114,0,116,114,114,114,116,114,114,114,114,114,114,114,116,114,114,114,116,0,0,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0, 116,114,114,114,116,114,114,114,114,114,116,114,114,114,114,114,114,114,116,114,114,114,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,0,0,0, 116,114,114,116,116,114,114,114,114,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,114,114,114,114,114,114,114,114,114,114,114,0,0,0, 116,114,116,116,116,114,114,114,116,114,114,114,114,114,114,114,114,114,114,114,116,114,114,114,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,114,114,114,116,114,114,114,114,114,114,114,114,114,114,114,116,114,114,114,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,114,114,114,116,114,114,114,114,114,114,114,114,114,114,114,116,114,114,114,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,114,114,114,116,114,114,114,114,114,114,114,114,114,114,114,116,114,114,114,114,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,0,0,114,114,114,114,114,114,114,114,116,0,116,0,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,114,116,116,116,114,114,114,114,114,114,114,114, 116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,114,0,116,116,116,114,114,114,114,114,114,114, 116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,114,114,114,114,114,116,114,114,114,114,114,114, 116,116,116,116,0,114,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,114,114,114,114,116,116,114,114,114,114,114,114, 116,116,116,0,114,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,114,114,114,114,114,116,116,114,114,114,114,114, 116,116,114,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,114,114,114,114,114,116,116,114,114,114,114,114, 116,116,116,114,116,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,116,116,114,114,114,114,114, 116,116,116,116,116,114,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,116,114,114,114,114,114,114,114,114,114,114,116,116,114,114,114,114,114,114, 116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,114,114,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,114,114,114,0,116,116,116, 116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0, 116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,116,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,116,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,116,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,219,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,3,3,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,3,3,3,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,2,3,3,3,0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,115,0,0,0,0,2,3,0,0,2,3,3,3,3,3,3,3,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,115,0,0,0,0,115,0,0,2,115,0,0,0,0,0,0,0,117,4,0,0,117,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 2,3,0,0,2,3,3,0,0,115,115,0,0,0,0,0,0,0,117,117,0,0,117,3,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 115,0,0,2,115,0,0,0,0,115,115,0,0,0,0,0,0,0,117,117,0,0,3,3,4,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 115,0,2,115,115,0,0,0,2,3,3,0,0,0,0,0,0,0,3,3,4,0,0,0,117,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 115,2,115,115,115,0,0,2,115,0,0,0,0,0,0,0,0,0,0,0,117,4,0,0,117,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 115,115,115,115,115,0,0,115,115,0,0,0,0,0,0,0,0,0,0,0,117,117,0,0,117,3,3,4,0,0,0,0,0,0,0,0,0,0,0,0, 115,115,115,115,115,0,0,115,115,0,0,0,0,0,0,0,0,0,0,0,117,117,0,0,3,4,0,3,4,0,0,0,0,0,0,0,0,0,0,0, 115,115,115,115,115,0,0,115,228,229,229,342,0,0,0,0,0,341,229,229,230,117,0,0,0,3,3,4,117,0,0,0,0,0,0,0,0,0,0,0, 115,115,115,115,115,0,0,228,342,0,0,228,229,229,229,229,229,230,0,0,341,230,0,0,0,0,0,117,3,3,4,0,0,0,0,0,0,0,0,0, 115,115,115,115,115,0,0,0,228,229,229,229,229,229,229,229,229,229,229,229,230,0,0,0,0,0,0,3,3,4,117,0,0,0,0,0,0,0,0,0, 115,115,115,115,115,0,0,0,0,0,0,0,0,2491,2492,2493,0,0,0,0,0,0,114,114,114,114,114,114,0,117,3,3,3,4,0,0,0,0,0,0, 115,115,115,115,115,0,0,0,0,0,0,0,2491,2605,2605,2605,2493,0,0,0,0,0,114,114,114,114,114,114,0,3,3,3,4,117,0,0,0,0,0,0, 115,115,115,115,228,229,342,0,0,0,0,2491,2605,2605,2605,2605,2605,2492,2492,2492,2493,0,114,114,114,114,114,114,0,0,0,0,117,3,4,0,0,0,0,0, 115,115,115,228,229,342,115,0,0,0,0,2604,2605,2718,2718,2718,2718,2718,2718,2718,2605,2492,2493,114,114,114,114,114,0,0,0,0,3,4,117,0,0,0,0,0, 115,115,228,229,342,115,228,229,229,342,0,2717,2719,0,0,0,0,0,0,0,2717,2605,2492,2492,2492,2492,2492,2493,0,0,0,0,0,117,117,0,0,0,0,0, 115,228,342,0,115,228,229,229,342,228,229,229,229,229,229,229,229,229,342,0,0,2717,2718,2718,2718,2718,2718,2719,0,0,0,0,0,117,117,0,0,0,0,0, 115,0,228,342,228,229,229,342,228,229,229,229,229,229,229,229,229,342,228,229,229,342,114,114,114,114,114,114,0,0,0,0,0,117,117,0,0,0,0,0, 228,342,0,228,229,342,0,115,0,0,0,2491,2493,0,0,0,0,228,229,229,342,228,229,342,0,0,0,0,0,0,0,341,229,230,117,0,0,0,0,0, 0,228,229,342,0,228,342,228,342,0,0,2604,2606,0,0,0,0,0,0,0,228,342,0,228,342,0,0,0,0,341,229,230,341,229,230,0,0,0,0,0, 0,0,0,228,229,342,115,0,228,342,0,2717,2718,2492,2492,2492,2493,0,0,0,0,228,229,342,228,229,229,229,229,230,341,229,230,0,0,0,0,0,0,0, 0,0,0,0,0,115,228,342,0,115,0,0,0,2717,2605,2605,2719,0,0,0,0,0,0,115,0,0,0,0,0,341,230,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,228,342,115,0,228,229,229,342,0,2717,2719,0,341,229,342,0,0,0,228,229,229,229,229,229,230,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,115,228,229,342,0,0,228,229,229,229,229,230,0,228,229,229,342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,115,0,0,115,0,0,0,0,2491,2492,2492,2492,2492,2493,0,0,228,229,342,0,0,0,0,0,0,0,341,229,229,229,229,229,229,229, 0,0,0,0,0,0,228,342,0,228,229,229,342,0,2717,2718,2718,2718,2718,2605,2493,0,0,0,228,229,229,229,229,229,229,229,230,341,229,229,229,229,229,229, 0,0,0,0,0,0,0,228,342,0,0,0,228,229,229,229,229,342,0,2717,2719,0,341,229,229,229,229,229,229,229,229,229,229,230,0,0,341,229,229,229, 0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,228,229,229,229,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0, 0,0,0,0,0,0,0,0,228,342,0,0,0,0,0,0,0,0,0,2491,2493,0,0,0,0,0,0,0,0,0,0,0,0,0,341,229,230,0,0,0, 0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,2604,2606,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,2604,2605,2493,0,0,0,0,2491,2493,0,0,0,0,0,341,230,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,228,342,0,0,2491,2492,2492,2492,2492,2492,2605,2605,2605,2492,2492,2492,2492,2605,2606,0,0,0,0,0,117,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,115,0,0,2717,2718,2718,2718,2718,2718,2718,2718,2718,2718,2718,2605,2605,2605,2719,0,0,341,229,229,230,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,2717,2605,2606,0,0,0,117,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,228,342,0,0,0,0,0,0,0,0,0,0,0,0,0,2604,2606,0,0,0,117,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,228,229,229,229,229,229,342,0,0,0,0,0,0,0,2604,2606,0,0,0,117,0,0,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,229,342,0,0,0,0,0,2604,2606,0,0,0,3,3,4,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,2604,2606,0,0,0,0,0,117,0,0,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,229,229,342,0,0,2604,2606,0,0,0,0,0,3,4,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,342,0,2604,2605,2492,2492,2492,2493,0,0,3,4,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,342,2717,2718,2718,2718,2718,2719,0,0,0,117,0,0,0,0,0, 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,229,229,229,229,229,229,342,0,0,117,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,1810,1810,1810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,1810,0,0,0,1810,1810,1810,1810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,1810,1810,1810,0,0,0,0,0,0,0,0,1810,1810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,1810,0,0,0,1810,1810,1810,1810,1810,1810,1810,0,0,0,1810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,1810,1810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1810,1810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,1810,0,0,0,0,0,0,0,0,0,1810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1810,1810,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1810,1810,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1810,1810,1810,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,219,219,219,219,219,219,219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,219,219,219,0,0,218,218,0,219,219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219, 0,0,0,0,0,0,0,0,219,219,0,218,218,219,219,218,218,218,218,0,219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,219,219,219,219,219, 0,0,0,0,0,0,0,0,218,218,0,331,331,331,331,331,331,331,331,218,218,0,219,219,219,219,219,219,219,219,0,0,219,219,219,219,219,219,219,219, 0,0,219,219,219,219,0,218,219,331,0,3783,3784,3785,0,3783,3784,3785,0,331,219,218,0,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 0,0,219,219,219,219,0,219,219,0,0,3896,3897,3898,0,3896,3897,3898,0,0,219,219,0,0,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 0,218,219,219,0,0,218,219,219,0,0,4014,3786,4015,0,4014,3786,4015,0,0,219,219,0,0,0,0,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 0,219,219,0,0,218,219,219,331,0,3671,4127,3899,4128,0,4127,3899,4128,3671,0,331,219,218,0,0,0,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 0,331,0,0,0,219,219,331,0,3783,3784,3785,4351,4352,4352,4352,4353,3783,3784,3785,0,331,219,0,0,0,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,219,219,0,0,3896,3897,3898,4348,4349,4349,4349,4350,3896,3897,3898,0,0,219,218,0,0,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,219,219,0,0,4014,4012,4015,4464,4465,4462,4466,4467,4014,4012,4015,0,0,219,219,0,0,0,0,219,219,219,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,219,219,0,0,4127,4125,4128,4577,4578,4123,4579,4580,4127,4125,4128,0,0,219,219,218,0,0,0,0,219,219,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,218,218,0,0,219,219,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,219,219,218,0,0,0,0,0,1348,1349,1349,0,0,0,0,0,218,219,219,219,219,219,0,0,0,0,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,219,219,219,218,0,0,0,0,1348,1349,1349,0,0,0,0,218,219,219,219,219,219,219,218,0,0,0,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,219,219,219,331,0,0,0,0,0,0,0,0,0,0,0,331,219,219,219,219,4235,4236,4236,4237,0,0,0,0,0,219,219,219,219,219,219, 0,0,0,0,0,331,331,331,0,0,0,0,0,0,0,0,0,0,0,0,0,331,331,331,331,4348,4349,4349,4350,0,3671,0,0,0,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4464,4465,4462,4463,3783,3784,3785,0,0,0,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4577,4578,4123,4576,3896,3897,3898,0,0,0,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3671,0,0,0,0,0,0,0,0,0,0,0,0,4009,3786,4011,0,0,0,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,1348,1349,0,0,3783,3784,3785,0,0,0,0,0,0,0,0,0,0,0,4122,3899,4124,0,0,0,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,1348,1349,0,0,3896,3897,3898,0,0,0,0,0,0,0,0,0,218,0,0,218,331,0,0,0,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4009,4010,4011,0,0,0,0,218,0,0,218,0,331,218,0,331,0,0,0,0,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4122,4123,4124,0,0,0,0,331,0,0,331,0,0,331,0,0,0,0,0,218,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,218,0,0,0,0,218,218,0,0,0,218,218,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,219,0,218,0,0,331,331,0,218,218,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,0,219,218,218,218,218,218,219,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,1348,1349,0,0,0,0,0,0,0,0,331,219,219,219,219,219,219,219,331,331,331,331,331,331,331,331, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,331,331,331,331,331,331,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3671,0,0,0,0,0,0,0,218,218,0,0,0,0, 0,0,0,0,0,0,0,0,0,218,219,218,0,0,0,0,0,0,0,0,0,0,0,0,0,27,28,28,30,218,218,218,218,218,219,219,0,0,0,218, 0,0,0,0,0,0,0,0,0,331,219,219,23,24,25,26,0,0,0,1348,1349,0,0,0,0,140,141,142,143,331,219,219,219,219,331,331,0,218,218,219, 0,0,0,0,0,0,0,0,0,0,219,331,136,137,138,139,0,0,0,0,0,0,0,0,0,253,254,255,256,0,331,331,219,219,0,0,218,219,219,219, 0,0,0,0,0,0,0,0,0,0,331,0,249,250,251,252,0,0,0,0,0,0,0,0,0,362,363,368,369,0,0,0,331,331,0,218,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,362,363,364,365,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3671,0,0,0,0,0,0,0,0,1348,1349,0,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3783,3784,3785,0,0,0,0,0,0,0,0,0,0,331,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3896,3897,3898,0,0,0,0,0,0,3671,0,0,0,0,331,331,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4009,4012,4011,0,0,0,0,0,3783,3784,3785,0,0,0,0,0,331,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4122,4125,4124,0,0,0,0,0,3896,3897,3898,0,218,0,0,0,0,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4009,4010,4011,0,331,218,0,0,0,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4122,4123,4124,218,0,331,0,0,0,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,219,0,0,218,0,0,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,331,218,0,219,0,0,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,0,219,0,0,219,219 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,3671,0,0,0,3671,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,4235,4236,4236,4236,4237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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: maps/hoenn/anime-misty-village.tmx ================================================ 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,114,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,116,116,116,114,114,116,116,116,116,116,116,114,0,0,0,0, 114,114,114,0,0,0,0,0,0,114,114,114,116,116,116,116,116,116,116,116,116,116,114,0,0,0,0, 114,114,0,0,0,0,0,0,0,0,0,114,114,116,116,116,116,116,116,116,116,116,116,114,0,0,0, 114,0,0,0,0,0,0,0,0,0,0,0,114,116,116,116,116,116,116,116,116,116,116,114,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,114,116,116,116,116,116,116,116,116,116,116,114,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,114,116,116,116,116,116,116,116,116,116,116,114,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,114,114,116,116,116,116,116,116,116,116,114,114,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,116,116,116,116,116,114,114,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,116,114,114,114,114,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3282,3283,3284,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3395,3396,3397,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,2837,2498,2498,2498,2838,0,0,0,0,3395,3396,3397,0,0,0,4409, 0,0,0,0,0,0,0,0,0,0,0,1811,1812,1812,1812,1813,0,93,317,0,3395,3396,3397,0,0,4409,4635, 0,0,0,0,0,0,0,0,0,0,0,662,0,0,0,0,0,0,317,0,3395,3396,3397,0,4409,4635,0, 0,0,0,0,0,0,0,0,93,0,0,0,0,0,0,0,0,0,0,0,3508,3509,3510,0,4522,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,0, 0,0,0,0,0,3282,3283,3283,3283,3284,0,0,0,0,0,0,2,3,3,3,3,4,0,4409,4635,0,0, 0,0,0,0,0,3508,3509,3509,3509,3510,2,3,3,4,0,662,115,0,0,0,0,3,4,4522,0,0,0, 0,0,0,0,0,0,0,0,0,0,115,0,0,3,3,3,3,0,2,3,3,4,117,4522,0,0,0, 0,0,0,4409,4410,4410,4410,4410,4411,0,228,342,0,0,0,0,0,0,115,0,0,117,117,4522,0,0,0, 0,0,4409,4635,0,0,0,0,4637,4410,4411,228,342,0,0,2,3,2,3,3,4,117,3,4,4522,0,0, 0,4409,4635,0,0,0,0,0,0,0,4637,4411,115,0,2,3,0,115,0,0,117,3,4,117,4522,0,0, 4409,4635,0,0,0,0,0,0,0,0,0,4524,115,0,228,342,0,228,342,0,117,0,117,117,4522,0,0, 0,0,0,0,0,0,0,0,0,0,0,4524,115,0,0,228,229,342,228,229,230,341,230,117,4522,0,0, 0,0,0,0,0,0,0,0,0,0,0,4524,228,342,0,0,0,115,0,0,341,230,341,230,4522,0,0, 0,0,0,0,0,0,0,0,0,0,0,4637,4411,228,229,342,0,228,229,229,230,341,230,4409,4635,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,4637,4410,4411,228,342,0,341,229,229,230,4409,4635,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,4637,4411,228,229,230,4409,4410,4410,4635,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4637,4410,4410,4410,4635,0,0,0,0,0,0,0 219,219,0,0,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,0,0,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,0,0,219,219,219,219,219,219,219,219,219,219,219,219,4769,4770,4770,4772,331,331,331,219,219,219,219, 219,219,0,0,219,219,219,219,219,219,219,219,219,219,219,219,4882,4883,4883,4885,3736,0,3849,331,219,219,219, 219,219,0,0,331,219,219,4769,4770,4770,4772,331,331,331,331,331,4995,4996,4997,4998,3849,0,0,218,219,219,331, 219,219,218,0,0,219,219,4882,4883,4883,4885,0,0,0,0,0,5108,5109,5110,5111,0,3849,3736,331,219,331,0, 219,219,219,0,0,331,219,4995,4996,4997,4998,0,0,0,0,0,0,0,0,2014,0,0,0,218,331,0,0, 219,219,219,0,0,0,331,5108,5109,5110,5111,0,0,0,0,0,0,0,0,2014,3849,3623,0,219,0,0,0, 219,219,219,0,0,0,0,0,0,0,0,0,0,0,0,206,0,0,0,2014,218,218,3849,219,0,0,0, 219,219,219,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2127,331,331,218,331,0,0,0, 219,219,219,219,218,0,0,0,3736,3736,0,0,0,0,0,0,0,0,0,0,0,0,331,0,0,0,0, 219,219,219,219,219,3623,3849,0,218,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,219,219,331,331,1902,1902,1902,331,219,0,0,0,0,0,0,0,0,3272,3273,0,0,0,0,0,0,0, 219,219,331,0,0,0,0,0,0,331,0,0,0,0,0,0,0,0,3385,3386,0,0,0,0,0,0,0, 219,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3498,3499,0,0,0,0,0,0,0, 331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3611,3612,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 4635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,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: maps/hoenn/anime-mount-kirikiri.tmx ================================================ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,114,114,0,0,0,0,0,0, 0,0,0,0,0,0,0,114,114,114,114,0,0,0,0,0, 0,0,0,0,0,114,114,125,125,125,125,114,0,0,0,0, 0,0,0,0,229,125,125,125,125,125,125,125,114,0,0,0, 0,0,0,229,125,125,125,125,125,125,125,125,0,114,0,0, 0,0,230,125,125,125,125,125,125,125,125,125,0,0,3,0, 0,229,125,125,125,125,125,125,125,125,125,125,125,125,125,3, 114,114,125,125,125,125,125,125,125,125,125,125,125,125,125,0, 114,114,125,125,125,125,125,125,125,125,125,125,125,125,125,0, 114,114,0,125,125,125,125,125,125,125,125,125,125,125,125,0, 114,114,114,0,125,125,125,125,125,125,125,125,125,125,0,0, 0,0,114,114,0,125,125,125,125,125,125,125,125,0,0,0, 0,0,0,114,114,0,0,0,0,0,0,0,0,114,0,0, 0,0,0,0,114,114,114,114,114,114,114,114,114,114,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,219,219,0,0,0,0,0,0, 0,0,0,0,0,0,0,219,0,0,219,0,0,0,0,0, 0,0,0,0,0,219,219,0,0,0,0,219,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,219,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,219,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,1810,1810, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1810, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,11,12,12,13,0,0,0,0,0, 0,0,0,0,0,11,12,124,0,0,126,13,0,0,0,0, 0,0,0,0,11,124,0,124,0,0,126,126,13,0,0,0, 0,0,0,11,124,124,0,237,351,0,126,126,126,13,0,0, 0,0,11,124,124,237,238,351,237,238,239,126,126,126,13,0, 0,11,124,124,237,238,351,124,0,0,350,239,126,126,126,13, 0,124,124,237,238,351,124,237,238,238,239,350,239,126,126,126, 0,124,237,238,351,124,237,238,238,238,238,239,350,239,126,126, 0,237,351,0,124,237,238,351,0,0,350,238,239,350,239,126, 0,0,237,351,237,238,351,237,238,238,239,0,350,239,350,239, 0,0,0,237,351,0,237,238,238,465,238,238,239,350,239,0, 0,0,0,0,237,238,238,238,238,578,238,238,238,239,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,553,554,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,666,667,0,0,0,0,0,0, 0,0,0,0,0,0,670,0,779,780,0,0,0,0,0,0, 0,0,0,0,0,0,671,0,916,0,0,0,0,0,0,0, 0,0,0,0,0,0,783,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,670,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,783,0,0,0,0,0,0, 218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,0,0,916,0,0,0,0,0,0,0,0,0,0,0,0, 331,0,218,0,0,670,0,0,0,0,0,916,0,0,0,0, 0,0,331,218,0,783,0,0,0,0,0,0,0,0,0,0, 0,0,0,331,218,0,218,218,0,0,0,218,218,0,0,0, 0,0,0,0,219,218,219,219,0,0,218,219,219,218,0,0 ================================================ FILE: maps/hoenn/anime-north-petalburg.tmx ================================================ 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2503,2504,2505,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2616,2617,2618,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2616,2617,2618,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2616,2617,2618,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,2503,2504,2505,0,0,0,2616,2617,2618,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,2503,2617,2617,2617,2505,0,0,2616,2617,2618,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,2503,2617,2617,2617,2730,2617,2504,2504,2617,2617,2617,2504,2504,2504,2504,2505,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,2616,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2618,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,2729,2617,2617,2617,2617,2617,2730,2617,2617,2617,2730,2730,2730,2730,2730,2731,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,2729,2617,2617,2617,2731,0,2616,2617,2618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,2729,2730,2731,0,0,2616,2617,2618,0,0,0,2488,2489,2489,2489,2489,2489,2489,2490,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,2616,2617,2618,0,0,0,2601,2602,2602,2602,2602,2602,2602,2603,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,2616,2617,2618,0,0,0,2601,2602,2602,2602,2602,2602,2602,2603,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,2616,2617,2618,0,0,0,2601,2602,2602,2602,2602,2602,2602,2603,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,2616,2617,2618,0,0,0,2714,2715,2715,2715,2715,2715,2715,2716,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,2616,2617,2618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,2616,2617,2618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,2729,2730,2731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 212,213,212,213,212,213,212,213,212,213,212,213,212,213,0,0,0,0,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,325,326,325,326,325,326,325,326,325,326,325,326,0,0,0,0,325,326,325,326,325,326,325,326,325,326,325,326,438,439, 212,213,3665,3666,3666,3666,3669,0,0,136,137,138,139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213, 438,439,3778,3779,3779,3779,3782,0,0,249,250,251,252,0,0,0,0,0,0,0,927,928,928,928,931,0,0,0,0,0,438,439, 212,213,3891,3892,3892,3892,3895,0,0,362,363,364,365,0,0,0,0,0,0,0,1040,1041,1041,1041,1044,0,0,0,0,0,212,213, 438,439,4004,4007,4007,4007,4008,0,0,0,0,0,0,0,0,0,0,0,0,0,1153,1154,1155,1156,1157,0,0,0,0,0,438,439, 212,213,4004,4006,4007,4006,4008,0,0,0,0,0,0,0,0,0,0,0,0,0,1266,1267,1268,1269,1270,0,0,0,0,0,212,213, 438,439,4004,4007,4007,4007,4008,0,0,2597,2598,2599,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,438,439, 212,213,4004,4006,4007,4006,4008,0,0,2710,2711,2712,0,0,0,205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213, 438,439,4117,4119,4119,4119,4121,0,0,2823,2824,2825,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,438,439, 212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213, 438,439,0,0,0,0,3658,3659,3659,3659,3662,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,438,439, 212,213,0,0,0,0,3771,3772,3772,3772,3775,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213, 438,439,0,0,0,0,3884,3885,3885,3885,3888,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,438,439, 212,213,212,213,0,0,3997,4000,3999,4000,4001,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213, 438,439,438,439,0,0,4110,4112,4112,4112,4114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,438,439, 212,213,212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213, 438,439,438,439,438,439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,0,0,0,0,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,0,0,0,0,438,439,438,439,438,439,438,439,438,439,438,439,438,439 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,23,24,25,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,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: maps/hoenn/anime-oldale-ruins.tmx ================================================ 114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114, 114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,114,114,114,114, 114,114,114,116,116,116,116,116,116,114,0,0,0,0,0,0,0,114,114,114,114,114,114,114, 114,114,114,116,116,116,116,116,116,116,114,114,0,0,0,0,114,114,114,114,114,114,114,114, 114,114,114,116,116,116,116,116,116,116,116,114,0,0,0,0,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,116,116,116,116,116,114,0,0,0,0,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,116,116,116,116,114,0,0,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,116,116,116,116,114,0,0,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,116,116,116,116,116,116,0,0,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114, 114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114, 114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114, 114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,0,0,114,114,114,114,114,114,114,114,114,114 0,0,0,0,0,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524, 0,0,0,0,0,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524, 0,0,0,0,0,0,4636,4636,4522,0,0,0,0,0,0,0,0,0,0,0,0,4524,4636,4636, 0,0,0,0,0,0,0,0,4522,0,0,0,0,0,0,0,0,0,0,0,4524,4636,0,0, 0,0,2,3,3,3,3,3,4,4636,4522,0,0,0,0,0,0,0,0,4524,4636,0,0,0, 0,0,115,2,3,3,3,4,3,4,4522,0,0,0,0,0,4524,4636,4636,4636,0,0,0,0, 0,0,115,115,0,0,0,3,4,3,3,4,4522,0,0,4524,4636,0,0,0,0,0,0,0, 0,0,115,228,1348,229,342,0,3,3,4,117,4522,0,0,4524,0,0,0,0,0,0,0,0, 0,0,115,341,1348,342,228,229,342,0,117,117,4522,0,0,4524,0,0,0,0,0,0,0,0, 0,0,228,230,0,228,342,0,228,1348,230,117,4522,4524,4636,4636,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,115,0,0,0,0,117,4522,4524,0,0,0,0,0,0,0,0,0,0, 0,0,0,2,3,3,3,0,0,0,0,3,3,3,4,0,0,0,0,0,0,0,0,0, 0,0,0,115,0,228,230,0,0,2,3,4,0,0,3,3,4,0,0,0,0,0,0,0, 0,0,0,115,0,0,0,0,2,115,0,117,4,0,0,0,117,0,0,0,0,0,0,0, 0,0,0,115,0,0,0,0,115,228,456,230,117,0,0,0,117,0,0,0,0,0,0,0, 0,0,0,228,342,0,0,0,228,229,569,229,230,0,0,0,117,0,0,0,0,0,0,0, 0,0,0,0,228,342,0,0,0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0, 0,0,0,0,0,228,229,229,229,342,0,0,0,0,0,0,228,230,117,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,341,229,229,230,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,228,229,229,229,229,229,230,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,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,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 212,213,212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 438,439,438,439,438,439,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 212,213,212,213,212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218, 438,439,325,326,325,326,325,326,0,0,0,0,0,0,0,0,0,0,0,0,218,0,0,219, 212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,218,0,219, 438,439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,95,95,331,218,219, 212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,95,95,95,0,219,219, 438,439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,95,95,218,0,219,219, 212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,218,0,95,95,95,331,0,219,219, 325,326,0,0,0,0,0,0,0,0,0,0,0,0,218,219,218,0,218,95,0,218,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,219,219,0,331,0,218,219,219,219, 99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,331,331,0,0,0,331,219,219,219, 212,213,0,0,0,0,0,0,907,0,0,0,907,0,0,0,0,0,0,218,0,219,219,219, 438,439,0,0,0,0,0,907,0,0,0,0,0,907,0,0,0,0,0,331,218,331,219,219, 212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,0,331,0,219,219, 438,439,99,100,0,0,0,907,0,0,0,0,0,907,0,0,0,0,331,0,0,218,219,219, 212,213,212,213,0,0,0,0,0,907,0,907,0,0,0,0,0,0,0,0,218,219,219,219, 438,439,438,439,99,100,99,100,0,0,0,0,0,0,0,0,0,0,0,0,331,219,219,219, 212,213,212,213,212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,331,219,219, 438,439,438,439,438,439,438,439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,331 ================================================ FILE: maps/hoenn/anime-rinshin-town.tmx ================================================ 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,1671,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,325,326,325,326,325,326,325,326,325,326,325,326,325,326,325,326, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2488,2489,2490,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2601,2602,2603,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2601,2602,2603,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2714,2602,2603,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2601,2603,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2601,2603,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2601,2603,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2601,2603,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2714,2716,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,2491,2492,2492,2492,2492,2492,2492,2492,2492,2492,2492,2492,2492,2492,2492,2492,2492,2492,2492,2492,2492,2492,2492,2493,0,0,0,0, 0,0,0,0,2717,2718,2718,2718,2718,2718,2718,2718,2718,2718,2718,2718,2718,2718,2718,2718,2718,2605,2605,2718,2718,2718,2718,2719,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2604,2606,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2604,2606,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2604,2606,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2604,2606,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2604,2606,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2604,2606,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2604,2606,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2717,2719,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,0,0,0,1551,1552,1553,1554,1555,1557,1551,1552,1553,0,0,0,0, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,1449,1450,1450,1664,1665,1666,1780,0,1783,1664,1665,1666,1450,1450,1451,0, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,1562,212,213,1777,1784,1784,1893,1894,1896,1784,1784,1786,212,213,1564,0, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,1562,438,439,2003,2004,2004,2006,2007,2009,2011,2011,2012,438,439,1564,0, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,1562,212,213,2116,2117,2118,2119,2120,2122,2116,2117,2118,212,213,1564,0, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,1562,438,439,212,213,0,2232,2233,2235,0,212,213,438,439,1564,0, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,1562,212,213,325,326,0,89,0,89,0,325,326,212,213,1564,0, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,1562,325,326,0,0,89,0,0,0,4204,4205,4205,4208,326,1564,0, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,1449,1450,1450,1450,1450,1451,0,0,0,4317,4318,4318,4321,1450,1451,0, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,0,206,0,0,0,4430,4431,4431,4434,0,0,0, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,0,0,0,0,0,4543,4546,4545,4547,0,0,0, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,0,0,0,0,0,4543,4545,4546,4547,0,0,0, 438,439,325,326,325,326,325,326,325,326,325,326,325,326,325,326,325,326,325,326,0,0,0,0,0,4543,4546,4204,4205,4205,4208,0, 212,213,144,145,145,145,145,149,0,3163,3387,3388,3389,3390,3387,3388,3615,3389,3390,3387,3388,3389,3390,0,0,4656,4658,4317,4318,4318,4321,0, 438,439,257,258,259,145,261,262,0,0,3500,3501,3502,3503,3500,3501,3728,3502,3503,3500,3501,3502,3503,0,0,0,0,4430,4431,4431,4434,0, 212,213,370,371,372,373,374,375,0,0,2936,2938,2938,3161,3159,3051,3051,0,3161,3159,0,0,3161,0,0,0,0,4543,4546,4545,4547,0, 438,439,483,484,485,486,487,488,0,0,3049,0,3275,2936,3051,3163,0,0,3164,3051,0,0,2937,0,0,0,0,4656,4658,4658,4660,0, 212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 438,439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,24,25,26,0,0,0,0,0,0,0,0,0,0,0,0, 438,439,0,0,0,0,0,0,0,0,0,0,205,0,0,0,136,137,138,139,0,0,0,0,3300,3301,3301,3301,3305,0,0,0, 212,213,212,213,212,213,0,0,0,0,0,0,0,0,0,0,249,250,251,252,0,0,0,0,3413,3414,3414,3414,3418,0,0,0, 438,439,438,439,438,439,0,0,0,0,0,0,0,0,0,0,362,363,364,365,0,0,0,0,3526,3527,3528,3530,3531,0,0,0, 212,213,212,213,212,213,212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3639,3640,3641,3643,3644,0,0,0, 438,439,438,439,438,439,438,439,438,439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,0, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,0,0,0,0,0,0,0,0,0,0,0,0, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,0,0,0,0,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,0,0,0,0,438,439,438,439,438,439,438,439 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,100,0,0,0,0,0,0,0,0,0,99,100,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,100,0,0,0,0,0,99,100,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,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,32,32,32,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,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: maps/hoenn/anime-rubello-town.tmx ================================================ 114,114,114,114,114,114,114,114,114,114,0,4184,4184,4184,4184,4184, 114,114,114,114,114,114,114,0,0,0,0,4184,4184,4184,4184,4184, 114,114,114,0,0,0,0,114,4184,4184,4184,4184,4184,4184,4184,4184, 0,0,0,114,114,114,114,114,4184,4184,4184,4184,4184,4184,4184,4184, 0,0,114,114,114,114,114,114,4184,4184,4184,4184,4184,4184,4184,4184, 114,114,114,114,114,114,114,114,4184,4184,4184,4184,4184,4184,4184,4184, 114,114,114,114,114,114,114,114,114,114,4184,4184,4184,4184,4184,4184, 114,114,114,114,114,114,0,0,114,114,4184,4184,4184,4184,4184,4184, 114,114,114,114,114,114,114,114,114,114,114,114,4184,4184,4184,4184, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114 4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184, 4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184, 4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184, 4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184, 4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184, 4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,114,114,114, 4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,114,114,114,114,114, 4184,4184,4184,4184,4184,4184,114,114,114,114,0,114,114,114,114,114, 4184,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,0,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114 0,0,0,0,0,0,0,0,0,0,117,4409,4635,0,0,0, 0,0,0,0,0,0,0,341,229,229,230,4522,0,0,0,0, 0,0,0,341,229,229,229,230,4409,4410,4410,4635,0,0,0,0, 229,229,229,230,0,0,0,0,4522,0,0,0,0,0,0,0, 229,342,0,0,0,0,0,0,4522,0,0,0,0,0,0,0, 0,115,0,0,0,0,0,0,4522,0,0,0,0,0,0,0, 0,228,229,342,0,0,0,0,4636,4636,4522,0,0,0,0,0, 0,0,0,228,229,229,229,342,0,0,4522,0,0,0,0,0, 0,0,0,0,0,0,0,228,342,0,4636,4636,4522,0,0,0, 0,0,0,0,0,0,0,0,228,229,342,0,4636,4636,4636,4636, 0,0,0,0,0,0,0,0,0,0,228,229,229,229,229,229, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,4524,4636,4636,4636, 0,0,0,0,0,0,0,0,0,0,4524,4636,4636,0,341,229, 0,0,0,0,0,4524,4636,4636,4636,4636,341,229,229,229,230,0, 4524,4636,4636,4636,4636,4636,0,0,0,0,117,0,0,0,0,0, 4636,0,0,0,0,0,0,0,0,341,230,0,0,0,0,0, 229,229,229,229,229,229,229,229,229,230,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,2488,2489,2489, 0,0,0,0,0,0,0,0,0,0,0,0,0,2714,2715,2715, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2488, 115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2601, 228,229,229,229,342,0,0,0,0,0,0,2488,2489,2489,2489,2602, 0,0,0,0,115,0,0,0,0,0,0,2714,2715,2715,2715,2715, 0,0,0,0,228,229,342,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,228,229,342,0,0,0,0,341,229,229, 0,0,0,0,0,0,0,0,228,229,229,229,229,230,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,2488,2489,2489,2489,2489,2489,2490,0,0,0,0,0,0, 2489,2489,2489,2602,2715,2715,2715,2715,2715,2716,0,0,0,0,0,0, 2602,2602,2602,2716,0,0,0,0,0,0,0,0,0,0,0,0, 2714,2602,2603,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,2601,2603,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,2601,2603,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,2601,2603,0,0,0,0,0,0,0,0,0,0,0,0,0, 2489,2602,2602,2489,2490,0,0,0,0,0,0,0,0,0,0,0, 2602,2715,2715,2602,2602,2490,0,0,0,0,0,0,0,0,0,0, 2603,0,0,2714,2602,2602,2490,0,0,0,0,0,0,0,0,0, 2716,0,0,0,2714,2602,2602,2489,2489,2490,0,0,0,0,0,0, 0,0,0,0,0,2714,2715,2715,2715,2716,0,0,0,0,0,0, 341,229,229,229,342,0,0,0,0,0,0,0,0,0,0,0, 230,0,0,0,228,229,229,229,229,342,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,228,229,229,229,342,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,228,229,229 219,219,219,219,219,219,219,219,331,0,0,0,0,0,0,0, 219,219,219,331,331,331,331,0,0,0,0,0,0,0,0,0, 331,331,331,0,218,218,218,218,0,0,0,0,0,0,0,0, 0,0,218,0,331,219,331,331,0,0,0,0,0,0,0,0, 0,0,219,218,0,331,0,0,0,0,0,0,0,0,0,0, 0,0,331,331,218,0,0,218,0,0,0,0,0,0,0,0, 0,0,0,0,331,0,0,331,218,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,331,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,218,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,331,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,23,24,25, 0,0,0,0,0,0,0,0,0,0,0,0,0,136,137,138, 0,0,0,0,0,0,0,0,0,0,0,0,0,249,250,251 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,218,0,0, 0,0,0,0,0,0,0,0,0,0,0,218,0,331,0,0, 0,0,0,0,0,0,0,0,0,0,0,331,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,38,39,39,39,39,43,0,0,0,0, 0,0,0,0,0,0,151,152,152,152,152,156,0,0,0,0, 26,0,0,0,0,0,264,265,265,265,265,269,0,0,0,0, 139,0,0,0,0,0,377,378,379,380,381,382,0,0,0,0, 252,0,0,0,0,0,490,491,492,493,494,495,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,362,363,364, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,2283,2284,2284,2286,0,0, 0,0,0,0,0,0,0,0,0,0,2396,2397,2397,2399,0,0, 0,0,0,0,0,0,0,0,0,0,2509,2510,2511,2512,0,0, 0,0,0,0,0,0,0,0,0,0,2622,2623,2624,2625,0,0, 0,218,218,218,0,0,0,0,0,0,0,0,0,0,0,0, 218,219,219,219,0,0,0,0,0,0,0,0,0,0,0,0, 219,219,219,219,0,0,0,0,0,0,0,0,0,0,0,0, 219,219,219,219,218,218,0,0,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,218,218,0,0,0,0,0,0,0,218, 219,219,219,219,219,219,219,219,218,218,218,218,0,0,218,219, 219,219,219,219,219,219,219,219,219,219,219,219,218,218,219,219 365,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,27,28,28,30,0,0,0,0,0, 0,0,0,0,0,0,0,140,141,142,143,0,0,0,0,0, 0,0,0,0,0,0,0,253,254,255,256,0,0,0,0,0, 0,0,0,0,0,0,0,362,363,368,369,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 218,219,218,218,218,0,218,0,0,0,0,0,0,0,0,0, 219,219,219,219,219,218,219,218,218,0,218,218,0,0,0,0, 219,219,219,219,219,219,219,219,219,218,219,219,218,218,218,218 ================================================ FILE: maps/hoenn/anime-shroomish-forest.tmx ================================================ 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,331,331,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219 ================================================ FILE: maps/hoenn/anime-the-greenhouse.tmx ================================================ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,114,114,114,114,114,114,114,114,114,116,0, 0,0,0,0,116,114,114,114,114,114,114,114,114,114,114,114, 0,0,116,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114, 0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,116,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,114,114,114,114,114,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,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,3,3,3,3,3,3,3,3,3,4,0, 0,0,0,0,115,0,0,0,0,0,775,0,0,662,3,3, 0,0,2,3,3,0,0,0,0,0,0,662,775,0,0,0, 0,2,115,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,115,115,0,0,0,0,0,0,0,0,662,0,0,0,0, 0,115,115,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,115,228,229,342,0,662,0,0,0,0,0,0,0,0,0, 0,228,229,342,228,229,229,229,229,229,229,229,229,229,229,229 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 3,3,3,3,4,0,0,0,0,0,0,0,0,0,0,0, 775,0,0,0,3,3,3,3,3,3,3,3,3,3,4,0, 662,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,775,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 229,229,229,229,229,229,229,229,229,342,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,1810,1810,1810,1810,1810,1810,1810,1810,1810,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,1810,1810, 0,0,0,1810,1810,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1810,1810,1810,1810,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,1810,1810,1810,1810,1810,1810,1810,1810,1810,1810,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,1810,1810, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,2083,2084,2084,2084,2084,2088,0,0,0,0,0,0, 0,0,0,218,2196,2197,2197,2197,2197,2201,0,0,0,0,0,0, 0,0,0,219,2309,2310,2311,2312,2313,2314,0,0,0,0,0,0, 0,0,0,219,2422,2423,2424,2425,2426,2427,1902,1902,1902,1902,1903,0, 0,0,0,219,331,0,0,0,0,0,0,0,0,0,2017,1902, 0,0,0,331,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1348 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,218,218,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,219,219,218,0,218,218,218,218,218,0,0,0,0,0,0, 0,331,219,219,218,219,219,219,219,219,218,218,218,218,0,0, 0,0,219,219,219,219,219,219,219,219,219,219,219,219,218,218, 1902,1902,331,219,219,219,219,219,219,219,219,219,219,219,219,219, 0,0,0,331,219,219,219,219,219,219,219,219,219,219,219,219, 0,0,0,0,331,331,331,331,331,331,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,218,218,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,331,331,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ================================================ FILE: maps/hoenn/anime-valley-of-steel.tmx ================================================ 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,116,116,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,116,119,119,119,116,116,119,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 0,0,0,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,0,119,119,119,119,119,119,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 0,0,0,0,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,119,119,119,119,119,119,119,119,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 0,0,0,0,0,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,119,119,119,119,119,119,119,119,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,125,125,125,125,125,125,125,119,119,119,119,119,119,119,119,119,119,119,119,119,119,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,125,125,125,125,125,125,125,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,116,116,116,116,116,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,0,125,125,125,125,125,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,116,116,116,116,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,0,0,0,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,116,116,116,116,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,0,0,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,116,116,116,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,116,116,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,116,116,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,116,119,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,116,116,116,116,116,116, 0,0,0,0,0,0,0,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,116,119,119,116,116,116,116,116,116, 0,0,0,0,0,0,0,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,116,116,116,116,116,116, 0,0,0,0,0,0,0,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,116,116,116,116, 0,0,0,0,0,0,0,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,116,116,116,116, 0,0,0,0,0,0,0,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,116,116,116,116, 0,0,0,0,0,0,0,0,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,116,116,116,116, 0,0,0,0,0,0,0,0,0,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,0,0,0,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,119,119,119,119,119,119,119,119,119,119,119,119,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,119,119,119,119,119,119,119,116,116,116,116,116,116,116 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,219,219,331,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,11,12,12,12,12,0,0,12,12,12,12,12,12,13,0,0,0,12,12,13,0,0,0,2,3,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0, 0,0,11,12,0,0,0,0,0,0,0,0,0,0,0,0,12,13,0,0,0,0,12,13,2,3,3,0,0,0,2,3,3,3,0,0,0,0,0,0,0,0,0,0, 0,0,237,238,238,238,351,0,0,0,0,0,0,0,0,0,0,126,0,0,0,0,0,126,115,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,237,238,238,238,351,0,0,0,0,0,350,239,0,0,0,0,0,126,115,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0, 238,351,0,0,0,0,0,0,0,0,237,351,0,0,0,0,126,0,0,0,0,350,238,239,228,229,229,342,0,0,228,342,0,0,0,0,0,0,0,0,0,0,0,0, 0,237,238,351,0,0,0,0,0,0,0,124,0,0,0,350,239,0,0,0,0,126,344,232,459,232,345,228,342,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,124,0,0,0,0,0,0,0,237,238,238,238,239,0,0,0,0,0,126,120,344,572,345,231,345,115,0,0,228,229,342,0,0,0,0,0,0,0,0,0,0, 0,0,0,237,238,238,238,351,0,0,0,0,0,0,0,0,0,0,0,0,0,126,120,120,0,118,0,118,115,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,237,351,0,0,0,0,0,0,0,350,238,238,238,238,239,120,120,0,231,345,118,228,229,342,0,0,228,342,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,237,351,0,0,0,0,0,0,126,0,0,344,232,232,233,120,0,0,118,231,232,345,115,0,0,0,228,342,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,237,238,238,351,0,0,0,126,0,344,233,0,5,7,120,0,0,231,232,345,118,228,342,0,0,0,115,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,237,238,238,238,239,0,120,0,0,231,233,120,0,0,0,0,118,231,345,228,342,0,0,115,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,344,232,232,233,5,7,344,232,233,0,0,0,0,118,0,231,345,228,342,0,228,342,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,344,232,459,233,0,0,0,231,233,120,0,0,0,0,0,0,231,345,0,231,345,115,0,0,228,342,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,344,232,233,344,572,232,232,232,232,232,232,233,0,0,0,0,0,0,0,231,232,345,118,115,0,0,0,228,229,229,342,0,0,0, 0,0,0,0,0,0,0,0,344,232,233,344,232,233,0,0,0,0,0,0,0,0,0,0,0,5,7,0,344,232,345,118,118,228,229,229,229,342,0,0,228,229,342,0, 0,0,0,0,0,0,0,0,120,344,232,233,0,0,0,0,0,0,0,0,0,0,0,0,0,231,233,344,233,0,118,118,231,345,5,6,7,115,0,0,0,0,115,0, 0,0,0,0,0,0,0,0,120,120,0,0,0,0,0,0,5,6,6,6,7,0,0,344,232,232,232,233,344,345,118,231,345,118,231,459,233,115,0,0,0,0,115,0, 0,0,0,0,0,0,0,0,120,120,0,5,7,0,0,0,118,0,0,0,6,7,344,233,344,232,232,232,233,118,231,345,118,231,232,572,345,228,1461,229,342,0,115,0, 0,0,0,0,0,0,0,0,120,6,7,231,233,0,0,0,118,0,344,232,232,233,120,344,233,344,232,232,345,231,345,118,231,345,0,0,231,232,1461,345,115,0,115,0, 0,0,0,0,0,0,0,0,120,0,6,7,0,0,5,6,6,0,120,5,7,344,233,120,344,233,344,345,231,345,118,231,345,118,0,0,0,0,0,118,115,0,115,0, 0,0,0,0,0,0,0,0,6,7,0,120,0,0,231,232,345,0,120,231,233,120,344,233,120,344,233,231,345,118,231,345,118,118,5,7,0,0,5,2,3,0,115,2, 0,0,0,0,0,0,0,0,0,6,7,120,0,0,0,0,231,232,233,0,0,120,120,344,233,120,344,345,118,231,345,118,118,118,231,233,0,5,6,115,0,0,115,115, 0,0,0,0,0,0,0,0,0,0,120,120,0,0,0,0,0,0,0,0,0,120,120,120,344,233,120,118,231,345,118,118,118,231,232,232,345,118,2,3,0,0,115,115, 0,0,0,0,0,0,0,0,0,0,120,6,6,6,6,7,0,0,0,0,0,6,6,6,6,6,6,5,7,7,6,118,231,232,345,0,118,118,115,0,0,2,3,115, 0,0,0,0,0,0,0,0,0,0,6,6,6,6,7,6,6,6,7,0,0,0,0,0,0,0,0,231,233,120,6,6,0,0,231,345,118,118,115,0,2,3,0,115, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,7,6,6,6,6,7,0,0,0,0,0,0,6,6,6,7,0,0,118,118,118,115,0,115,0,2,3, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,7,120,0,0,0,0,0,0,0,0,0,6,6,6,6,118,118,115,0,115,0,115,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,6,6,6,6,7,0,0,0,0,0,0,0,0,5,6,118,115,0,115,0,115,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,7,6,6,6,6,7,0,0,0,0,118,5,6,115,0,115,0,115,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,7,6,6,6,6,6,6,118,2,3,0,115,2,3,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6,6,6,6,6,6,6,115,0,0,115,115,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,219,219,218,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,219,219,219,219,219,218,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,219,218,218,219,218,0,0,218,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,219,219,219,219,219,218,218,219,219,218,218,218,218,218,218,218,218,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,0,0,0,0,0,0,0 ================================================ FILE: maps/hoenn/anime-volley-town.tmx ================================================ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,3752,3753,3754,3755,0,3752,3753,3754,3755,3752,3753,3754, 0,0,0,0,3865,3866,3867,3868,0,3865,3866,3867,3868,3865,3866,3867, 0,0,0,0,3978,3979,3980,3981,0,3978,3979,3980,3981,3978,3979,3980, 0,0,0,0,4091,4092,4093,4094,0,4091,4092,4093,4094,4091,4092,4093, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 3755,0,3752,3753,3754,3755,0,23,24,25,26,0,0,0,0,0, 3868,0,3865,3866,3867,3868,0,136,137,138,139,0,0,0,0,0, 3981,0,3978,3979,3980,3981,0,249,250,251,252,0,0,0,0,0, 4094,0,4091,4092,4093,4094,0,362,363,364,365,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,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: maps/hoenn/birth-island.tmx ================================================ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,116,114,114,114,116,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,116,114,114,114,114,2602,114,114,114,114,116,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,114,114,114,114,114,2602,2602,2602,114,114,114,114,114,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,116,114,114,114,114,114,2602,2602,2602,114,114,114,114,114,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,116,114,114,114,114,114,2602,2602,2602,2602,2602,114,114,114,114,114,116,0,0,0,0,0,0, 0,0,0,0,0,0,116,116,114,114,114,114,2602,2602,2602,2602,2602,2602,2602,114,114,114,114,114,116,0,0,0,0,0, 0,0,0,0,0,116,114,114,114,114,114,114,2602,2602,2602,2602,2602,2602,2602,114,114,114,114,114,116,0,0,0,0,0, 0,0,0,0,116,116,114,114,114,114,114,2602,2602,2602,2602,2602,2602,2602,2602,2602,114,114,114,114,114,116,116,0,0,0, 0,0,0,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,0,0, 0,0,0,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,0,0, 0,0,0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0, 0,0,0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,4636,4636,4636,4,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,2,115,0,0,0,117,4,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,2,4636,4636,0,0,0,4636,4636,4,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,2,4636,0,0,0,2942,0,0,0,4636,4,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,2,115,0,0,0,2488,0,2490,0,0,0,117,4,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,2,4636,4636,0,0,2488,0,0,0,2490,0,0,4636,4636,4,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,2,115,0,0,0,0,2601,0,0,0,2603,0,0,0,0,117,4,0,0,0,0,0,0, 0,0,0,0,0,0,2,2,4636,0,0,0,2488,0,0,0,0,0,2490,0,0,0,4636,4,4,0,0,0,0,0, 0,0,0,0,0,2,2,115,0,0,0,2488,0,0,0,0,0,0,0,2490,0,0,0,4636,4,4,0,0,0,0, 0,0,0,0,2,2,4636,4636,0,0,0,2601,0,0,0,0,0,0,0,2603,0,0,0,0,117,117,4,0,0,0, 0,0,0,2,2,115,0,0,0,0,2488,0,0,0,0,0,0,0,0,0,2490,0,0,0,4636,4,4,4,0,0, 0,0,2,2,3,115,0,0,0,0,2714,2715,2715,2715,2715,2715,2715,2715,2715,2715,2716,0,0,0,0,117,0,4,4,0, 0,4524,115,115,2,4636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4636,4,117,117,4522, 0,4524,115,115,228,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,230,117,117,4522, 0,4524,115,228,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,230,117,4522, 0,4524,228,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,230,4522, 0,4637,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,0,0,0,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4635, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,896,897,898,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,1009,1010,1011,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,1122,1123,1124,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,672,673,674,675,0,0,0,0,0,0,0,0,0,672,673,674,675,0,0,0,0,0,0, 0,0,0,0,0,0,0,785,786,787,788,0,0,0,0,0,0,0,0,0,785,786,787,788,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,899,900,0,0,0,0,0,0,0,0,0,0,0,899,900,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1348,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1348,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1348,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,3917,3918,3919,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,4030,4031,4032,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,4030,4031,4032,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,4030,4031,4032,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,4142,4143,4144,4145,4146,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,4254,4255,4256,4256,4256,4259,4260,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,4367,4255,4256,4256,4256,4259,4373,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,4254,4368,4369,4370,4371,4372,4260,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,4367,4481,4482,4483,4484,4485,4373,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,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: maps/hoenn/dewford-town.tmx ================================================ 4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4979,0,115,4978,4978,4978,4978,4978,4978, 4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4979,0,115,4978,4978,4978,4978,4978,4978, 4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4979,0,115,4978,4978,4978,4978,4978,4978, 4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4979,0,115,4978,4978,4978,4978,4978,4978, 4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4979,0,115,4978,4978,4978,4978,4978,4978, 4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4979,0,115,4978,4978,4978,4978,4978,4978, 4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4979,0,228,229,229,342,4978,4978,4978, 4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4979,0,0,0,0,228,229,229,229, 4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4979,0,0,0,0,0,0,0,0, 4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4979,0,0,0,0,0,0,0,0, 4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4979,0,0,4864,4865,4865,4865,4865,4865, 4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,5204,4865,4865,5203,4978,4978,4978,4978,4978, 4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978, 4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978, 4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978, 4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978, 4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978, 4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978, 4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978, 4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978 0,333,333,0,0,0,0,0,0,0,0,0,0,0,221,221,221,0,221,0, 0,3310,3311,3311,3311,3314,0,0,0,0,0,0,0,0,221,333,221,221,221,221, 0,3423,3426,3424,3425,3427,0,0,0,0,0,0,0,0,221,0,221,221,333,221, 0,3536,3539,3537,3538,3540,0,0,0,0,0,0,0,0,221,221,333,221,0,333, 0,0,205,0,0,0,0,0,0,0,0,0,0,0,221,221,0,221,221,0, 0,0,0,0,0,0,0,0,0,333,333,0,0,0,333,333,333,221,221,221, 0,0,0,0,0,0,0,3310,3311,3311,3314,0,0,0,0,0,0,333,333,333, 0,0,0,0,0,0,0,3423,3424,3425,3427,0,0,0,0,0,0,0,0,0, 0,136,137,138,139,0,0,3536,3537,3538,3540,0,0,0,0,0,0,0,0,0, 0,249,250,251,252,0,0,0,0,0,0,1577,1577,1577,0,0,0,0,0,0, 0,362,363,364,365,0,0,0,0,0,205,1690,1691,1691,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3310,3311,3311,3314, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3423,3424,3425,3427, 0,0,0,0,0,144,145,145,145,145,149,0,0,0,0,0,3536,3537,3538,3540, 0,0,0,0,0,257,258,259,145,261,262,0,0,0,0,0,0,0,907,0, 0,0,0,0,0,370,371,372,373,374,375,489,0,0,0,0,0,0,0,221, 0,0,0,0,0,483,484,485,486,487,488,0,0,0,0,0,0,0,0,333, 0,221,0,0,0,0,0,0,0,0,0,0,0,907,0,0,333,221,221,907, 0,221,221,0,0,0,0,0,0,0,0,0,0,0,221,221,0,221,221,0 221,3197,3198,3198,3198,3201,0,0,0,0,0,0,0,0,0,0,0,220,0,220, 221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,220,0,0,0,0, 220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,220,0, 221,0,0,0,0,0,0,0,0,220,220,0,0,0,0,0,220,0,0,220, 333,0,0,0,0,0,0,3197,3198,3198,3201,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,23,24,25,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3197,3198,3198,3201, 0,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,32,32,32,36,0,0,0,0,0,0,0,0,0, 220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,220, 221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 333,220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,220,220,220,0, 220,0,220,0,0,0,0,0,0,0,0,0,0,0,220,220,0,0,0,0, 221,0,0,220,220,220,220,220,220,220,220,220,220,220,0,0,220,0,0,220 ================================================ FILE: maps/hoenn/ever-grande-city.tmx ================================================ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0, 116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0, 116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0, 116,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114, 116,116,116,116,116,114,116,116,114,114,114,114,114,114,114,114, 116,116,116,116,116,114,114,116,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,114,116,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,114,116,114,114,114,114,114,114,114,114 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116, 114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 116,116,116,116,116,116,114,116,0,0,0,0,0,0,0,0, 116,116,116,116,116,114,114,116,0,0,0,0,0,0,0,0, 116,116,116,116,116,114,116,116,0,0,0,0,0,0,0,0, 116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0, 116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0, 116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0, 116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0, 114,114,116,116,116,116,116,116,0,0,0,0,0,0,0,0, 114,114,116,116,116,116,116,116,0,0,0,0,0,0,0,0, 114,114,114,116,116,116,116,116,0,0,0,0,0,0,0,0 116,116,116,116,116,116,114,116,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,114,116,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,114,116,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,114,114,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,114,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,116, 116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,116 114,114,114,116,116,116,116,116,0,0,0,0,0,0,0,0, 114,114,114,116,116,116,116,116,0,0,0,0,0,0,0,0, 114,114,114,116,116,116,116,116,0,0,0,0,0,0,0,0, 116,114,114,116,116,116,116,116,0,0,0,0,0,0,0,0, 116,114,116,116,116,116,116,116,0,0,0,0,0,0,0,0, 116,114,116,116,116,116,116,116,0,0,0,0,0,0,0,0, 116,116,114,116,116,116,116,116,0,0,0,0,0,0,0,0, 116,116,114,116,116,116,116,116,0,0,0,0,0,0,0,0, 116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0, 116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0, 116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0, 116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0, 116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0, 116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0, 116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0, 116,114,116,116,116,116,116,116,0,0,0,0,0,0,0,0 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,114,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116 116,116,116,116,116,116,116,116,116,116,116,116,116,116,114,114, 116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,114,114,114,114,114,114,114,114,116,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116 116,116,116,116,116,114,116,116,0,0,0,0,0,0,0,0, 116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0, 116,116,114,116,116,116,116,116,0,0,0,0,0,0,0,0, 116,116,114,116,116,116,116,116,0,0,0,0,0,0,0,0, 116,116,114,116,116,116,116,116,0,0,0,0,0,0,0,0, 116,116,114,116,116,116,116,116,0,0,0,0,0,0,0,0, 116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0, 116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0, 116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0, 116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0, 116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0, 114,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0, 116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0, 116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0, 116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0, 116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,114,114,114,114, 116,116,116,116,116,116,114,116,116,116,116,116,114,114,114,114, 116,116,116,116,116,116,114,116,116,116,116,116,116,114,114,114, 116,116,116,116,116,114,116,116,114,116,114,116,116,114,114,114, 116,116,116,116,116,114,116,116,116,116,116,116,116,114,114,114, 114,116,116,116,116,116,116,116,116,116,116,116,116,114,114,114, 0,116,116,116,116,116,116,116,116,116,116,116,116,114,114,114, 0,116,116,116,116,116,116,116,116,116,116,116,114,116,114,114, 0,116,116,116,116,116,116,116,116,116,116,116,114,116,114,114, 0,116,116,116,116,116,114,116,116,116,116,116,114,116,114,114, 0,0,116,116,116,116,116,116,116,116,116,116,114,114,116,114, 0,0,0,116,116,116,116,116,116,116,116,114,116,114,114,116, 0,0,0,116,116,116,116,116,116,116,116,114,116,116,116,116 116,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116, 114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,116,114,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116, 116,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116, 116,116,116,116,116,116,116,114,114,114,114,114,114,116,116,116, 116,114,114,114,114,114,114,114,116,116,116,114,114,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,114,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116 116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0, 116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0, 116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0, 116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0, 116,116,114,116,116,116,116,116,0,0,0,0,0,0,0,0, 114,116,114,116,116,116,116,116,0,0,0,0,0,0,0,0, 114,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0, 116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0, 116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0, 116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0, 116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0, 114,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0, 114,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0, 114,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0, 114,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0, 116,114,116,116,116,116,0,0,0,0,0,0,0,0,0,0 0,0,0,114,116,116,116,116,116,116,116,116,116,116,116,116, 0,0,0,114,116,116,116,116,116,116,116,116,116,116,116,116, 0,0,0,0,116,116,116,116,116,116,116,116,116,116,116,116, 0,0,0,0,116,116,116,116,116,114,116,116,116,116,116,116, 0,0,0,0,116,116,114,116,116,114,116,116,116,116,116,116, 0,0,0,0,116,116,114,116,116,116,116,116,116,116,116,116, 0,0,0,0,116,116,116,116,114,114,114,116,116,116,116,116, 0,0,0,0,116,116,116,116,114,114,114,116,116,116,116,116, 0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,116, 0,0,0,0,0,116,116,116,116,116,116,116,116,116,0,0, 0,0,0,0,0,116,116,116,114,114,114,116,116,116,0,0, 0,0,0,0,0,0,114,114,0,0,0,114,114,0,0,0, 0,0,0,0,0,0,0,0,114,114,114,114,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,0,0,116,114,114,116, 0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0 116,114,116,116,116,116,0,0,0,0,0,0,0,0,0,0, 116,114,116,116,116,116,0,0,0,0,0,0,0,0,0,0, 114,114,116,116,116,116,0,0,0,0,0,0,0,0,0,0, 114,114,116,116,116,116,0,0,0,0,0,0,0,0,0,0, 114,116,114,116,116,116,0,0,0,0,0,0,0,0,0,0, 116,114,114,116,116,116,0,0,0,0,0,0,0,0,0,0, 114,114,114,116,116,116,0,0,0,0,0,0,0,0,0,0, 116,114,114,116,116,116,0,0,0,0,0,0,0,0,0,0, 114,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0, 116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0, 114,114,114,116,116,116,0,0,0,0,0,0,0,0,0,0, 0,0,0,114,114,0,0,0,0,0,0,0,0,0,0,0, 114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 115,115,115,115,115,115,115,0,0,0,0,0,117,0,0,0, 115,115,115,115,115,115,115,0,0,0,0,341,230,0,0,0, 115,115,115,115,115,115,115,0,0,341,229,230,0,0,0,0, 115,115,115,115,115,115,228,229,229,230,341,229,229,0,0,0, 115,115,115,115,115,228,342,0,0,341,230,0,0,0,0,0, 115,115,115,115,228,342,228,342,0,117,0,0,0,0,0,0, 115,115,115,228,342,228,342,228,229,230,0,0,0,0,0,0, 115,115,115,0,115,0,228,342,1112,0,0,0,0,0,0,0, 115,115,228,342,228,342,0,115,1112,1112,0,0,0,0,0,0, 115,115,0,115,0,115,0,115,1113,1112,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,115,0,0,0,0,0,117,0, 0,0,0,0,0,0,0,0,228,342,0,0,0,0,117,0, 0,0,0,0,0,0,0,0,0,228,229,342,0,0,117,0, 0,0,0,0,0,0,0,0,229,229,342,228,229,229,230,0, 0,0,0,0,0,0,0,0,0,0,228,342,0,0,0,341, 0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,117, 0,0,0,0,0,0,0,0,0,0,0,228,229,229,229,230, 0,0,0,0,0,0,0,0,0,0,0,1113,1112,1111,1110,341, 0,3291,3405,3293,0,0,0,0,0,0,0,1114,1113,1112,1111,117, 0,3404,3405,3406,0,0,0,0,0,0,0,1115,1114,1113,1112,117 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 117,117,117,117,117,117,0,117,0,0,0,0,0,0,0,0, 117,117,117,117,117,4636,4,117,0,0,0,0,0,0,0,0, 117,117,117,117,117,0,117,117,0,0,0,0,0,0,0,0, 117,117,117,117,117,0,117,117,0,0,0,0,0,0,0,0, 230,117,117,117,117,0,117,117,0,0,0,0,0,0,0,0, 0,117,117,117,117,0,117,3,0,0,0,0,0,0,0,0, 341,230,117,117,3,4,117,0,0,0,0,0,0,0,0,0, 230,1115,117,117,0,117,117,0,0,0,0,0,0,0,0,0, 1117,1116,117,3,4,117,3,4,0,0,0,0,0,0,0,0, 0,0,4636,4,117,117,0,117,0,0,0,0,0,0,0,0 115,228,342,228,342,115,0,115,1114,1113,1112,0,0,0,0,0, 228,342,115,0,115,115,0,115,1115,1114,1113,1112,0,1110,0,0, 342,115,228,342,115,115,0,115,1116,1115,1114,1113,0,1111,1110,0, 115,228,342,115,115,228,342,115,1117,1116,1115,1114,0,1112,0,0, 115,0,115,115,115,0,115,115,1110,1117,1116,1115,0,0,0,0, 115,2,3,115,115,0,115,115,1111,1110,1117,1116,1115,1114,0,0, 115,115,2,3,228,342,115,115,1112,1111,1110,1117,1116,1115,0,1113, 115,115,115,0,0,115,115,115,1113,1112,1111,1110,1117,1116,0,1114, 115,115,228,342,0,115,115,115,1114,1113,1112,1111,1110,1117,0,1115, 115,228,342,115,0,115,115,115,1115,1114,1113,1112,1111,1110,0,1116, 228,342,115,115,0,115,115,115,1116,1115,1114,1113,1112,1111,0,0, 342,115,115,115,0,115,115,115,1117,1116,2,3,3,3,3,3, 115,115,115,115,0,115,115,115,1110,2,3,0,0,0,2,3, 115,115,115,228,342,115,115,115,2,3,2,3,3,3,3,0, 3,115,115,0,115,115,115,115,115,0,115,0,0,0,0,0, 2,3,115,0,115,115,115,115,115,2,3,0,0,0,341,229 0,3404,3405,3406,0,0,0,0,0,0,1117,1116,1115,1114,1113,117, 0,3404,3405,3406,0,0,0,1114,0,1111,1110,1117,1116,1115,1114,117, 0,3404,3405,3406,0,0,1116,1115,0,1112,1111,1110,1117,1116,1115,4636, 0,3404,3405,3406,0,0,0,1116,0,1111,1112,1111,1110,1117,0,1115, 0,3404,3405,3406,0,0,0,0,0,0,0,0,0,0,0,1116, 0,3404,3405,3405,3293,0,0,0,0,0,1114,1113,1112,1111,0,1117, 0,3517,3405,3405,3405,3405,3405,3405,3405,3405,3405,3293,1113,1112,0,1110, 1113,0,3517,3405,3405,3405,3405,3405,3405,3405,3405,3405,0,1113,0,1111, 1114,1113,0,0,0,0,0,0,3517,3405,3405,3405,0,1114,0,1112, 1115,1114,1113,1112,1111,0,0,0,0,3404,3405,3406,0,0,0,1113, 0,0,0,0,0,0,0,0,0,3404,3405,3406,0,0,0,1114, 3,3,4,1113,1113,1112,0,0,0,3404,3405,3406,0,0,0,1115, 3,4,3,3,4,1113,0,0,0,3404,3405,3406,0,0,0,1116, 0,3,3,4,117,1114,0,0,0,3404,3405,3406,0,0,0,0, 0,0,341,230,117,1115,0,0,0,3404,3405,3406,0,0,0,341, 229,229,230,341,230,1116,0,0,0,3404,3405,3406,0,0,0,117 0,0,0,117,117,117,0,117,0,0,0,0,0,0,0,0, 0,0,0,117,117,117,0,117,0,0,0,0,0,0,0,0, 4,0,0,117,117,117,0,117,0,0,0,0,0,0,0,0, 117,1112,1113,117,117,117,0,117,0,0,0,0,0,0,0,0, 117,1114,341,230,117,117,341,230,0,0,0,0,0,0,0,0, 117,1115,117,341,230,117,117,341,0,0,0,0,0,0,0,0, 117,341,230,117,341,230,117,117,0,0,0,0,0,0,0,0, 117,117,1116,117,117,341,230,117,0,0,0,0,0,0,0,0, 117,117,341,230,117,117,341,230,0,0,0,0,0,0,0,0, 117,117,117,341,230,117,117,341,0,0,0,0,0,0,0,0, 117,117,117,117,341,230,117,117,0,0,0,0,0,0,0,0, 117,117,117,117,117,341,230,117,0,0,0,0,0,0,0,0, 117,117,117,117,117,117,341,230,0,0,0,0,0,0,0,0, 117,117,117,117,117,117,117,341,0,0,0,0,0,0,0,0, 230,117,117,117,117,117,117,3,0,0,0,0,0,0,0,0, 341,230,117,117,117,117,3,4,0,0,0,0,0,0,0,0 115,0,115,2,3,115,115,115,115,115,0,0,0,341,230,0, 115,0,115,115,0,115,115,115,115,115,0,0,0,117,0,0, 115,2,3,115,2,3,115,115,115,115,0,0,0,117,0,0, 115,115,0,115,115,0,115,115,115,115,0,0,0,3,4,0, 115,115,0,115,115,0,115,115,115,115,0,0,0,0,3,4, 115,115,0,115,115,0,115,115,115,115,0,0,0,0,0,3, 115,115,0,115,115,0,115,115,115,228,342,0,2,3,3,4, 115,228,342,115,228,342,115,115,115,0,115,2,3,0,0,3, 115,0,115,115,0,115,115,115,115,0,115,115,0,0,0,0, 228,342,115,228,342,115,115,115,228,342,115,228,229,342,0,0, 342,115,115,0,115,115,115,115,0,115,115,0,0,228,229,342, 115,115,115,0,115,115,115,228,342,115,228,229,342,0,0,228, 115,115,228,342,115,115,115,1223,115,228,229,342,115,0,0,0, 115,115,0,115,115,115,115,1224,228,229,342,115,115,0,0,341, 115,228,342,115,115,115,115,1225,1224,1223,115,115,228,229,229,230, 228,342,115,115,115,115,228,229,229,342,115,228,229,342,0,341 341,229,229,230,341,229,229,229,229,229,229,229,229,229,229,230, 117,341,229,229,230,1227,1226,0,0,3404,3405,3406,0,1225,0,1223, 117,117,0,0,0,0,0,0,3291,3405,3405,3405,0,1226,0,1224, 117,117,0,0,3404,3405,3405,3405,3405,3405,3405,3519,1228,1227,0,1225, 3,3,4,0,3517,3405,3405,3405,3405,3405,3519,1230,1229,1228,0,1226, 4,0,117,4,0,0,0,0,1226,1225,1224,1223,1230,1229,0,1227, 3,3,3,3,4,0,0,0,0,0,0,0,0,0,0,1228, 3,4,0,0,3,3,3,3,3,3,4,0,1224,1223,1230,1229, 0,3,3,3,3,3,4,0,0,0,3,3,4,1224,1223,1230, 0,0,0,0,0,0,3,3,3,4,0,0,117,4,1224,1223, 0,0,0,0,0,0,0,0,0,3,3,4,117,117,4,1224, 229,229,229,342,0,0,0,0,0,0,0,117,117,117,117,341, 0,0,0,228,229,229,229,229,342,0,0,117,117,117,117,117, 229,229,229,229,229,342,0,0,228,229,229,230,117,117,117,117, 341,229,229,229,342,228,229,342,0,0,341,229,230,117,117,117, 230,341,229,342,228,229,342,228,229,229,230,341,229,230,117,117 117,1229,117,117,117,4636,4,117,0,0,0,0,0,0,0,0, 117,1230,117,117,117,1227,117,117,0,0,0,0,0,0,0,0, 117,341,230,117,117,1228,117,117,0,0,0,0,0,0,0,0, 117,117,1230,117,117,1229,117,117,0,0,0,0,0,0,0,0, 117,117,1223,117,117,1230,117,117,0,0,0,0,0,0,0,0, 117,117,0,117,117,341,230,117,0,0,0,0,0,0,0,0, 117,117,341,230,117,117,341,230,0,0,0,0,0,0,0,0, 117,117,117,341,230,117,117,341,0,0,0,0,0,0,0,0, 117,117,117,117,341,230,117,117,0,0,0,0,0,0,0,0, 117,117,117,117,117,341,230,117,0,0,0,0,0,0,0,0, 117,117,117,117,117,117,341,230,0,0,0,0,0,0,0,0, 230,117,117,117,117,117,117,341,0,0,0,0,0,0,0,0, 1226,117,117,117,117,117,117,117,0,0,0,0,0,0,0,0, 1227,117,117,117,117,117,117,117,0,0,0,0,0,0,0,0, 341,230,117,117,117,117,117,117,0,0,0,0,0,0,0,0, 117,341,230,117,117,117,117,117,0,0,0,0,0,0,0,0 342,115,115,115,115,228,229,229,342,115,228,229,342,228,229,230, 115,115,115,115,228,229,229,342,115,228,229,342,228,229,229,229, 115,115,115,228,229,229,342,115,228,229,342,115,1114,1113,1112,1111, 115,115,228,229,229,342,115,228,342,1226,115,115,1115,1114,1113,1112, 115,228,229,229,342,115,228,342,115,1227,115,115,1116,1115,1114,1113, 228,229,229,342,115,115,0,115,115,1228,115,228,342,1116,1115,1114, 229,229,342,115,115,228,342,115,228,342,228,342,115,1117,1116,1115, 229,342,115,115,115,0,115,115,1230,115,1229,115,115,1110,1117,1116, 0,115,115,115,115,1225,115,228,342,228,342,115,115,1111,1110,1117, 342,115,115,115,228,342,228,342,228,342,115,115,115,1112,1111,1110, 115,115,115,228,342,228,342,228,342,115,115,115,228,342,1112,1111, 115,115,228,342,228,342,115,1225,115,115,115,115,1223,115,1113,1112, 115,228,342,228,342,115,228,342,115,115,115,115,1224,115,1114,341, 228,342,228,342,115,115,1226,115,115,115,115,115,1225,228,229,230, 0,228,342,115,115,228,342,115,115,115,115,228,342,1225,1224,341, 0,0,115,115,228,342,115,115,115,115,115,0,228,342,341,230 341,230,0,228,229,342,228,229,229,229,229,230,341,229,230,117, 230,2038,0,0,1117,228,229,229,229,229,229,229,230,341,229,230, 1110,2037,2038,2038,1116,1117,1116,1115,1114,341,229,229,229,230,1229,341, 1111,2037,2037,2037,1115,1116,1115,1114,1113,117,0,0,0,0,1230,117, 1112,2037,2037,2037,1114,1115,1114,1113,1112,117,0,0,0,0,341,230, 1113,2037,2037,2037,2038,1114,1113,1112,1111,117,0,0,0,0,117,341, 2038,2037,2037,2037,2037,1113,1112,1111,1110,117,0,0,0,0,117,117, 2037,2037,2037,2037,2037,1112,1111,1110,341,230,1226,0,1224,1223,117,117, 2037,2037,2037,2037,2037,2038,1110,1117,117,2038,0,0,1225,1224,117,117, 341,229,229,229,229,229,229,229,230,2037,2038,1227,1226,341,230,117, 117,2037,2037,2037,2037,2037,2037,2037,2037,2037,1229,1228,1227,117,341,230, 117,2037,2037,2037,2037,2037,2037,2037,2037,1223,1230,1229,1228,117,117,341, 230,341,229,229,229,229,229,342,1225,1224,1223,1230,1229,117,117,117, 341,230,0,0,0,0,0,228,229,229,342,1223,1230,117,117,117, 230,4409,4410,4410,4410,4410,4410,4410,4410,4411,228,342,1223,117,117,117, 4409,4635,0,0,0,0,0,0,0,4637,4411,115,341,230,117,117 117,117,341,230,117,117,117,117,0,0,0,0,0,0,0,0, 117,117,117,341,230,117,117,117,0,0,0,0,0,0,0,0, 230,117,117,117,341,230,117,117,0,0,0,0,0,0,0,0, 341,230,117,117,117,341,230,117,0,0,0,0,0,0,0,0, 117,341,230,117,117,117,341,230,0,0,0,0,0,0,0,0, 230,117,1229,117,117,117,117,341,0,0,0,0,0,0,0,0, 1230,117,341,230,117,117,117,117,0,0,0,0,0,0,0,0, 341,230,117,341,230,117,117,117,0,0,0,0,0,0,0,0, 117,341,230,117,341,230,117,117,0,0,0,0,0,0,0,0, 117,117,341,230,117,341,230,117,0,0,0,0,0,0,0,0, 117,117,117,341,230,117,341,230,0,0,0,0,0,0,0,0, 230,117,117,117,341,230,117,341,0,0,0,0,0,0,0,0, 1226,117,117,117,117,341,230,117,0,0,0,0,0,0,0,0, 1227,117,117,117,117,117,341,230,0,0,0,0,0,0,0,0, 1228,117,117,117,117,117,117,0,0,0,0,0,0,0,0,0, 341,230,117,117,117,117,117,0,0,0,0,0,0,0,0,0 0,0,115,228,342,115,115,115,115,115,228,229,342,115,117,4409, 0,0,115,0,115,115,115,115,115,228,229,342,115,228,230,4522, 0,0,228,342,115,115,115,115,228,229,342,115,228,229,229,229, 0,0,0,115,115,115,115,228,342,1223,115,228,229,229,229,229, 0,0,0,115,115,115,228,342,115,1224,228,229,229,229,229,229, 0,0,0,115,115,115,0,115,228,229,229,229,229,229,229,229, 0,0,0,115,115,228,342,115,1226,1225,1224,341,229,229,229,229, 2,4,0,115,228,342,115,115,1227,1226,1225,117,341,229,229,229, 228,230,0,228,342,115,115,228,229,229,229,230,117,341,229,229, 0,0,2,4,115,115,228,229,229,229,229,229,230,117,341,229, 0,0,228,230,115,228,229,342,0,1228,1227,341,229,230,117,0, 0,0,0,0,228,342,0,228,229,229,229,230,1227,341,230,0, 0,0,0,0,0,228,229,342,0,0,1229,1228,341,230,0,0, 0,0,0,0,0,0,0,228,229,229,229,229,230,0,0,2, 0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,228, 0,0,0,0,0,0,0,0,228,230,0,0,2,4,0,0 4635,0,0,0,0,0,0,0,0,0,4524,115,117,341,230,117, 0,0,0,0,0,0,0,0,0,0,4524,228,230,117,341,230, 229,229,229,229,229,229,229,229,229,229,229,229,229,230,117,341, 229,229,229,229,229,229,229,229,229,229,229,229,229,229,230,117, 229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,230, 229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229, 229,229,229,229,229,229,229,229,229,229,229,229,229,229,342,1223, 229,229,229,229,229,229,229,229,229,229,229,229,229,342,228,229, 229,229,229,229,229,229,229,229,229,229,229,229,342,228,342,1224, 229,229,229,229,229,229,229,229,229,229,229,342,115,1225,228,229, 0,0,0,0,0,0,0,0,0,0,0,115,228,229,229,342, 0,0,0,0,0,0,0,0,0,0,0,228,229,342,0,228, 0,0,0,0,0,0,0,0,0,0,2,4,0,228,342,0, 4,0,0,0,0,0,0,0,0,0,228,230,0,0,228,229, 230,0,0,0,0,0,0,0,0,0,0,2,3,4,0,0, 0,0,0,0,0,0,0,0,0,0,0,115,0,117,0,0 117,1223,117,117,117,117,117,0,0,0,0,0,0,0,0,0, 117,1224,117,117,117,117,117,0,0,0,0,0,0,0,0,0, 230,1225,117,117,117,117,117,0,0,0,0,0,0,0,0,0, 1227,1226,117,117,117,117,117,0,0,0,0,0,0,0,0,0, 1228,341,230,117,117,117,117,0,0,0,0,0,0,0,0,0, 229,230,1227,117,117,117,117,0,0,0,0,0,0,0,0,0, 1230,1229,1228,117,117,117,117,0,0,0,0,0,0,0,0,0, 342,1230,1229,117,117,117,117,0,0,0,0,0,0,0,0,0, 228,229,229,230,117,117,117,0,0,0,0,0,0,0,0,0, 229,229,229,229,230,117,117,0,0,0,0,0,0,0,0,0, 0,1224,1223,341,229,230,117,0,0,0,0,0,0,0,0,0, 229,229,229,230,1223,341,230,0,0,0,0,0,0,0,0,0, 1225,341,229,229,229,230,0,0,0,0,0,0,0,0,0,0, 229,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,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,230,0,0, 0,0,0,0,0,0,0,0,0,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,4,0,0,2,4,0,0,0,0,0,0,0,0,0, 0,228,230,0,0,228,230,0,0,0,0,0,0,2,4,2, 0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,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,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,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,229,230,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0, 0,0,0,2,3,4,0,0,0,0,0,0,0,228,230,0, 0,0,0,115,0,117,0,0,0,0,0,0,0,0,0,0, 4,0,0,228,229,230,2,3,4,0,0,0,0,0,0,0, 230,0,0,0,0,0,228,229,230,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,1062,1289,1403, 0,0,0,0,0,0,0,0,0,0,0,0,0,1175,1176,1177, 0,0,0,0,0,0,0,0,0,0,0,0,0,1062,1289,1403, 0,0,0,0,0,0,0,0,0,0,0,0,0,1175,1176,1177, 0,0,0,0,0,0,0,0,0,0,0,0,996,1288,1289,1290, 0,0,0,0,0,0,0,0,0,0,0,218,1109,1401,1402,1403, 0,0,0,0,0,0,0,0,0,0,218,219,1109,1514,1515,1516, 0,0,0,0,0,0,0,0,0,0,219,219,1109,0,89,89, 0,0,0,0,0,0,0,0,0,0,331,219,1109,0,89,89, 0,0,0,0,0,0,0,0,0,0,0,331,1106,0,89,89, 0,0,0,0,0,0,0,0,0,0,0,0,1106,0,89,89 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1403,1403,1403,1403,1403,1403,1296,1071,0,0,0,0,0,0,0,0, 1177,1177,1177,1177,1177,1177,1183,1184,0,0,0,0,0,0,0,0, 1403,1403,1403,1403,1403,1403,1296,1071,0,0,0,0,0,0,0,0, 1177,1177,1177,1177,1177,1177,1183,1184,0,0,0,0,0,0,0,0, 1291,1292,1293,1294,1295,1290,1296,1297,996,0,0,0,0,0,0,0, 1404,1405,1406,1407,1408,1403,1409,1410,1109,218,0,0,0,0,0,0, 1517,1518,1519,1520,1521,1516,1522,1523,1109,219,218,0,0,0,0,0, 1630,1631,1632,1633,1634,89,89,0,1109,219,219,0,0,0,0,0, 1743,1744,1745,1746,1747,89,89,0,1109,219,331,0,0,0,0,0, 0,0,0,0,0,89,89,0,1109,331,0,0,0,0,0,0, 0,0,0,0,0,89,89,0,1109,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 218,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,1106,0,89,89, 0,0,0,0,0,0,0,0,0,0,0,0,1106,0,0,1623, 0,0,0,0,0,0,0,0,0,0,0,0,1106,0,0,1736, 0,0,0,0,0,0,0,0,0,0,0,0,1106,994,995,1849, 0,0,0,0,0,0,0,0,0,0,0,0,1560,1107,1109,1962, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,1109,2075, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,1109,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,1109,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,1109,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,1109,994, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,1560,1107, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,89,89,0,1109,0,0,0,0,0,0,0, 1624,1625,1625,1625,1626,1627,0,0,1109,0,0,0,0,0,0,0, 1737,1738,1738,1738,1739,1740,0,0,1109,0,0,0,0,0,0,0, 1850,1851,1851,1851,1852,1853,1447,994,1109,994,994,994,994,994,995,0, 0,0,0,0,0,1962,1560,1107,1107,1107,1107,1107,1107,1107,1108,0, 0,0,0,0,0,2075,0,205,0,0,0,0,0,0,1109,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,1109,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,1109,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,1109,0, 994,994,994,994,994,994,995,0,1623,1624,1625,1626,1627,0,1109,0, 1107,1107,1107,1107,1107,1107,1108,0,1736,1737,1738,1739,1740,0,1109,0, 0,0,0,0,0,0,1108,0,1849,1850,1851,1852,1853,0,1109,0, 0,0,0,0,0,0,1108,0,1962,0,0,0,1962,0,1109,0, 0,0,0,0,0,0,1108,0,2075,0,0,0,2075,0,1109,0, 0,0,0,0,0,0,1109,89,0,0,0,0,0,89,1109,0, 0,0,0,0,0,0,1222,89,89,0,0,0,89,89,1222,0 219,219,218,0,0,0,0,0,0,0,0,0,0,0,0,0, 331,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,331,331,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,456,0,0,0,0,0,0,1348,1349,1349,0,0,996,0, 0,0,569,0,0,0,0,0,0,0,0,0,0,0,1109,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,1109,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,1109,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,1109,0, 0,0,0,0,0,1447,994,994,994,994,994,994,994,994,1108,0, 0,0,0,0,0,1560,1107,1107,1107,1107,1107,1107,1107,1107,1561,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,456,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,569,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,205,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,23,24,25,26,0,0, 0,0,0,0,0,0,0,0,0,0,136,137,138,139,0,0, 0,0,0,0,0,0,0,0,0,0,249,250,251,252,0,0, 0,0,0,0,0,0,0,0,0,0,362,363,364,365,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,1348,1349,0,0,0,0,0,0,0,0,0,0,0, 0,0,205,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,1348,1349,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,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, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,202,203,0,0,202,203 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,315,316,0,0,315,316, 202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,202,203,0,0,0,0,202,203,0,0,0,0,0, 0,0,0,315,316,0,0,202,203,315,316,202,203,0,0,0, 0,0,0,0,0,0,0,315,316,0,0,315,316,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,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,203,0,0,0, 0,0,0,0,0,0,0,0,0,202,203,315,316,0,0,0, 0,202,203,0,0,0,0,0,0,315,316,0,0,0,0,0, 0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,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: maps/hoenn/fallarbor-town.tmx ================================================ 4303,4303,4303,4303,4303,4303,4303,4303,4303,4303,4303,4303,4303,4303,4303,4303,4303,4303,4529,4190,4190,4190,4190,4190, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4302,4303,4303,4303,4303,4303, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 4077,4077,4077,4077,4077,4077,4077,4077,4077,4077,4077,4077,4077,4077,4078,0,0,0,0,0,0,0,0,0, 4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4641,4077,4077,4077,4077,4077,4078,0,0,0, 4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4641,4077,4077,4077, 4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190, 4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190, 4190,4190,4190,4190,4190,4190,4190,4190,0,0,0,0,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190, 4190,4190,4190,4190,4190,4190,4190,4190,0,0,0,0,0,0,0,0,0,0,0,0,4190,4190,4190,4190, 4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190, 4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190, 4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190, 4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190, 4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190, 4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190, 4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190, 4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190, 4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 247,247,247,247,247,247,247,247,247,247,247,247,247,247,247,247,247,360,0,0,0,0,0,0, 247,247,247,247,247,247,247,247,247,247,247,247,247,247,247,247,360,246,247,247,247,247,247,360, 247,247,247,247,247,247,247,247,247,247,247,247,247,247,247,360,246,247,247,247,247,247,360,246, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,246,247,247,247,247,247,360,246,247, 3282,3283,3283,3284,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,246,247,247, 3395,3396,3396,3397,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 3395,3396,3396,3397,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 3508,3509,3509,3510,0,0,0,0,0,0,0,3285,3286,3287,0,0,0,0,3285,3287,0,0,0,0, 0,0,0,0,0,3285,3286,3286,3286,3286,3286,3399,3399,3399,3286,3286,3286,3286,3399,3399,3286,3286,3287,0, 0,0,0,0,0,3511,3512,3512,3512,3512,3512,3512,3512,3512,3512,3399,3399,3512,3512,3512,3512,3512,3513,0, 3282,3283,3283,3284,0,0,0,0,0,0,0,0,0,0,0,3398,3400,0,0,0,0,0,0,0, 3395,3396,3396,3397,0,0,0,0,0,0,0,0,0,0,0,3398,3400,0,0,0,0,0,0,0, 3395,3396,3396,3397,0,0,0,0,0,0,0,0,0,0,0,3398,3400,0,0,0,0,0,0,0, 3508,3509,3509,3510,0,0,0,0,0,0,0,0,0,0,0,3398,3400,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3398,3400,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3398,3399,3286,3286,3287,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3511,3512,3512,3512,3513,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,3849,3849,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,3849,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3623, 0,0,0,0,3623,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,3623,3623,3623,3623,0,0,0,0,0,0,0,0,0,0,3623,3623,3623,3623,0, 0,0,3849,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,3849,3849,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3623, 0,0,0,0,0,4058,4059,4060,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,3736,0,4171,4172,4173,0,0,0,0,0,0,3623,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,4284,4285,4286,0,0,0,0,0,0,0,0,0,0,0,0,0,3623,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 224,225,224,225,3756,3757,3757,3760,224,225,604,605,606,607,608,0,0,0,0,0,0,0,0,0, 337,338,337,338,3869,3870,3870,3873,337,338,717,718,719,720,721,0,0,23,24,25,26,0,0,0, 0,0,0,0,3982,3983,3984,3986,0,0,830,831,832,833,834,0,0,136,137,138,139,0,0,0, 0,0,0,0,4091,4092,4093,4094,0,546,943,944,945,946,947,546,0,249,250,251,252,0,0,0, 0,0,0,0,0,0,0,205,0,546,1056,1057,1058,1059,1060,546,0,362,363,364,365,0,0,0, 0,0,0,0,0,0,0,0,0,0,205,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,28,28,30,0,0, 0,0,0,0,0,0,0,0,0,0,0,3761,3762,0,0,0,0,0,140,141,142,143,0,0, 0,0,0,0,0,0,0,0,0,3756,3757,3874,3875,0,0,0,0,0,253,254,255,256,224,225, 0,224,225,0,0,0,0,0,0,3869,3870,3870,3873,0,0,0,0,0,362,363,368,369,337,451, 224,450,451,225,0,0,0,0,0,3982,3983,3984,3986,0,0,0,0,0,0,0,0,0,224,450, 450,338,337,451,225,0,0,0,0,4091,4092,4093,4094,0,0,0,0,0,0,0,0,224,450,451, 451,225,224,450,451,225,224,225,0,0,0,0,0,0,0,0,0,0,224,225,224,450,451,450, 450,451,450,451,450,451,450,451,225,224,225,224,225,224,225,224,225,224,450,451,450,451,450,338 ================================================ FILE: maps/hoenn/faraway-island.tmx ================================================ 0,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116, 0,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116, 0,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116, 0,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116, 0,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116, 0,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116, 0,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116, 0,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116, 0,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116, 0,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116, 0,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116, 0,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116, 0,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116, 0,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116, 0,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116, 0,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116, 0,116,116,116,116,116,116,116,116,114,114,114,114,114,116,116,116,116,116,116,116,116,114,116,116,116,116,116,116,116,116,116,116,116, 0,116,116,116,116,116,116,116,116,116,116,116,114,114,116,116,116,116,116,116,116,116,114,116,116,116,116,116,116,116,116,116,116,116, 0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0, 0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0, 0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0, 0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0, 0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0, 0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0, 0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0, 0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0, 0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0, 0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0, 0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,114,114, 0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,116,114,114, 0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,116,114,114, 0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,116,114,114, 0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,116,114,114, 0,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,114,114, 0,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,114,114, 0,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 4524,115,115,115,115,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,117,117,117,117, 4524,115,115,115,115,115,0,0,0,0,4070,4072,0,0,4070,4071,4072,0,659,0,0,0,0,0,0,0,0,0,0,117,117,117,117,117, 4524,115,115,115,115,115,0,0,0,4070,4184,4298,659,0,4296,4297,4184,4072,659,659,0,0,0,0,0,0,0,0,0,117,117,117,117,117, 4524,115,115,115,115,115,0,0,4070,4184,4298,0,0,0,0,0,4296,4184,4072,0,0,0,0,0,0,0,0,0,0,117,117,117,117,117, 4524,115,115,115,115,115,0,0,4296,4298,0,0,0,0,0,0,0,4296,4298,0,0,0,0,0,0,0,0,0,0,117,117,117,117,117, 4524,115,115,115,115,115,0,0,0,0,0,0,0,4070,4072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,117,117,117,117, 4524,115,115,115,115,115,0,0,0,0,0,0,0,4296,4298,0,0,0,0,0,0,0,0,0,0,0,0,0,659,117,117,117,117,117, 4524,115,115,115,115,115,0,0,0,4070,4072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,117,117,117,117, 4524,115,115,115,115,115,0,0,4070,4184,4298,0,0,0,0,0,0,0,4070,4072,0,0,0,0,0,0,0,0,0,117,117,117,117,117, 4524,115,115,115,115,228,342,0,4296,4298,0,0,0,659,0,0,0,4070,4184,4185,0,0,0,0,0,0,0,0,0,117,117,117,117,117, 4524,115,115,115,228,342,115,0,0,0,0,0,4070,4072,0,0,0,4296,4184,4185,0,0,0,0,0,659,0,0,0,117,117,117,117,117, 4524,115,115,115,0,115,115,0,0,0,0,0,4296,4298,659,0,0,0,4296,4298,0,0,0,0,0,0,0,0,0,117,117,117,117,117, 4524,115,115,115,0,115,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,117,117,117,117, 4524,115,115,115,0,115,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,659,0,0,0,0,0,0,117,117,117,117,117, 4524,115,115,115,0,115,115,0,0,0,0,659,0,0,0,0,0,0,0,0,0,659,659,0,0,0,0,0,0,117,117,117,117,117, 4524,115,115,115,0,115,228,342,0,0,0,0,0,0,0,0,0,0,0,0,0,659,0,341,229,229,229,229,229,230,117,117,117,117, 4524,115,115,115,0,115,0,228,342,0,0,0,0,0,341,229,229,342,0,341,229,342,0,117,341,229,229,229,229,229,230,117,117,117, 4524,115,115,115,0,228,229,342,228,1461,229,342,0,0,117,0,0,228,229,230,0,115,0,117,117,0,341,229,229,229,229,230,117,117, 4524,115,115,115,0,0,0,115,0,0,0,115,0,341,230,341,229,229,229,229,342,228,229,230,117,341,230,341,229,229,229,229,230,117, 4524,115,115,228,342,0,0,228,229,342,0,115,0,117,341,230,0,0,0,0,228,229,342,0,117,117,0,117,341,229,229,229,229,230, 4524,115,115,0,115,0,0,0,0,115,0,115,341,230,117,0,0,0,0,341,229,342,228,342,117,117,341,230,117,4409,4410,4410,4410,4410, 4524,115,115,0,228,229,342,0,0,115,0,115,117,0,117,0,341,1461,342,117,0,228,342,228,230,117,117,0,117,4522,0,0,0,0, 4524,115,115,0,0,0,115,0,0,115,0,115,117,341,230,0,117,0,115,117,0,0,115,0,0,117,117,341,230,4522,0,0,0,0, 4524,115,228,1461,342,0,115,0,0,115,0,115,117,117,0,0,117,0,115,117,0,0,228,342,0,117,117,117,4409,4635,0,0,0,0, 4524,115,0,0,115,0,115,0,0,115,0,228,230,117,0,0,117,0,115,117,0,0,0,228,342,117,117,117,4522,0,0,0,0,0, 4524,115,0,0,115,0,115,0,0,115,0,0,341,230,0,341,230,0,115,117,0,0,0,0,228,230,117,117,4522,0,0,0,0,0, 4524,115,0,0,115,0,115,0,0,115,0,0,117,0,0,117,0,0,115,117,0,341,342,0,341,229,230,117,4522,0,0,0,0,0, 4524,115,0,0,115,0,115,0,0,115,0,0,117,0,0,117,0,0,228,230,0,117,228,229,230,0,341,230,4522,0,0,0,0,0, 4524,115,0,0,115,0,228,342,0,115,341,1461,230,0,341,230,0,0,0,341,229,230,0,341,229,229,230,4409,4635,0,0,0,0,0, 4524,115,0,0,115,0,0,115,0,115,117,0,0,0,117,0,0,0,0,117,341,229,229,230,4409,4410,4410,4635,0,0,0,0,0,0, 4524,115,0,0,115,0,0,228,342,228,230,0,341,229,230,0,0,0,341,230,117,4409,4410,4410,4635,0,0,0,0,0,0,0,0,0, 4524,115,0,0,115,0,0,0,228,342,341,229,230,0,0,0,0,0,117,341,230,4522,0,0,0,0,0,0,0,0,0,2,4636,4636, 4524,115,0,206,228,229,342,0,0,228,230,0,0,0,0,0,0,0,117,117,4409,4635,0,0,0,0,0,0,0,0,4524,115,0,0, 4524,115,0,0,0,0,228,342,0,0,0,0,0,0,0,0,0,0,117,117,4522,0,0,0,0,0,0,0,0,0,4524,115,0,0, 4524,115,0,0,0,0,0,228,229,229,229,229,229,229,229,1461,1462,229,230,117,4522,0,0,0,0,0,0,0,0,0,4524,115,0,0, 4524,115,0,0,341,229,229,229,229,229,229,229,229,229,3402,3402,3402,3402,229,230,4522,0,0,0,0,0,0,0,0,0,4524,115,0,0, 4524,115,0,341,230,4409,4410,4410,4410,4410,4410,4410,4410,4410,3402,3402,3402,3402,4410,4410,4635,0,0,0,0,0,0,0,0,0,4524,115,0,0, 4524,115,0,117,4409,4635,0,0,0,0,3402,3402,3402,3402,3402,3402,3402,3402,0,0,0,0,0,0,0,0,0,0,0,0,4524,115,0,0, 4524,228,229,230,4522,0,0,0,0,0,3402,3402,3402,3402,3402,3402,3402,3402,0,0,0,0,0,0,0,0,0,0,0,0,4524,115,0,0, 4637,4410,4410,4410,4635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,115,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,228,229,229, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4637,4410,4410,4410, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,219,219,219,331,331,331,219,219,331,331,331,331,331,331,219,219,219,219,219,219,219,219,219,0,0,0,0,0, 0,0,0,0,0,0,219,219,219,0,0,0,331,219,0,0,0,0,0,0,331,219,219,219,219,219,219,219,219,0,0,0,0,0, 0,0,0,0,0,0,219,219,331,0,0,0,0,219,0,0,0,0,0,0,0,219,219,219,219,219,219,219,219,0,0,0,0,0, 0,0,0,0,0,0,219,219,0,0,0,218,218,219,218,218,0,0,0,218,0,219,219,219,219,219,219,219,219,0,0,0,0,0, 0,0,0,0,0,0,219,219,0,0,218,219,219,331,331,219,218,0,0,219,218,219,219,219,219,219,219,219,219,0,0,0,0,0, 0,0,0,0,0,0,219,219,218,218,219,331,219,0,0,219,219,218,218,219,219,219,219,219,219,219,219,219,331,0,0,0,0,0, 0,0,0,0,0,0,219,219,219,331,331,0,331,0,0,331,219,219,219,219,219,219,331,331,219,219,219,219,0,0,0,0,0,0, 0,0,0,0,0,0,219,219,331,0,0,0,218,218,218,0,331,219,331,331,219,219,0,0,219,219,219,219,0,0,0,0,0,0, 0,0,0,0,0,0,331,219,0,0,0,218,219,331,219,218,0,331,0,0,331,331,0,0,219,219,219,331,0,0,0,0,0,0, 0,0,0,0,0,0,0,219,0,0,218,219,331,0,219,331,218,0,0,0,218,0,0,218,219,331,219,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,219,219,0,331,331,0,0,331,0,219,0,0,0,331,0,218,219,219,0,219,218,0,0,0,0,0,0, 0,0,0,0,0,0,0,219,219,218,218,0,0,0,0,0,219,218,0,0,0,218,219,219,219,218,219,219,0,0,0,0,0,0, 0,0,0,0,0,0,0,219,219,331,219,218,218,0,218,0,331,331,218,0,218,219,331,219,219,331,219,219,218,0,0,0,0,0, 0,0,0,0,0,0,0,219,219,0,331,331,331,218,331,0,0,0,331,218,219,331,0,219,219,0,219,219,219,0,0,0,0,0, 0,0,0,0,0,0,0,331,219,0,0,0,0,331,0,218,218,218,0,331,331,0,0,331,331,0,331,331,331,0,0,0,0,0, 0,0,0,0,0,0,0,0,331,0,218,218,218,0,0,331,331,331,218,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,331,331,219,218,0,0,0,0,331,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,219,331,0,0,0,0,0,0,0,0,331,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,907,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,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,203,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,218, 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,203,0,0,0,0,0,0,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,3410,0,0,3412,0,0,0,0,0,0,0,0,0,0,202,203,0,0,219,219, 0,0,0,0,0,0,202,203,0,0,0,0,0,0,3410,0,0,3412,0,0,0,0,0,0,0,0,0,0,315,316,0,0,219,219, 0,0,0,0,0,0,315,316,0,0,3297,3298,3298,3298,0,0,0,3412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219, 0,0,0,0,0,202,203,0,0,0,3410,0,0,0,0,0,0,3412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219, 202,203,0,0,0,315,316,0,0,0,1465,1466,1466,1463,1464,1466,1466,1467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,331, 315,316,0,0,0,0,0,0,0,0,1578,0,0,0,0,0,0,1580,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,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,203,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0, 0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,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: maps/hoenn/fill-002.tmx ================================================ 0,0,0,4978,116,116,116,116,116,116,116,116,116,116,116,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978, 0,0,0,4978,116,116,116,116,116,116,116,116,116,116,116,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978, 0,4978,4978,4978,116,116,116,116,116,116,116,116,116,116,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978, 0,4978,4978,4978,116,116,116,116,116,116,116,116,116,116,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978, 0,4978,4978,4978,116,116,116,116,116,116,116,116,116,116,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978, 0,4978,4978,4978,116,116,116,116,116,116,116,116,116,116,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978, 0,4978,4978,4978,116,116,116,116,116,116,116,116,116,116,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978, 0,4978,4978,4978,116,116,116,116,116,116,116,116,116,116,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978, 0,4978,4978,4978,4978,4978,116,116,116,116,116,116,116,116,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978, 0,4978,4978,4978,4978,4978,116,116,116,116,116,116,116,116,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978, 0,4978,4978,4978,4978,4978,116,116,116,116,116,116,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978, 0,4978,4978,4978,4978,4978,4978,116,116,116,116,116,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978, 0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978, 0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978, 0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978, 0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978, 0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978, 0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978, 0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978, 0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978 0,0,4977,115,115,0,0,2,3,3,3,4,0,117,0,117,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221, 4864,4865,220,115,115,0,0,115,0,0,0,117,0,117,0,117,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221, 4977,0,221,115,115,0,2,3,0,0,0,117,0,117,341,230,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221, 4977,220,221,115,115,0,115,0,0,0,0,117,0,117,117,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221, 4977,221,221,115,115,0,228,342,0,0,0,117,0,117,117,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221, 4977,221,221,115,115,0,0,228,229,229,229,230,0,117,117,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221, 4977,221,221,115,228,342,0,0,0,0,0,0,0,117,117,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221, 4977,221,221,115,0,228,342,0,0,0,0,0,0,117,117,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221, 4977,221,221,228,229,342,115,0,0,0,0,341,229,230,117,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221, 4977,221,221,220,220,115,228,229,342,0,0,117,0,0,117,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221, 4977,221,221,221,221,115,0,0,228,229,229,230,341,229,220,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221, 4977,333,333,221,221,220,342,0,0,0,0,0,117,220,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221, 5090,5091,5429,221,221,221,220,220,220,220,220,220,220,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221, 0,0,4977,333,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221, 0,0,4977,0,333,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221, 0,0,5090,5091,5429,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221, 0,0,0,0,4977,221,333,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221, 0,0,0,0,4977,333,0,333,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221, 0,0,0,0,5090,5091,5429,0,333,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221, 0,0,0,0,0,0,4977,0,0,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221 ================================================ FILE: maps/hoenn/fill-003.tmx ================================================ 0,0,0,0,0,0,0,0,0,0, 3,3,4,0,0,0,0,0,0,0, 4978,4978,117,0,0,0,0,0,0,0, 4978,4978,3,3,3,3,3,4,0,0, 4978,4978,4978,4978,4978,4978,4978,117,0,0, 4978,4978,4978,4978,4978,4978,4978,117,0,0, 4978,4978,4978,4978,4978,4978,4978,3,3,4, 4978,4978,4978,4978,4978,4978,4978,4978,4978,117 0,0,0,0,0,0,0,0,0,0, 5318,5318,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0, 0,0,5318,5318,5318,5318,5318,0,0,0, 0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,5318,5318,0, 0,0,0,0,0,0,0,0,0,0 220,0,0,0,0,0,0,0,0,0, 221,220,0,0,0,0,0,0,0,0, 221,221,0,220,0,0,0,0,0,0, 221,221,220,221,0,220,220,0,0,0, 221,221,221,333,220,221,221,0,0,0, 333,221,221,220,221,333,221,0,220,0, 0,333,221,221,333,220,333,220,221,0, 0,220,221,221,220,221,220,221,221,0 ================================================ FILE: maps/hoenn/fill-004.tmx ================================================ 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 341,229,229,229,229,342,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 230,0,0,0,0,115,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,228,229,229,229,342,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,228,342,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,115,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,228,229,342,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,115,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,115,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,228,229,229,342,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,229,229,229,229,342,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,229,229,229,229,229,342,114,114,114, 0,0,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,229,229,229 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 325,326,325,326,325,326,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 0,0,0,0,0,0,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 0,0,0,0,0,0,325,326,325,326,325,326,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 0,0,0,0,0,0,0,0,0,0,0,0,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 0,0,0,0,0,0,0,0,0,0,0,0,325,326,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,325,326,325,326,325,326,325,326,438,439,438,439,438,439,438,439, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213,212,213,212,213,212,213, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,325,326,325,326,325,326,325,326, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,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: maps/hoenn/fill-005.tmx ================================================ 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4409,4410,4410,4410, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4409,4410,4410,4635,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4409,4410,4635,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4409,4635,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4409,4635,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4409,4635,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4409,4635,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4636,4522,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4636,4522,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4636,4636,4522,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4636,4522,0,0,0,0,0,0,0 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 331,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 0,331,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,331,331,331,331, 0,0,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,331,331,331,0,0,0,0, 212,213,331,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,331,331,0,0,0,0,0,0,0, 438,439,0,331,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,331,0,0,0,0,0,0,0,0,0, 212,213,212,213,331,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0,0,0, 438,439,438,439,0,331,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,331,0,0,0,0,0,0,0,0,0,0, 212,213,212,213,212,213,331,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,331,0,0,0,0,0,0,0,0,0,0,0, 438,439,438,439,438,439,0,331,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0,0,0,0,0, 212,213,212,213,212,213,212,213,331,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0,0,0,0,0, 438,439,438,439,438,439,438,439,0,331,331,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,331,0,0,0,0,0,0,0,0,0,0,0,0, 212,213,212,213,212,213,212,213,212,213,0,331,331,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0, 438,439,438,439,438,439,438,439,438,439,0,0,0,331,331,331,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,218,0,0,0,0,0,0,0,0,0,0,0,0, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,331,331,331,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,218,0,0,0,0,0,0,0,0,0,0,0, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,0,0,0,331,331,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,218,218,0,0,0,0,0,0,0,0,0, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,0,331,331,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,218,0,0,0,0,0,0,0,0, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,0,0,0,331,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,99,100,99,100,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,100,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,100,99,100,0,0,0,0,0,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: maps/hoenn/fill-006.tmx ================================================ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0, 0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0, 0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0, 0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0, 0,0,0,0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0, 0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0, 0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0 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,3,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,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,3,3,3,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,117,0,0,0,0,0,0,0,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,3,3,3,3,3,0,0,0,0,0,3,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,2,3,4,0,0,0,0,0,0,0,0,117,0,0,0,0,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,3,0,115,0,117,0,0,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,2,3,0,3,3,4,0,0,0,0,0,0,3,3,4,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,115,2,3,4,0,3,4,0,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,115,228,229,230,0,0,117,0,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,115,0,0,0,341,229,230,0,0,0,0,0,0,0,117,0,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,3,0,115,0,341,229,230,0,0,0,0,0,0,0,0,0,3,3,3,3,4,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,228,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,2,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,3,4,0,0,0,117,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,117,0,0,0,117,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,2,4,3,4,0,0,117,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,2,3,3,3,3,3,4,0,0,0,0,0,0,115,0,115,3,4,117,0,0,117,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,2,3,3,0,2,3,3,0,2,3,3,4,3,4,0,0,0,0,2,3,0,115,0,117,3,4,0,3,3,3,4,0,0, 0,0,0,0,0,0,2,3,3,3,3,0,0,2,3,2,3,3,3,0,0,3,4,3,4,0,0,0,115,0,0,115,0,3,4,3,3,4,0,0,117,0,0, 0,0,0,0,0,0,115,0,0,0,0,0,2,3,0,115,0,0,0,0,0,0,117,0,3,3,3,3,3,2,3,3,0,0,3,3,4,117,0,0,117,0,0, 0,0,0,0,0,0,115,0,2,3,3,3,3,0,2,3,0,0,0,0,0,0,3,3,3,4,0,0,0,115,0,0,0,0,0,0,117,117,0,0,117,0,0, 0,0,0,0,2,3,3,2,3,0,0,0,2,3,3,0,0,0,0,0,0,0,0,0,0,117,0,0,0,115,0,0,0,0,0,0,117,117,0,0,3,3,4, 0,2,3,3,3,2,3,3,2,3,4,0,115,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,3,3,0,0,0,0,0,0,117,3,3,3,4,0,117, 4524,115,0,2,3,3,0,2,3,0,117,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,4,0,117,0,117, 4524,115,0,115,0,2,3,3,0,0,117,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,3,3,3 ================================================ FILE: maps/hoenn/fill-007.tmx ================================================ 0,0,0,0,0,0,2, 0,0,0,0,0,0,115, 0,0,0,0,0,0,115, 0,0,0,0,2,3,3, 0,0,0,0,115,114,114, 0,0,0,0,115,114,114, 0,0,0,0,115,114,114, 0,0,2,3,3,114,114, 0,0,115,114,114,114,114, 0,0,115,114,114,114,114, 0,0,115,114,114,114,114, 0,0,115,114,114,114,114, 0,0,115,114,114,114,114, 0,0,115,114,114,114,114, 0,0,115,114,114,114,114, 0,0,115,114,114,114,114, 0,0,115,114,114,114,114, 0,0,115,114,114,114,114, 0,0,115,114,114,114,114, 2,3,3,114,114,114,114, 115,114,114,114,114,114,114, 115,114,114,114,114,114,114, 115,114,114,114,114,114,114, 115,114,114,114,114,114,114, 115,114,114,114,114,114,114, 115,114,114,114,114,114,114 0,0,0,0,0,0,0, 0,0,0,0,0,0,0, 0,0,0,0,0,0,0, 0,0,0,0,0,1810,1810, 0,0,0,0,0,0,0, 0,0,0,0,0,0,0, 0,0,0,0,0,0,0, 0,0,0,1810,1810,0,0, 0,0,0,0,0,0,0, 0,0,0,0,0,0,0, 0,0,0,0,0,0,0, 0,0,0,0,0,0,0, 0,0,0,0,0,0,0, 0,0,0,0,0,0,0, 0,0,0,0,0,0,0, 0,0,0,0,0,0,0, 0,0,0,0,0,0,0, 0,0,0,0,0,0,0, 0,0,0,0,0,0,0, 0,1810,1810,0,0,0,0, 0,0,0,0,0,0,0, 0,0,0,0,0,0,0, 0,0,0,0,0,0,0, 0,0,0,0,0,0,0, 0,0,0,0,0,0,0, 0,0,0,0,0,0,0 0,0,0,0,0,0,0, 0,0,0,0,0,0,0, 0,0,0,0,0,0,0, 0,0,0,0,0,99,100, 0,0,0,0,0,212,213, 0,0,0,0,0,438,439, 0,0,0,0,0,212,213, 0,0,0,99,100,438,439, 0,0,0,212,213,212,213, 0,0,0,438,439,438,439, 0,0,0,212,213,212,213, 0,0,0,438,439,438,439, 0,0,0,212,213,212,213, 0,0,0,438,439,438,439, 0,0,0,212,213,212,213, 0,0,0,438,439,438,439, 0,0,0,212,213,212,213, 0,0,0,438,439,438,439, 0,0,0,212,213,212,213, 0,99,100,438,439,438,439, 0,212,213,212,213,212,213, 0,438,439,438,439,438,439, 0,212,213,212,213,212,213, 0,438,439,438,439,438,439, 0,212,213,212,213,212,213, 0,438,439,438,439,438,439 ================================================ FILE: maps/hoenn/fill-010.tmx ================================================ 119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 119,119,119,119,119,119,119,119,119,114,114,114,114,114,114,114,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 114,114,119,119,119,119,119,119,114,114,114,114,114,114,114,114,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,119,119,119,119,119,119,119,119,119,119,119,119,119, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,119,119,119,119,119,119,119,119,119,119,119,119,119, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,119,119,119,119,119,119,119,119,119,119,119,119,119, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,119,119,119,119,119,119,119,119,119,119,119,119,119, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,119,119,119,119,119,114,114,114,119, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,119,119,119,119,119,119,119,119,119, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,232,114,119,119,119,119, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,119, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,118, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,344,232,232,232,233,0,0,0,0,0,0,0,0,0,118, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,344,232,232,232,233,0,0,0,5,7,0,0,0,5,6,7,0,0,231, 232,232,232,345,0,0,0,0,0,0,0,344,232,232,232,232,233,0,0,0,0,0,0,0,118,6,7,0,0,231,232,233,0,0,0, 0,0,0,231,232,232,232,232,232,232,232,233,344,232,232,232,232,232,232,345,0,0,0,0,231,232,233,0,0,0,0,0,5,7,0, 0,0,0,0,0,344,232,232,232,232,232,232,233,0,344,232,232,232,345,118,0,0,0,0,0,0,0,0,0,0,0,0,231,233,0, 232,232,232,232,232,233,344,232,232,232,232,232,232,232,233,0,0,0,118,231,232,232,232,232,232,232,232,232,232,232,232,345,0,0,0, 232,232,232,232,232,232,233,344,232,232,232,232,232,232,232,232,232,345,231,232,232,232,232,232,232,232,232,232,345,0,0,231,232,345,0, 232,232,232,232,232,232,232,233,344,232,232,232,232,232,232,232,345,231,232,232,232,232,232,232,232,232,345,0,118,0,0,0,0,118,0, 232,232,232,232,345,0,0,344,233,344,232,232,232,232,232,345,231,232,345,0,0,0,0,0,0,0,231,345,231,232,345,0,0,231,232, 232,345,0,0,231,232,232,233,344,233,0,0,0,0,0,118,0,0,231,232,232,232,232,345,0,0,0,118,0,0,231,232,232,232,232, 0,231,232,232,232,232,232,232,233,0,0,0,0,0,0,231,232,232,232,232,232,345,0,118,0,0,0,231,345,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,231,345,0,0,0,231,232,232,232,232,232,232, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,231,232,345,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0,231,232,232,345,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,231,232,232,232,345,0,0,0,231,232,232,232,232,232, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,231,232,232,232,232,345,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,231,232,232,345,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,231,232, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,910,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,910,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,99,100,99,100,0,0,0,0,0,0,0,0,910,0,0,0,0,0,0,0,0,0,0,0, 100,0,0,0,0,0,0,0,0,0,0,212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 213,99,100,99,100,99,100,99,100,99,100,438,439,438,439,99,100,99,100,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 439,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 213,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,0,0,0,0,0,0,0,0,0,0,0,0,0,910, 439,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 213,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,99,100,99,100,0,0,0,0,0,0,0,0,0,0, 439,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,0,0,0,0,0,0,0,0,0,0, 213,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,99,100,99,100,0,0,0,0,0,0, 439,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,0,0,0,0,0,0, 213,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,99,100,99,100,99,100, 439,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 213,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 439,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 213,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 439,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 213,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 439,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 213,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 326,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 99,551,552,551,552,551,552,551,552,551,552,551,552,551,552,551,552,551,552,551,552,551,552,551,552,551,552,551,552,551,552,551,552,551,552, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438 ================================================ FILE: maps/hoenn/fill-011.tmx ================================================ 116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0, 116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0, 116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0, 116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0, 116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0, 116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0, 116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0, 116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0, 116,116,116,116,116,116,116,0,114,114,0,0,0,0,0,0, 116,116,116,116,0,0,0,114,114,114,0,0,0,0,0,0, 114,0,0,114,114,114,114,114,114,114,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,114,114,114,114,114,114,0,0,0,0,0,0,0, 0,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,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,342,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,228,229,229,342,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,228,229,229,229,342,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,228,342,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,228,229,229,229, 0,0,0,0,0,0,0,0,341,229,0,0,0,0,0,0, 0,0,0,0,0,0,0,341,230,0,0,0,0,0,0,0, 0,0,0,0,341,229,229,230,0,0,0,0,0,0,0,0, 229,229,229,229,230,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,341,229,229,229,342,0,0,0,0,0,0,0, 0,341,229,229,230,0,0,0,228,342,0,0,0,0,0,0, 341,230,0,0,0,0,0,0,0,228,229,229,229,229,229,229, 230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,218,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,218,219,0,0,0,0,0,0, 0,0,0,0,0,0,218,0,219,219,0,0,0,0,0,0, 218,218,0,0,218,218,219,218,219,219,0,0,0,0,0,0, 219,219,218,218,219,219,219,219,219,219,0,0,0,0,0,0, 219,219,219,219,219,219,219,219,219,219,0,0,0,0,0,0, 219,219,219,219,219,219,219,219,219,219,0,0,0,0,0,0, 219,219,219,219,219,219,219,219,219,219,0,0,0,0,0,0, 219,219,219,219,219,219,219,219,219,219,0,0,0,0,0,0 219,219,219,219,219,219,219,219,219,219,0,0,0,0,0,0, 219,219,219,219,219,219,219,219,219,219,0,0,0,0,0,0, 219,219,219,219,219,219,219,219,219,219,0,0,0,0,0,0, 219,219,219,219,219,219,219,219,219,219,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,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: maps/hoenn/fill-012.tmx ================================================ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4190,4190,4190,4190,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190, 0,0,0,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190, 4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190, 4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190, 4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190, 4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190, 4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190, 4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190, 4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,21,21,21,21,22,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,21,21,21,21,21,21,21,21,22,0,21,21,21,22,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,20,21,21,21,21,21,21,21,21,21,0,0,0,0,0,0,21,21,21,22,0,21,21,21,21, 0,0,20,21,21,21,21,21,21,21,21,21,21,21,21,21,21,0,0,0,0,0,0,0,0,0,0,0,0,0,21,21,21,22,0,0, 21,21,21,21,21,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,21,21, 21,21,21,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,20,21,21,21,21,21,21,21,21,21,21,21,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 21,21,0,20,21,21,21,21,21,21,21,21,21,21,21,21,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 21,21,21,21,0,0,0,0,0,0,0,0,0,0,21,21,21,21,21,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,21,22,21,22,0,0,0,0,0,0,0,0,0,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,22,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,224,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,224,450,338,224,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,224,225,0,0,337,338,224,450,451,225,224,225,0,0,224,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 224,450,451,225,224,225,224,450,451,450,451,450,451,225,0,337,338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 450,451,450,451,450,451,450,451,450,451,450,451,450,451,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ================================================ FILE: maps/hoenn/fill-013.tmx ================================================ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 4190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 4190,4190,4190,0,0,0,0,0,0,0,0,0,0,0,4190,4190,4190,4190,4190,4190,4190,0,0,0, 4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,0,0, 4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190, 4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190, 4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190, 4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190, 4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 21,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 21,21,21,22,0,0,0,0,0,0,0,0,0,20,21,21,21,21,21,21,21,22,0,0, 0,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,21,22,21,22,0, 0,0,0,0,21,21,21,21,21,21,21,21,21,21,21,0,0,0,0,0,21,21,21,21, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,22,0,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 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: maps/hoenn/fill-014.tmx ================================================ 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,114,114,114,114,114,114,0,116,116,116,0,0,0,0,0, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,116,116,116,116,116,0,0,0,0,0, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,116,116,116,116,116,116,116,0,116,116,0,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,116,116,116,116,0,0,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,229,230,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,207,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,207,4070,4072,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,4296,4298,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,230,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0,0,0,0,207,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,207,0,0,0,0,207,341,229,229,229,229,229,229,229, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,229,230,0,207,207,207,207,341,230,341,229,229,229,229,229,229, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,341,229,229,229,229,229,230,341,230,0,341,229,229,229,229, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,341,230,341,229,229,229,229,229,230,0,341,230,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,229,230,117,341,230,0,0,0,0,0,0,341,230,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,117,117,0,0,0,341,229,229,229,230,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,117,117,341,229,229,230,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,341,229,230,117,117,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,229,229,230,117,0,341,230,117,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,117,341,230,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,117,117,0,341,230,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,117,117,341,230,0,0,4079,4081,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,117,117,117,0,0,0,4192,4193,4080,4080,4080,4080,4080,4080,4080,4080,4080,4081, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,341,230,117,117,0,0,4079,4193,4193,4306,4306,4306,4306,4306,4306,4306,4306,4306,4307, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,230,0,0,117,341,230,117,0,4079,4193,4193,4193,4307,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,117,117,341,230,0,4192,4193,4193,4307,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,117,117,117,0,0,4192,4193,4193,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,341,230,117,117,0,0,4305,4306,4307,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,230,0,0,117,341,230,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,230,0,0,341,230,117,341,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,219,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,94,0,219,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,331,331,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,331,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,94,94,94,94,0,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,94,94,94,94,94,331,331,331,331,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,94,94,94,94,94,0,0,0,0,0,331,331,331, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,94,94,94,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,218, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,218,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,218,218,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4769,4770,4770,4772,331,331,219,219,331,331,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4882,4883,4883,4885,0,0,331,331,0,0,331,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4995,4996,4997,4998,0,218,0,0,0,218,0,331,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,5108,5109,5110,5111,0,331,0,0,218,331,0,0,331, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,0,0,0,0,0,206,0,0,331,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,331,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,218, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,218,0,218,218,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,218,219,219,218,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1908,1908,1908,0,1908,1908,1908,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,218,218,218,218,218,218,219,219,219,219,219,219,219,219,219 ================================================ FILE: maps/hoenn/fill-015.tmx ================================================ 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,116,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114,116,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114,116,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114,116,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,114,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,114,114,2605,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,116,116,116,114,116,116,116,116,116,116,114,114,114,2605,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,116,116,116,116,116,114,116,116,116,114,114,114,114,114,2605,0,0,0,0,0,0,2605,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,116,116,116,116,116,114,114,114,114,114,114,114,114,114,2605,0,0,0,0,0,0,2605,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,116,116,116,116,116,114,114,114,114,114,114,114,114,114,4978,0,0,0,0,0,4978,4978,114,114,114,114,114,114,114,114,114,114,114 0,0,0,0,0,0,0,0,0,117,0,0,0,117,0,0,0,117,117,0,341,229,229,230,0,0,0,0,0,0,0,0,0,4524,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,117,0,0,0,117,0,0,0,117,117,341,230,0,0,0,0,0,0,0,0,0,0,0,0,4524,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,117,0,0,0,117,0,0,0,117,117,117,0,0,0,0,0,0,0,0,0,0,0,4524,0,4636,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,341,230,0,0,0,117,0,0,0,117,117,117,0,0,0,0,0,4524,4636,4636,4636,4636,4636,4636,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,117,0,0,0,0,117,0,0,0,117,117,117,0,0,0,0,4524,4636,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,117,0,0,0,0,117,0,0,0,117,117,117,0,0,0,0,4524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,117,0,0,0,0,117,0,0,0,117,117,117,0,0,0,0,4637,4411,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,117,0,0,0,0,117,0,0,0,117,117,117,0,0,0,0,0,4637,4411,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,117,0,0,0,0,117,0,0,0,117,117,3,4,0,0,0,0,0,4637,4411,0,0,0,0,0,0,0,0,0,0,0,0, 229,229,229,229,229,229,229,229,230,0,0,0,0,3,4,0,0,117,3,4,3,3,4,0,0,0,0,4524,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,117,0,3,4,0,117,0,0,0,0,4524,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,3,4,0,117,0,117,0,0,0,0,4524,0,0,0,0,0,0,0,0,0,0,0,0, 229,229,229,342,0,0,0,0,0,0,0,0,0,0,117,0,0,0,117,0,117,0,117,0,0,0,0,4524,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,228,229,229,229,229,229,229,342,0,0,0,117,0,0,0,117,0,117,0,117,0,0,0,0,4524,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,228,229,229,229,230,0,0,0,117,0,117,0,117,0,0,0,0,4524,793,0,0,0,0,0,0,0,0,0,0,0, 229,229,229,229,229,229,229,229,342,0,0,0,0,0,0,0,341,229,230,341,230,0,117,0,0,0,0,4637,906,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,117,341,229,230,0,341,230,0,0,0,0,4864,906,0,0,0,0,0,0,0,0,0,0,0, 229,229,229,229,342,0,0,0,115,0,0,341,229,229,229,229,230,117,0,341,229,230,4866,0,0,0,0,4977,906,0,0,0,0,0,0,0,0,0,0,0, 229,229,342,0,228,229,229,342,115,0,0,117,0,0,341,229,229,230,341,230,908,0,4979,0,0,0,0,4977,1019,1246,0,0,0,0,0,0,0,0,0,0, 0,0,228,229,229,229,342,115,115,0,0,117,341,229,230,341,229,229,230,0,908,0,4979,0,0,0,0,4977,0,906,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,795,115,115,115,0,0,117,117,341,229,230,0,0,0,0,908,0,4979,0,0,0,4864,5203,0,906,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,908,115,115,115,0,0,117,117,117,0,0,0,0,0,0,908,0,4979,0,0,0,4977,0,0,906,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,218,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,218,0,0,218,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,219,219,218,218,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,219,219,219,219,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,219,331,219,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,218,219,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,219,219,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,219,219,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,219,219,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,219,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,219,219,219,219, 218,218,218,218,0,0,0,0,0,0,0,0,0,0,0,0,218,0,0,218,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,218,0,0,0,0,0,0,0,0,0,0,218,219,218,218,219,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,0,0,0,0,0,0,0,0,0,218,219,219,219,219,219,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,219,219,219,331 ================================================ FILE: maps/hoenn/fill-016.tmx ================================================ 4184,4184,4184,4184,4184,4184,4184,114,114,0,116,116,116,0,0,0, 4184,4184,4184,4184,4184,4184,114,0,114,114,0,0,116,0,0,0, 4184,4184,4184,4184,114,114,114,114,114,114,0,0,0,0,0,0, 4184,4184,4184,4184,114,0,114,114,114,114,116,0,0,0,0,0, 4184,114,114,114,114,114,114,114,114,114,116,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,116,116,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,116,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,116,116,0,0,0,0,0,0, 114,114,114,114,114,114,114,116,116,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,116,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,0,4978,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,4978,4978,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,4978,4978,0,0,0,0,0,0,0,0, 114,114,114,114,114,4978,4978,4978,0,0,0,0,0,0,0,0, 114,114,114,114,114,4978,4978,4978,4978,0,0,0,0,0,0,0, 114,114,114,114,114,4978,4978,4978,4978,0,0,0,0,0,0,0 114,114,114,114,114,4978,4978,4978,4978,0,0,0,0,0,0,0, 114,114,114,114,4978,4978,4978,4978,4978,4978,0,0,0,0,0,0, 114,114,114,114,4978,4978,4978,4978,4978,4978,0,0,0,0,0,0, 114,114,114,114,4978,4978,4978,4978,4978,4978,0,0,0,0,0,0, 114,114,114,114,4978,4978,4978,4978,4978,4978,0,0,0,0,0,0, 114,114,114,114,4978,4978,4978,4978,4978,4978,0,0,0,0,0,0, 114,114,114,114,116,4978,4978,4978,4978,4978,4978,0,0,0,0,0, 114,114,114,114,114,4978,4978,4978,4978,4978,4978,0,0,0,0,0, 114,114,114,114,114,4978,4978,4978,4978,4978,4978,4978,0,0,0,0, 114,114,114,114,114,4978,4978,4978,4978,4978,4978,4978,4978,4978,0,0, 114,114,114,114,114,116,4978,4978,4978,4978,4978,4978,4978,4978,0,0, 114,114,114,114,114,114,116,4978,4978,4978,4978,4978,4978,4978,0,0, 114,114,114,114,114,114,114,4978,4978,4978,4978,4978,4978,4978,0,0, 114,114,114,114,114,114,114,116,4978,4978,4978,4978,4978,4978,4978,0, 114,114,114,114,114,114,114,114,114,114,114,116,4978,4978,4978,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,116,4978,0 114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,4524,0,0,117,0,0,117,4409,4410,4635, 0,0,0,0,0,4524,4636,341,229,230,341,229,230,4522,0,0, 0,0,0,4524,4636,4636,0,117,0,0,117,4409,4410,4635,0,0, 0,0,0,4524,0,341,229,230,0,0,117,4522,0,0,0,0, 4524,4636,4636,4636,0,117,0,0,0,0,117,4522,0,0,0,0, 4636,0,0,341,229,230,0,0,0,341,230,4522,0,0,0,0, 229,229,229,230,0,0,0,0,0,117,4409,4635,0,0,0,0, 0,0,0,0,0,0,0,0,341,230,4522,0,0,0,0,0, 0,0,0,0,0,0,0,341,230,4409,4635,0,0,0,0,0, 0,0,0,0,0,0,0,117,4409,4635,0,0,0,0,0,0, 0,0,0,0,0,0,341,230,4522,0,0,0,0,0,0,0, 0,0,0,0,0,0,117,0,4522,0,0,0,0,0,0,0, 0,0,0,0,0,0,117,0,4522,0,0,0,0,0,0,0, 0,0,0,0,0,341,230,0,4522,0,0,0,0,0,0,0, 0,0,0,0,0,117,0,0,4636,4522,0,0,0,0,0,0, 0,0,0,0,0,117,0,0,0,4522,0,0,0,0,0,0 0,0,0,0,0,117,0,0,0,4522,0,0,0,0,0,0, 0,0,0,0,341,230,0,0,0,4636,4522,0,0,0,0,0, 0,0,0,0,117,0,0,0,0,0,4522,0,0,0,0,0, 0,0,0,0,117,0,0,0,0,0,4522,0,0,0,0,0, 0,0,0,0,117,0,0,0,0,0,4522,0,0,0,0,0, 0,0,0,0,117,0,0,0,0,0,4522,0,0,0,0,0, 0,0,0,0,3,4,0,0,0,0,4636,4522,0,0,0,0, 0,0,0,0,0,117,0,0,0,0,0,4522,0,0,0,0, 0,0,0,0,0,117,0,0,0,0,0,4636,4522,0,0,0, 0,0,0,0,0,117,0,0,0,0,0,0,4636,4636,4522,0, 0,0,0,0,0,3,4,0,0,0,0,0,0,0,4522,0, 0,0,0,0,0,0,3,4,0,0,0,0,0,0,4522,0, 0,0,0,0,0,0,0,117,0,0,0,0,0,0,4522,0, 0,0,0,0,0,0,0,3,3,3,3,4,0,0,4636,4522, 0,0,0,0,0,0,0,0,0,0,0,3,3,4,0,4522, 229,229,342,0,0,0,0,0,0,0,0,0,0,3,4,4522 0,0,228,229,229,229,342,0,0,0,0,0,0,0,117,4522, 0,0,0,0,0,0,228,229,342,0,0,0,0,0,117,4522, 0,0,0,0,0,0,0,0,228,229,229,229,229,229,230,4636, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 4636,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,4636,4636,4522,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,4522,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,4636,4636,4636,4522,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,4636,4636,4522,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,1810,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,1810,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,1810,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,1810,1810,1810,1810,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,1810,1810,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,1810,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,325,326,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,2592,2593,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,2705,2706,2595,0,0,0,0,0,0, 0,0,0,0,0,0,0,2818,2819,2708,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,2821,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,2595,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,2708,2594,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,2821,2707,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,2820,0,3157,3158,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,3270,3271,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,2818,2819,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 218,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0 219,219,0,0,218,218,0,0,0,0,0,0,0,0,0,0, 219,219,218,218,219,219,0,218,0,0,0,0,0,0,0,218, 219,219,219,219,219,219,218,219,218,0,0,0,0,218,218,219, 219,219,219,219,219,219,219,219,219,218,218,218,218,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,218,218,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,219,219,218,218,218,0,0,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,218,218,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,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: maps/hoenn/fill-017.tmx ================================================ 0,119,119,119,119,119,119,119,119,119,119,0,116,116,116,116, 0,119,119,119,119,119,119,119,119,119,119,0,116,116,116,116, 0,119,119,119,119,119,119,119,119,119,119,119,116,116,116,116, 0,119,119,119,119,119,119,119,119,119,119,119,116,116,116,116, 0,119,119,119,119,119,119,119,119,119,119,119,116,116,116,116, 0,119,119,119,119,119,119,119,119,119,119,119,119,116,116,116, 0,119,119,119,119,119,119,119,119,119,119,119,119,116,116,116, 0,119,119,119,119,119,119,119,119,119,119,119,119,116,116,116, 0,119,119,119,119,119,119,119,119,119,119,119,119,116,116,116, 0,119,119,119,119,119,119,119,119,119,119,119,119,116,116,116, 0,119,119,119,119,119,119,119,119,119,119,119,119,119,116,116, 0,119,119,119,119,119,119,119,119,119,119,119,119,119,119,116, 0,119,119,119,119,119,119,119,119,119,119,119,119,119,119,116, 0,119,119,119,119,119,119,119,119,119,119,119,119,119,119,116, 0,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 0,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119 116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 119,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 0,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 0,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 0,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119 119,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 119,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 119,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 119,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 119,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 119,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 119,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 119,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 119,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 119,119,116,0,0,0,0,0,0,0,0,0,0,0,0,0, 119,119,119,116,0,0,0,0,0,0,0,0,0,0,0,0, 119,119,119,116,0,0,0,0,0,0,0,0,0,0,0,0, 119,119,119,116,0,0,0,0,0,0,0,0,0,0,0,0, 119,119,119,116,0,0,0,0,0,0,0,0,0,0,0,0, 119,119,119,116,0,0,0,0,0,0,0,0,0,0,0,0, 119,119,119,116,0,0,0,0,0,0,0,0,0,0,0,0 119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 119,119,119,119,119,119,119,119,119,114,114,114,114,114,114,114, 119,119,119,119,119,119,119,119,119,119,119,119,116,116,116,116, 119,119,119,119,119,119,119,119,119,119,119,119,116,0,0,0, 119,119,119,119,119,119,119,114,114,0,0,0,0,0,0,0, 119,119,119,119,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 119,119,119,116,0,0,0,0,0,0,0,0,0,0,0,0, 119,119,119,116,0,0,0,0,0,0,0,0,0,0,0,0, 119,119,119,116,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,118,0,0,0,6,6,7,120,0,120,0,0,0,0, 0,0,118,0,0,5,7,0,120,120,0,120,0,0,0,0, 0,0,118,0,0,231,233,0,120,120,0,6,7,0,0,0, 0,0,118,0,0,0,0,0,120,120,0,0,120,0,0,0, 0,5,6,0,0,0,0,0,120,6,7,0,120,0,0,0, 0,118,0,0,0,0,0,0,120,0,6,7,6,7,0,0, 0,118,0,0,5,7,0,0,6,7,0,120,0,120,0,0, 0,118,0,0,118,6,7,0,0,6,7,120,0,120,0,0, 0,118,0,0,118,0,6,7,0,0,120,120,0,120,0,0, 0,6,0,5,6,0,0,120,0,0,120,120,0,120,0,0, 0,0,0,118,0,0,0,120,0,0,120,6,7,6,6,7, 0,0,0,118,0,0,0,6,7,0,120,0,120,0,0,120, 0,0,5,6,0,0,0,0,120,0,6,7,120,0,0,120, 0,0,118,0,0,0,0,0,6,7,0,120,6,7,0,120, 0,0,118,0,0,0,0,0,0,120,0,120,0,6,7,6, 0,6,6,0,0,0,0,0,0,120,0,120,0,0,120,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 6,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,120,0,120,0,0,6,7, 0,0,0,0,0,0,0,0,0,120,0,6,6,7,0,120, 0,0,5,7,0,0,0,0,0,120,0,0,120,120,0,120, 0,0,231,233,0,0,0,0,344,233,0,0,120,120,0,6, 0,0,0,0,0,0,344,232,233,0,0,0,120,6,7,0, 0,0,0,0,0,344,233,0,0,0,0,0,120,0,120,0, 345,0,0,0,0,120,0,0,0,0,0,0,6,7,120,0, 231,232,345,0,344,233,0,0,0,0,0,0,0,120,120,0, 0,0,231,232,233,0,0,0,0,0,5,7,0,120,120,0, 0,0,0,0,0,0,0,0,0,0,231,233,0,120,120,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,120,120,0, 0,0,0,0,0,0,0,344,232,232,232,232,232,233,120,0, 0,0,0,0,0,344,232,233,0,0,0,0,0,0,120,0, 232,232,232,232,232,233,0,0,0,0,0,344,232,232,233,0, 345,0,0,0,0,0,0,0,0,0,344,233,0,0,0,0, 231,232,232,232,232,232,232,232,232,232,233,0,0,0,0,344 0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 7,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 120,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 120,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 120,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 120,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 120,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 120,6,7,0,0,0,0,0,0,0,0,0,0,0,0,0, 120,0,120,7,0,0,0,0,0,0,0,0,0,0,0,0, 120,0,120,120,0,0,0,0,0,0,0,0,0,0,0,0, 120,0,120,120,0,0,0,0,0,0,0,0,0,0,0,0, 120,0,120,120,0,0,0,0,0,0,0,0,0,0,0,0, 120,0,120,120,0,0,0,0,0,0,0,0,0,0,0,0, 233,0,120,120,0,0,0,0,0,0,0,0,0,0,0,0 232,232,345,0,0,0,0,0,0,0,0,0,0,0,344,233, 0,0,231,232,232,232,232,232,232,232,232,232,232,232,233,0, 0,0,0,0,0,0,0,0,0,344,232,232,232,232,232,232, 232,232,232,232,232,232,232,232,232,233,0,0,344,232,232,232, 0,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0, 0,0,0,0,0,0,0,344,232,232,232,232,233,0,0,0, 0,0,0,0,344,232,232,233,0,0,0,0,0,0,0,0, 232,232,232,232,233,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,120,120,0,0,0,0,0,0,0,0,0,0,0,0, 0,344,233,120,0,0,0,0,0,0,0,0,0,0,0,0, 232,233,0,120,0,0,0,0,0,0,0,0,0,0,0,0, 232,232,232,233,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,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: maps/hoenn/fill-018.tmx ================================================ 4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190, 4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190, 4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190, 4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190, 4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190, 4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,125,125,125, 4190,4190,4190,4190,119,119,119,119,4190,4190,4190,4190,4190,125,125,125, 4190,119,119,119,119,119,119,119,125,125,125,125,125,125,125,125, 119,119,119,119,119,119,119,119,125,125,125,125,125,125,125,125, 119,119,119,119,119,119,119,119,125,125,125,125,125,125,125,125, 119,119,119,119,119,119,119,119,125,125,125,125,125,125,125,125, 119,119,119,119,119,119,119,119,125,125,125,125,125,125,125,125, 119,119,119,119,119,119,119,119,125,125,125,125,125,125,125,125, 119,119,119,119,119,119,119,119,125,125,125,125,125,125,125,125, 119,119,119,119,119,119,119,125,125,125,125,125,125,125,125,125, 119,119,119,119,119,119,119,125,125,125,125,125,125,125,125,125 119,119,119,119,119,119,119,125,125,125,125,125,125,125,125,125, 119,119,119,119,119,119,119,125,125,125,125,125,125,125,125,125, 119,119,119,119,119,119,119,125,125,125,125,125,125,125,125,125, 119,119,119,119,119,119,119,125,125,125,125,125,125,125,125,125, 119,119,119,119,119,119,119,125,125,125,125,125,125,125,125,125, 119,119,119,119,119,119,119,125,125,125,125,125,125,125,125,125, 119,119,119,119,116,116,116,116,125,125,125,125,125,125,125,125, 119,119,119,119,116,116,116,116,125,125,125,125,125,125,125,125, 119,119,119,119,116,116,116,116,125,125,125,125,125,125,125,125, 119,119,119,119,116,116,116,116,125,125,125,125,125,125,125,125, 119,119,119,119,116,116,116,116,116,116,125,125,125,125,125,125, 119,119,119,119,116,116,116,116,116,116,125,125,125,125,125,125, 119,119,119,119,119,116,116,116,116,116,125,125,125,125,125,125, 119,119,119,119,119,119,116,116,116,116,125,125,125,125,125,125, 119,119,119,119,119,119,119,116,116,116,116,125,125,125,125,125, 119,119,119,119,119,119,119,116,116,116,116,119,119,119,125,125 119,119,119,119,119,119,119,119,116,116,116,116,116,116,125,125, 119,119,119,119,119,119,119,119,116,116,116,116,116,116,125,125, 119,119,119,119,119,119,119,119,116,116,116,116,116,116,116,125, 119,119,119,119,119,119,119,119,119,116,116,116,116,116,116,125, 119,119,119,119,119,119,119,119,119,116,116,116,116,116,116,116, 119,119,119,119,119,119,119,119,119,116,116,116,116,116,116,116, 119,119,119,119,119,119,119,119,119,119,116,116,116,116,116,116, 119,119,119,119,119,119,119,119,119,119,119,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,337,451,0, 0,0,0,0,337,451,450,451,450,451,450,451,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,11,12,12, 0,0,0,0,5,6,6,6,6,6,6,6,6,12,124,0, 0,5,6,6,6,0,5,6,12,12,12,12,12,0,124,0, 6,6,0,0,5,6,6,124,124,124,11,12,0,0,124,0, 0,5,6,6,6,0,0,124,124,124,124,0,0,0,124,0, 0,118,0,0,0,0,0,124,124,124,124,0,0,0,124,0, 0,118,0,0,0,5,7,124,124,124,124,0,0,0,124,0, 6,6,0,0,0,231,233,124,124,124,124,0,0,0,124,0, 0,0,5,6,7,0,0,124,124,124,237,351,0,0,124,0, 0,0,118,0,120,0,0,124,124,124,0,237,351,0,124,0, 0,0,118,0,6,7,11,12,124,124,0,0,124,0,237,351, 0,5,6,0,0,120,124,11,12,237,351,0,237,351,0,124 0,118,0,0,0,120,124,124,0,0,237,351,0,124,0,124, 0,118,0,0,0,120,124,124,0,0,0,124,0,124,0,124, 0,118,0,5,7,120,124,124,0,0,0,124,0,124,0,124, 0,118,0,231,233,120,124,124,0,0,0,237,351,124,0,237, 0,118,0,0,0,120,124,237,351,0,0,0,124,237,351,0, 0,118,0,0,0,120,124,0,124,0,0,0,124,0,237,351, 0,118,0,0,344,233,237,351,124,0,0,0,124,0,0,124, 0,118,0,0,120,0,0,124,237,351,0,0,124,0,0,124, 0,118,0,0,120,0,0,124,0,124,0,0,237,238,351,237, 0,118,0,0,120,0,0,124,0,237,351,0,0,0,124,0, 0,118,0,0,120,0,0,237,238,351,124,0,0,0,237,351, 0,118,0,0,120,0,0,0,0,124,124,0,0,0,0,237, 6,6,0,0,6,7,0,0,0,124,237,351,0,0,0,0, 6,6,6,6,7,6,7,0,0,237,351,124,0,0,0,0, 0,0,0,0,6,7,6,7,0,0,124,237,238,238,351,0, 0,0,0,0,0,6,7,120,0,0,237,238,238,351,237,351 5,7,0,0,0,0,120,120,0,0,0,0,0,124,0,124, 231,233,0,0,0,0,120,120,0,0,0,0,0,237,351,237, 0,0,5,6,6,7,120,6,7,0,0,0,0,0,124,0, 0,0,118,0,0,120,120,0,120,0,0,0,0,0,237,351, 0,0,118,0,0,120,6,7,120,0,0,0,0,0,0,237, 0,5,6,0,0,120,0,120,6,7,0,0,0,0,0,0, 0,118,0,0,0,120,0,120,0,6,7,0,0,0,0,0, 0,118,0,0,0,120,0,6,7,0,120,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0, 0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0, 0,0,0,0,0,0,0,11,11,11,0,11,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 451,450,451,450,451,450,451,450,451,450,451,450,451,450,451,450, 337,451,450,451,450,451,450,451,450,451,450,451,450,451,450,451, 224,450,451,450,451,450,451,450,451,450,451,450,451,450,451,450, 450,451,450,451,450,451,450,451,450,451,450,451,450,451,450,338, 451,450,451,450,451,450,451,450,451,450,451,450,338,0,0,0, 450,338,337,338,0,0,0,0,0,0,0,0,0,0,0,0, 338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,910,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,910,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,910,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,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: maps/hoenn/fill-019.tmx ================================================ 0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,0,0,0,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 0,0,0,0,0,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116 0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,3,3,3,3,3,3,0,115,0,115,0,0,115,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,4,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,2,3,3,3,3,3,3,3,0,115,0,0,115,0,0,0,0,0,0,228,342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,4,0,0,0,3,4,0, 0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,115,0,0,0,0,0,0,0,0,115,0,2,3,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,3,3,3,4,0,117,0, 0,0,0,0,0,0,0,0,0,0,0,0,115,2,3,3,0,0,0,0,0,0,2,3,3,2,3,0,0,0,0,0,0,0,0,228,342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,3,3,0,0,0,0,117,0,3,3, 0,0,0,0,0,0,0,0,0,0,0,0,115,115,2,3,3,3,3,3,3,3,3,0,2,3,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,3,2,3,3,3,3,4,0,3,3,3,4, 0,0,0,0,0,0,0,0,0,0,0,0,115,115,115,0,0,0,0,0,0,0,2,3,3,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,2,3,3,0,2,3,0,0,0,0,3,4,0,0,0,3, 0,0,0,0,0,0,0,0,0,0,2,3,3,115,115,0,2,3,3,3,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,228,342,0,0,0,0,0,0,0,0,0,2,3,2,3,3,3,0,0,0,0,0,0,117,0,341,229,229, 0,0,0,0,0,0,0,0,0,0,115,0,2,3,115,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,342,0,0,0,0,0,0,2,3,3,2,3,0,0,0,0,0,0,0,0,0,117,341,230,0,0, 0,0,0,0,0,0,0,0,0,0,115,2,3,0,115,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,115,0,0,115,0,0,0,0,0,0,0,0,0,0,117,117,0,0,0, 0,0,0,0,0,0,0,0,0,0,115,115,0,2,3,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,2,3,2,3,3,0,0,0,0,0,0,0,0,0,341,230,117,341,229,229, 0,0,0,0,0,0,0,0,2,3,3,115,2,3,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,2,3,3,2,3,0,0,0,0,0,0,0,0,0,0,0,117,0,117,117,0,0, 0,0,0,0,0,0,0,0,115,2,3,3,115,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,115,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,117,0,117,117,0,0, 0,0,0,0,0,0,0,0,115,115,0,0,115,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,342,0,0,115,0,0,115,0,0,0,0,0,0,0,0,0,0,0,341,230,341,230,117,0,341, 0,0,0,0,0,0,0,0,115,115,0,2,3,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,115,0,0,115,0,0,0,0,0,0,0,0,0,0,0,117,0,117,0,117,0,117, 0,0,0,0,0,0,0,0,115,115,0,115,0,2,3,3,0,2,3,3,3,3,3,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,228,342,0,228,229,229,342,0,0,0,0,0,0,0,0,117,0,117,0,117,341,230, 0,0,0,0,0,2,3,3,3,115,0,115,0,115,0,0,2,3,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,342,0,0,228,229,229,342,0,228,342,0,0,0,0,0,0,0,117,341,230,0,117,117,341, 0,0,0,0,0,115,0,2,3,3,2,3,0,115,0,0,115,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,228,229,342,115,0,0,0,0,0,0,0,117,117,341,229,230,117,117, 0,0,0,2,3,3,2,3,0,0,115,0,0,115,0,0,115,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,228,229,229,342,0,0,0,0,115,228,342,0,0,0,0,0,0,117,117,117,0,0,117,117, 0,0,0,115,0,0,115,0,0,2,3,0,0,115,0,0,115,0,0,0,0,0,0,0,0,0,0,3,3,3,4,0,0,0,0,0,0,0,0,0,0,0,0,228,342,0,0,0,228,342,228,229,342,0,0,0,0,117,117,117,0,341,230,117, 0,0,0,115,0,0,115,0,0,115,0,0,2,3,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,228,229,342,0,0,228,342,0,228,342,0,0,341,230,117,117,0,117,341,230, 0,0,0,228,342,0,228,342,0,115,0,0,115,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,342,0,0,115,0,0,115,0,0,117,341,230,117,341,230,117,0, 0,0,0,0,228,342,0,115,0,115,0,0,115,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,342,0,115,0,0,115,0,341,230,117,0,117,117,0,117,0, 0,0,0,0,0,115,0,115,0,115,0,0,115,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,228,342,0,115,341,230,0,117,341,230,117,341,230,0, 0,0,0,0,0,228,342,115,0,115,0,0,115,0,228,342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,115,0,228,230,0,341,230,117,0,117,117,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,99,100,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 99,100,99,100,99,100,99,100,438,439,438,439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 212,213,212,213,212,213,212,213,212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 438,439,438,439,438,439,438,439,438,439,325,326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 212,213,212,213,212,213,212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 438,439,438,439,438,439,438,439,438,439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 212,213,212,213,212,213,212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 438,439,438,439,438,439,438,439,325,326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 212,213,212,213,212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 438,439,438,439,438,439,438,439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 212,213,212,213,212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 551,552,551,552,551,326,325,326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 213,212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 439,438,439,325,326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 213,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 439,438,439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 213,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 439,438,439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 213,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 439,438,439,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 213,212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 439,438,439,438,439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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: maps/hoenn/fill-020.tmx ================================================ 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439 ================================================ FILE: maps/hoenn/fill-021.tmx ================================================ 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439 ================================================ FILE: maps/hoenn/fill-022.tmx ================================================ 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 325,326,325,326,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 218,218,0,0,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 219,219,218,0,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 219,219,219,218,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 219,219,219,219,325,326,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 219,219,219,219,218,0,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 219,219,219,219,219,218,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 219,219,219,219,219,219,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 219,219,219,219,219,219,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 219,219,219,219,219,331,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 331,331,219,219,331,0,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,331,219,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,0,331,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,218,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,331,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 99,100,0,0,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,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: maps/hoenn/fill-023.tmx ================================================ 2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608, 2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,2393, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,2393,2393, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,2393,2393, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,2393, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125 2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608, 125,125,125,125,125,125,125,125,125,125,125,0,2608,2608,2608,2608, 125,125,125,125,125,125,125,125,125,125,125,125,0,2608,2608,2608, 2393,2393,2393,2393,2393,2393,2393,125,125,125,125,125,125,0,2608,2608, 2393,2393,2393,2393,2393,2393,2393,2393,125,125,125,125,0,0,0,2608, 2393,2393,2393,2393,2393,2393,2393,2393,2393,125,125,125,0,0,0,0, 2393,2393,2393,2393,2393,2393,2393,2393,2393,125,125,125,125,125,125,125, 125,2393,2393,2393,2393,2393,2393,2393,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,0,0,0,0, 125,125,125,125,125,125,125,125,125,125,125,125,0,0,0,0, 125,125,125,125,125,125,125,125,125,125,125,125,0,0,0,0, 125,125,125,125,125,125,125,125,125,125,125,125,0,0,0,0, 125,125,125,125,125,125,125,125,125,125,125,125,0,0,0,0, 125,125,125,125,125,125,125,125,125,125,125,125,0,0,0,0, 125,125,125,125,125,125,125,125,125,125,125,125,0,0,0,0, 125,125,125,125,125,125,125,125,125,125,125,125,0,0,0,0 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 224,225,224,225,224,225,224,225,224,450,451,450,451,450,451,450, 450,451,450,451,450,451,450,451,450,451,450,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 451,450,451,450,451,450,451,450,338,0,0,218,219,218,218,218, 0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,11,12,12,12,12, 12,12,12,12,12,12,12,12,12,12,12,12,0,11,12,12, 126,12,12,12,12,12,12,12,12,124,0,11,12,12,12,350, 126,12,13,0,0,0,0,11,124,124,11,12,0,124,350,239, 12,13,126,0,0,0,11,124,124,124,124,0,0,124,126,0, 13,126,126,0,0,0,124,124,124,124,124,0,0,124,126,0, 12,12,12,12,12,12,12,124,124,124,237,351,0,124,12,12, 0,0,0,0,0,0,0,124,124,237,351,124,0,237,238,351, 0,0,0,0,0,0,0,124,124,0,124,237,238,238,351,237, 0,0,0,0,0,0,11,12,124,0,124,0,0,0,237,238, 0,0,0,0,0,0,124,0,124,0,237,238,238,238,351,0, 0,0,0,0,0,0,124,0,237,351,0,0,0,0,124,0, 0,0,0,0,0,0,124,0,0,124,0,0,0,0,124,0, 0,0,0,0,0,0,124,0,0,237,238,238,351,0,124,0, 0,0,0,0,0,0,124,0,0,0,0,0,124,0,237,238, 0,0,0,0,0,0,237,238,351,0,0,0,124,0,0,0 12,12,12,12,12,12,12,12,12,12,12,13,0,0,0,0, 12,12,12,12,12,12,12,12,12,12,13,126,13,0,0,0, 238,238,351,350,238,238,351,0,0,126,126,126,126,13,0,0, 0,0,237,239,0,0,237,351,0,126,126,126,126,126,13,0, 0,0,0,0,0,0,0,237,351,126,126,126,126,126,126,13, 0,0,0,0,0,0,0,0,124,126,126,126,126,126,126,126, 13,0,0,0,0,0,0,0,124,126,126,126,126,126,126,12, 12,12,12,12,12,12,12,12,12,126,126,126,126,126,12,12, 238,238,238,238,238,238,238,238,238,239,126,126,126,12,12,12, 238,238,238,351,0,0,0,0,0,0,126,126,12,12,12,12, 0,0,0,237,238,238,238,238,351,0,126,12,12,12,12,12, 0,0,0,0,0,0,0,0,237,238,239,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 351,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,124,0,0,0,124,0,0,0, 0,0,0,0,0,0,0,0,124,0,0,0,237,238,351,0, 238,351,0,0,0,0,0,0,237,238,238,351,0,0,124,0, 0,237,238,351,0,0,0,0,0,0,0,237,351,0,237,238, 238,351,0,124,0,0,0,0,0,0,0,0,237,238,238,238, 351,237,351,237,238,238,238,238,238,238,238,238,238,238,238,238, 124,0,237,238,238,238,238,238,238,351,0,0,0,0,0,0, 124,0,0,0,0,0,0,0,0,237,238,238,238,238,238,351, 124,0,0,0,0,0,0,350,238,238,238,238,238,238,351,237, 237,238,351,0,0,0,0,126,0,0,0,0,0,0,237,238, 238,351,237,238,238,238,238,239,0,0,0,0,0,0,0,0, 0,237,238,238,238,238,351,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,124,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,237,351,0,0,0,0,0,0,350,238, 238,238,238,351,0,0,0,237,238,351,0,0,0,0,126,11, 0,0,0,124,0,0,0,0,0,237,238,238,238,238,239,124 124,0,0,0,0,0,0,0,0,0,0,0,0,350,238,238, 237,238,351,0,0,0,0,0,0,0,0,350,238,239,350,238, 0,0,237,238,238,238,238,238,238,238,238,239,350,238,239,0, 238,238,238,238,238,238,238,238,238,238,238,238,239,350,238,238, 238,238,238,238,238,1359,1029,1029,1029,1367,238,238,238,239,0,350, 351,0,0,0,0,1028,1029,1029,1029,1030,0,0,0,0,0,126, 124,0,0,0,0,0,0,0,0,0,0,350,238,238,238,239, 237,238,238,238,238,238,238,238,238,238,238,239,0,0,0,0, 238,1359,1029,1029,1029,1029,1029,1029,1029,1029,1367,238,238,238,238,238, 351,1028,1029,1029,1029,1142,11,12,13,1141,1030,0,0,0,0,350, 237,238,238,351,0,0,237,238,239,0,0,0,0,0,0,126, 0,0,0,237,238,238,238,238,238,238,238,238,238,238,238,239, 0,0,0,0,0,0,0,0,0,0,350,238,238,238,238,351, 238,1359,1029,1029,1142,11,13,1141,1029,1029,1367,238,238,238,351,124, 13,1028,1029,1029,1142,124,126,1141,1029,1029,1030,0,0,0,124,237, 126,0,0,0,0,237,239,0,0,0,0,0,0,0,237,238 0,0,0,237,351,0,0,0,0,0,0,0,0,0,11,12, 0,0,0,0,237,351,0,0,0,0,0,0,0,0,237,238, 238,238,351,0,0,237,238,238,238,351,0,0,0,0,0,0, 0,0,237,351,0,0,0,0,0,237,351,0,0,350,238,238, 0,0,0,237,238,238,238,351,0,0,237,238,238,239,0,0, 0,0,0,0,0,0,0,124,0,0,0,0,0,0,0,350, 0,0,0,0,0,0,0,237,238,351,0,0,0,0,350,239, 0,0,0,0,0,0,0,0,0,124,0,0,0,0,126,0, 0,0,0,0,0,0,0,0,0,237,238,238,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 351,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 126,350,238,238,238,238,238,238,238,238,238,238,238,238,238,238, 239,126,11,12,12,13,0,0,0,0,0,0,0,0,0,0, 350,239,237,238,351,126,1141,1029,1029,1029,1142,0,0,1141,1029,1367, 239,0,0,0,124,126,0,0,0,0,0,0,1141,1029,1029,1030, 350,238,238,351,237,239,0,0,0,0,0,0,0,0,0,0, 239,0,0,237,238,238,238,238,238,351,0,0,0,350,238,238, 0,0,0,0,0,0,0,0,0,237,238,238,238,239,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 13,12,12,12,12,12,12,0,0,11,0,0,0,0,11,0, 0,13,0,0,0,0,0,0,11,0,0,0,0,11,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,13,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,4287,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,4287,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,4287,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,4287,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,208,208,208,208,0,0,0,0,0,0,0,0,0,1468,0, 0,208,208,208,208,208,0,0,0,0,0,0,0,0,1581,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,1694,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,4287,0,0, 0,0,0,0,0,0,0,0,0,0,0,208,208,208,208,0, 0,0,0,0,0,0,0,0,0,208,208,208,208,208,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,1468,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,1581,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,1581,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,1694,0,0,0, 0,95,95,95,95,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,1468,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,1581,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,1694,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,4287,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3837, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3950, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,670,670,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,783,783,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,670, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,671, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,783, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,1904,1902,1902,3345,3350,3350,3352,0,0,0,0,0,0,0,0, 670,2016,3344,3457,3458,3463,3463,3465,0,0,0,0,0,0,0,0, 783,2016,0,3570,3571,3576,3576,3578,3355,3355,3355,3355,3355,3355,3353,3468, 0,2016,3682,3683,3684,3689,3690,3691,0,0,205,0,0,0,3466,0, 0,2016,3795,3796,3797,3802,3803,3804,0,0,0,0,0,0,3579,0 0,1904,1902,1903,0,0,0,0,0,0,1901,1902,1902,0,0,0, 0,0,0,2016,0,0,0,0,0,0,2014,0,0,0,0,670, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,783, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,670,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,783,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,670, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,783, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,670,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,783,670,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,783,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,218,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,331,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,218,0,0,0, 0,0,0,218,0,0,0,0,0,0,0,218,331,0,0,0, 0,0,0,331,0,0,0,0,0,0,0,331,0,0,0,0, 0,218,218,0,0,0,0,0,0,0,0,0,0,0,0,0, 218,219,219,218,218,218,218,218,0,0,0,0,0,0,0,218, 331,331,219,219,219,219,219,219,218,0,0,0,0,0,218,219, 0,0,331,331,331,331,331,331,331,0,0,0,0,0,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,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: maps/hoenn/fill-024.tmx ================================================ 4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,125,125,125,125,125,125, 4190,4190,4190,4190,4190,4190,4190,4190,125,125,125,125,125,125,125,125, 4190,4190,4190,4190,125,125,125,125,125,125,125,125,125,125,125,125, 4190,4190,4190,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125 125,125,2608,2608,0,0,0,0,0,0,0,0,0,0,0,0, 125,125,125,0,0,0,0,0,0,0,0,0,0,0,0,0, 125,125,125,0,0,0,0,0,0,0,0,0,0,0,0,0, 125,125,125,0,0,0,0,0,0,0,0,0,0,0,0,0, 125,125,125,125,0,0,0,0,0,0,0,0,0,0,0,0, 125,125,125,125,0,0,0,0,0,0,0,0,0,0,0,0, 125,125,125,125,0,0,0,0,0,0,0,0,0,0,0,0, 125,125,125,125,0,0,0,0,0,0,0,0,0,0,0,0, 125,125,125,125,0,0,0,0,0,0,0,0,0,0,0,0, 125,125,125,125,0,0,0,0,0,0,0,0,0,0,0,0, 125,125,125,125,0,0,0,0,0,0,0,0,0,0,0,0, 125,125,125,125,0,0,0,0,0,0,0,0,0,0,0,0, 125,125,125,125,0,0,0,0,0,0,0,0,0,0,0,0, 125,125,125,125,0,0,0,0,0,0,0,0,0,0,0,0, 125,125,125,125,0,0,0,0,0,0,0,0,0,0,0,0, 125,125,125,125,0,0,0,0,0,0,0,0,0,0,0,0 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125 125,125,125,125,0,0,0,0,0,0,0,0,0,0,0,0, 125,125,125,125,0,0,0,0,0,0,0,0,0,0,0,0, 125,125,125,125,0,0,0,0,0,0,0,0,0,0,0,0, 125,125,125,125,0,0,0,0,0,0,0,0,0,0,0,0, 125,125,125,125,0,0,0,0,0,0,0,0,0,0,0,0, 125,125,125,125,0,0,0,0,0,0,0,0,0,0,0,0, 125,125,125,125,0,0,0,0,0,0,0,0,0,0,0,0, 125,125,125,125,0,0,0,0,0,0,0,0,0,0,0,0, 125,125,125,125,0,0,0,0,0,0,0,0,0,0,0,0, 125,125,125,125,0,0,0,0,0,0,0,0,0,0,0,0, 125,125,125,125,0,0,0,0,0,0,0,0,0,0,0,0, 125,125,125,125,0,0,0,0,0,0,0,0,0,0,0,0, 125,125,125,125,0,0,0,0,0,0,0,0,0,0,0,0, 125,125,125,125,0,0,0,0,0,0,0,0,0,0,0,0, 125,125,125,125,0,0,0,0,0,0,0,0,0,0,0,0, 125,125,125,125,0,0,0,0,0,0,0,0,0,0,0,0 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 116,116,116,116,116,125,125,125,125,125,125,125,125,125,125,125, 0,0,0,0,116,116,116,116,116,116,116,116,116,125,125,125, 0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 116,116,116,116,125,125,125,125,125,125,125,125,125,125,125,125, 0,0,0,116,116,116,116,116,116,116,116,116,125,125,125,125, 0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 125,125,125,125,0,0,0,0,0,0,0,0,0,0,0,0, 125,125,125,125,0,0,0,0,0,0,0,0,0,0,0,0, 125,125,125,125,0,0,0,0,0,0,0,0,0,0,0,0, 125,125,125,125,0,0,0,0,0,0,0,0,0,0,0,0, 125,125,125,125,0,0,0,0,0,0,0,0,0,0,0,0, 125,125,125,125,0,0,0,0,0,0,0,0,0,0,0,0, 125,125,125,125,0,0,0,0,0,0,0,0,0,0,0,0, 125,125,125,125,0,0,0,0,0,0,0,0,0,0,0,0, 116,125,125,125,0,0,0,0,0,0,0,0,0,0,0,0, 116,125,125,125,0,0,0,0,0,0,0,0,0,0,0,0, 116,116,125,125,0,0,0,0,0,0,0,0,0,0,0,0, 0,116,116,125,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,116,125,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,116,125,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,116,125,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,116,116,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,225,0,0,0,0,0,0,0,0, 0,0,0,0,450,0,0,0,0,0,0,0,0,0,0,0, 0,0,338,337,0,0,0,0,0,0,0,0,0,0,0,0, 337,338,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,11,12,12,0,0,0,0,0, 0,0,0,0,11,12,12,12,12,0,0,0,0,0,0,0, 0,0,0,11,124,0,0,0,0,0,0,0,0,0,0,0, 11,12,12,12,124,0,0,0,0,0,0,0,0,0,0,0, 124,0,0,0,124,0,0,0,0,0,0,0,0,0,0,0, 124,0,0,0,124,0,0,0,0,0,0,0,0,0,0,0, 124,0,0,0,124,0,0,0,0,0,0,0,0,0,0,0, 124,0,0,0,124,0,0,0,0,0,0,0,0,0,0,0, 124,0,0,0,124,0,0,0,0,0,0,0,0,0,0,0, 237,351,0,0,237,351,0,0,0,0,0,0,0,0,0,0, 0,124,0,0,0,237,238,351,0,0,0,0,0,0,0,0, 0,124,0,0,0,0,0,124,0,0,0,0,0,0,0,0, 0,237,238,351,0,0,0,124,0,0,0,0,0,0,0,0, 0,0,0,124,0,0,0,237,238,351,0,0,0,0,0,0, 0,0,0,237,238,351,0,0,0,237,238,238,351,0,0,0, 0,0,0,0,0,237,351,0,0,0,0,0,124,0,0,0 0,12,12,13,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,126,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,124,0,0,0,0,0,237,238,351,0, 0,0,0,0,0,0,237,238,238,351,0,0,0,0,237,238, 0,0,0,0,0,0,0,0,0,124,0,0,0,0,0,0, 351,0,0,0,0,0,0,0,0,237,351,0,0,0,0,0, 237,238,351,0,0,0,0,0,0,0,237,238,238,238,238,351, 0,0,124,0,0,0,0,0,0,0,0,0,0,0,0,237, 0,0,237,238,238,238,238,238,351,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,237,238,238,238,238,351,0,0, 238,238,238,238,351,0,0,0,0,0,0,0,0,237,238,238, 0,0,0,0,237,238,351,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,237,238,351,0,0,0,0,0,0,0, 238,351,0,0,0,0,0,0,237,238,238,238,238,238,351,0, 0,237,238,351,0,0,0,0,0,0,0,0,0,0,237,238, 0,0,0,124,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,237,238,238,238,238,238,238,351,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,237,238,238,238,351,0 0,0,0,0,0,0,0,0,0,350,238,238,238,238,238,351, 238,351,0,0,0,350,238,238,238,239,0,0,0,0,0,237, 0,237,238,238,238,239,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,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,238,238,238, 238,238,238,238,351,0,0,0,0,0,350,238,239,0,0,0, 0,0,0,0,237,238,238,238,238,238,239,0,0,0,350,238, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,126,0, 351,0,0,0,0,0,0,0,0,0,350,238,238,238,239,0, 237,238,238,238,238,238,238,238,238,238,239,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 351,0,0,0,0,0,0,0,0,0,0,350,238,238,238,238, 237,238,351,0,0,0,0,0,0,0,350,239,0,0,0,0, 0,0,237,238,238,238,238,238,238,238,239,0,0,0,350,238, 0,0,0,0,0,0,350,238,238,238,238,238,238,238,239,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 351,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 237,238,238,238,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 238,238,238,238,0,0,0,0,0,0,0,0,0,0,0,0, 350,238,238,238,0,0,0,0,0,0,0,0,0,0,0,0, 239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,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,238,0,0,0,0,0,0,0,0,0,0,0,0, 350,238,239,0,0,0,0,0,0,0,0,0,0,0,0,0, 239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 238,238,238,238,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,237,238, 238,238,238,351,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,237,238,238,238,238,238,351,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,237,238,238,238,238,351,0, 238,238,238,238,351,0,0,0,0,0,0,0,0,0,237,238, 0,0,0,0,237,238,238,238,238,238,238,238,351,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,237,238,238,238, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 238,238,238,238,238,238,239,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,350,238,238,238,238,238,238, 0,0,0,0,350,238,238,238,238,239,0,0,0,0,0,0, 0,0,350,238,239,0,0,0,0,0,0,0,0,0,0,0, 238,238,239,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 238,238,238,351,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,237,238,238,238,238,238,238,238,351,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,237,238,238,238,238, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 238,238,351,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,237,238,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 351,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 237,351,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,237,351,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,124,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,124,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,124,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,237,238,0,0,0,0,0,0,0,0,0,0,0,0 451,450,451,450,451,450,451,0,0,0,0,0,0,0,0,0, 450,451,450,451,0,0,0,0,0,0,0,0,0,0,0,0, 451,450,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,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: maps/hoenn/fill-025.tmx ================================================ 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439 ================================================ FILE: maps/hoenn/fill-026.tmx ================================================ 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4636,4522, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4409,4635, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4409,4410,4635,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4409,4410,4635,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4409,4635,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4409,4410,4411,0,0,4409,4635,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4409,4635,0,4637,4410,4410,4635,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4409,4410,4635,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4409,4635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4409,4635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4409,4410,4635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4409,4635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,331,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,218,0, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,0,331,331,331,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,0, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,331,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,0, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,0,331,331,331,219,219,219,219,219,219,219,219,219,219,219,219,219,219,0, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,331,219,219,219,219,219,219,219,219,219,219,219,219,219,0, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,0,331,331,331,331,331,219,219,219,219,219,219,219,331,0, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,331,219,219,219,219,331,331,0,0, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,0,331,331,219,219,0,0,0,0, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,0,331,331,0,0,0,0, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,0,0,0,0,0,0,0, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,0,0,0,0,0,0,0, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,0,0,0,0,0,0,0, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,0,0,0,0,0,0,0, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,325,326,325,326,325,326,0,0,0,0,0,0,0, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,325,326,0,0,0,0,0,0,0,0,0,0,0,0,0, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,325,326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,325,326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,325,326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ================================================ FILE: maps/hoenn/fill-027.tmx ================================================ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,116,116,116,116,0,0,0,0, 0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0, 116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0, 116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0, 116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0, 116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0, 116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0, 116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0, 116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0, 116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0, 116,116,116,116,116,116,116,116,116,116,116,116,116,125,125,125 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 125,125,125,125,125,125,125,125,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116 116,116,116,116,116,116,116,116,116,116,116,116,116,125,125,125, 116,116,116,116,116,116,116,116,116,116,116,116,116,125,125,125, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,125,125, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,125,125, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,125,125, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,125,125, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,125,125, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,125,125, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,125,125, 116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0, 116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0, 116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0, 116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0, 116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0, 116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0, 116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0 125,125,125,125,125,125,125,125,0,0,0,0,0,0,0,0, 125,125,125,125,125,125,125,125,0,0,0,0,0,0,0,0, 125,125,125,125,125,125,125,125,0,0,0,0,0,0,0,0, 125,125,125,125,125,125,125,125,0,0,0,0,0,0,0,0, 125,125,125,125,125,125,125,125,0,0,0,0,0,0,0,0, 125,125,125,125,125,125,125,125,0,0,0,0,0,0,0,0, 125,125,125,125,125,125,125,125,0,0,0,0,0,0,0,0, 125,125,125,125,125,125,125,125,0,0,0,0,0,0,0,0, 125,125,125,125,125,125,125,125,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0, 116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0, 116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0, 116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0, 116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0, 116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0, 116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0, 116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0, 116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0, 116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0, 116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,3,0,3,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,2, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,115, 0,0,0,0,0,0,0,0,0,0,0,0,2,3,3,115, 0,0,0,0,0,0,0,0,0,0,0,0,115,0,2,3 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,2,3,3,2,3,4,4,0,0,0,0,0,0,0, 0,2,115,0,2,3,0,117,117,0,0,0,0,0,0,0, 2,3,115,0,115,0,0,3,3,4,0,0,0,0,0,0, 3,0,115,2,3,0,0,0,0,3,3,4,0,0,0,0, 2,3,3,115,0,0,0,0,0,0,0,117,0,0,0,0, 115,0,0,115,0,0,0,0,0,0,0,117,0,0,0,0, 3,2,3,3,0,0,0,0,0,0,0,3,4,0,0,0, 0,115,0,0,0,0,0,0,0,0,0,0,117,0,0,0, 2,3,0,0,0,0,0,0,0,0,0,0,117,0,0,0, 115,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,124,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,115,2,3,2, 0,0,0,0,0,0,0,0,0,0,0,0,115,115,0,115, 0,0,0,0,0,0,0,0,0,0,0,2,3,115,0,115, 0,0,0,0,0,0,0,0,0,0,0,115,2,3,2,3, 0,0,0,0,0,0,0,0,0,0,0,115,115,2,3,0, 0,0,0,0,0,0,0,0,0,0,0,115,115,115,0,0, 0,0,0,0,0,0,0,0,0,0,0,115,115,115,0,0, 0,0,0,0,0,0,0,0,0,2,3,3,115,115,0,0, 0,0,0,0,0,0,0,0,0,115,0,0,115,115,0,0, 0,0,0,0,0,0,0,0,0,115,0,0,115,115,0,0, 0,0,0,0,0,0,0,0,0,115,0,2,3,115,0,0, 0,0,0,0,0,0,0,0,0,115,0,115,2,3,0,0, 0,0,0,0,0,0,0,0,0,115,0,115,115,0,0,0, 0,0,0,0,0,0,0,0,0,115,0,115,115,0,0,0, 0,0,0,0,0,0,0,0,0,115,0,115,228,342,0,0, 0,0,0,0,0,0,0,0,0,228,342,228,342,228,342,0 3,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0, 0,0,0,0,0,2,4,0,0,0,0,0,0,117,0,0, 0,0,0,0,0,115,117,0,0,0,0,0,0,117,0,0, 0,0,0,0,0,115,3,4,0,0,0,0,0,3,3,4, 0,0,0,0,0,115,0,117,0,0,0,0,0,0,0,117, 0,0,0,0,2,3,0,3,4,0,0,0,0,0,0,3, 0,0,0,2,3,0,0,0,117,0,0,0,0,0,0,0, 0,0,0,115,0,0,0,0,3,4,0,0,0,0,0,0, 0,0,2,3,0,0,0,0,0,117,0,0,0,0,0,0, 0,0,115,0,0,0,0,0,0,3,3,3,4,0,0,0, 2,3,3,0,0,0,0,0,0,0,0,0,3,4,0,0, 115,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3, 115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 228,342,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,124,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,124,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,237,351,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,124,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,124,0,0, 4,0,0,0,0,0,0,0,0,0,0,0,0,124,0,0, 117,0,0,0,0,0,0,0,0,0,0,0,0,124,0,0, 3,3,3,4,0,0,0,0,0,0,0,0,0,124,0,0, 0,0,0,3,3,3,4,0,0,0,0,0,0,124,0,0, 0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,0, 3,3,3,3,4,0,0,0,0,3,3,3,4,0,0,0, 0,0,0,0,3,3,3,3,4,0,0,0,117,0,0,0, 0,0,0,0,0,0,0,0,3,3,4,0,117,0,0,0, 0,0,0,0,0,0,0,0,0,0,117,0,117,0,0,0, 0,0,0,0,0,0,0,0,0,0,117,0,3,0,0,0 0,11,12,13,0,0,0,0,0,0,0,0,0,0,0,0, 0,124,0,12,13,0,0,0,0,0,0,0,0,0,0,0, 0,124,0,0,126,0,0,0,0,0,0,0,0,0,0,0, 0,124,0,0,126,0,0,0,0,0,0,0,0,0,0,0, 0,124,0,0,126,0,0,0,0,0,0,0,0,0,0,0, 11,12,0,0,126,0,0,0,0,0,0,0,0,0,0,0, 124,0,0,0,12,12,13,0,0,0,0,0,0,0,0,0, 124,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0, 124,0,0,0,0,0,126,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,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,342,115,0,115,0, 0,0,0,0,0,0,0,0,0,0,0,115,115,0,115,0, 0,0,0,0,0,0,0,0,0,0,0,115,115,0,115,0, 0,0,0,0,0,0,0,0,0,0,0,115,115,0,115,0, 0,0,0,0,0,0,0,0,0,0,0,115,115,0,115,0, 0,0,0,0,0,0,0,0,0,0,0,115,115,0,115,0, 0,0,0,0,0,0,0,0,0,0,0,115,115,0,115,0, 0,0,0,0,0,0,0,0,0,0,0,115,115,0,228,342, 0,0,0,0,0,0,0,0,0,0,0,115,228,342,0,115, 0,0,0,0,0,0,0,0,0,0,0,115,0,115,0,115, 0,0,0,0,0,0,0,0,0,0,0,115,0,115,0,115, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,115,0,0,0,0,0,0,0,0,0,0,0,0,2,3, 0,115,0,0,0,0,0,0,0,0,0,0,0,0,115,0, 0,115,0,0,0,0,0,0,0,0,0,0,2,3,3,0, 0,228,342,0,0,0,0,0,0,0,0,0,115,0,0,0, 0,0,115,0,0,0,0,0,0,2,3,3,3,0,0,0, 0,0,115,0,0,0,0,0,0,115,0,0,0,0,0,0, 0,0,115,0,0,0,0,0,0,115,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,3,3,4,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,2,3,3,3,4,0,0,0,0,2,3,3,0,0,0, 3,3,0,0,0,3,3,3,4,0,115,0,0,0,0,0, 0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ================================================ FILE: maps/hoenn/fill-028.tmx ================================================ 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 229,229,229,342,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,228,229,229,229,229,229,342,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,228,342,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,228,229,342,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,228,229,342,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,229, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 229,342,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,228,229,229,342,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,228,229,342,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,228,229,229,342,0,0,0,0,0,0 0,115,0,0,228,229,229,229,0,0,0,0,0,0,0,0, 0,228,229,229,229,229,229,229,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,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,229,229,229,342,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,228,229,229, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 229,229,342,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,228,229,229,229,342,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,228,229,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 218,218,0,0,331,331,331,331,331,331,219,219,219,219,219,219, 219,219,218,0,0,218,218,218,0,0,331,219,219,219,219,219, 219,219,219,218,218,219,219,219,218,218,0,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,0,331,331,219,219,219, 219,219,219,219,219,219,219,219,219,219,218,0,0,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,218,0,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,0,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,0,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,0,331,331,219, 219,219,219,219,219,219,219,219,219,219,219,219,218,0,0,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,218,0,331, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,0,0, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,218,218, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 331,331,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 218,0,331,331,331,219,219,219,0,0,0,0,0,0,0,0, 219,218,0,0,0,219,219,219,0,0,0,0,0,0,0,0, 219,219,218,218,0,331,331,219,219,219,219,219,219,219,219,219, 219,219,219,219,218,0,0,331,331,331,219,219,219,219,219,219, 219,219,219,219,219,218,0,0,0,0,331,331,331,331,219,219 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 219,219,219,219,219,219,218,218,218,0,218,218,0,0,331,331, 219,219,219,219,219,219,219,219,219,218,219,219,218,0,0,218, 219,219,219,219,219,219,219,219,219,219,219,219,219,218,218,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 331,331,331,219,219,219,219,219,0,0,0,0,0,0,0,0, 218,0,0,219,219,219,219,219,0,0,0,0,0,0,0,0, 219,218,0,331,331,331,331,219,0,0,0,0,0,0,0,0, 219,219,218,0,0,218,0,331,0,0,0,0,0,0,0,0, 219,219,219,218,218,219,218,218,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,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: maps/hoenn/fill-029.tmx ================================================ 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,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: maps/hoenn/fill-030.tmx ================================================ 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,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: maps/hoenn/fill-031.tmx ================================================ 114,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0, 0,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,116,116,116,0,0,0,0,0,0,0, 114,114,114,114,114,0,116,116,116,116,116,116,0,0,0,0, 114,114,114,114,114,0,116,116,116,116,116,116,116,116,116,0, 114,114,114,114,114,0,0,0,116,116,116,116,116,116,116,116, 4184,4184,4184,4184,4184,4184,4184,4184,116,116,116,116,116,116,116,116, 4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184, 4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184, 4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184, 4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184, 4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184, 4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184, 4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184, 4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184, 114,114,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184 0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114, 0,0,0,0,0,0,0,116,116,116,116,0,0,0,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,0,0,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,114,114, 116,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116, 116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114, 4184,4184,116,114,114,114,114,114,114,114,114,114,114,114,114,114 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 116,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 116,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 116,116,116,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,116,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,116,116,116,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,116,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,116,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,116,116,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,116,114,114,0,0,0,0,0,0,0,0 114,114,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184, 114,114,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184, 114,114,114,114,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184, 114,114,114,114,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 4184,4184,116,114,114,114,114,114,114,114,114,114,114,114,114,114, 4184,4184,116,114,114,114,114,114,114,114,114,114,114,114,114,114, 4184,4184,116,114,114,114,114,114,114,114,114,114,114,114,114,114, 4184,4184,116,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 114,114,114,114,114,116,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,116,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,116,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,116,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,116,116,116,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,116,116,0,0,0,0,0,0,0,0, 114,114,114,114,114,116,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 229,229,229,229,229,229,229,342,0,0,0,0,0,0,0,0, 229,229,229,229,229,229,342,115,0,0,0,0,0,0,0,0, 229,229,229,229,229,342,115,228,342,0,0,0,0,0,0,0, 0,0,0,0,0,115,228,342,228,229,229,342,0,0,0,0, 0,0,0,0,0,115,0,228,229,342,0,228,229,229,229,229, 0,0,0,0,0,228,229,229,342,228,229,229,229,229,229,229, 4409,4410,4410,4410,4410,4410,4410,4411,228,229,229,229,229,229,229,229, 4522,0,0,0,0,0,0,4637,4410,4410,4410,4410,4410,4410,4410,4411, 4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524, 4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524, 4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524, 4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524, 4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524, 4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524, 4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524, 4636,4636,4522,0,0,0,0,0,0,0,0,0,0,0,0,4637 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,341,229,229,342,0,0,0,0,0, 229,229,229,229,229,229,229,230,0,0,228,342,0,0,0,0, 229,229,229,229,229,229,229,229,229,229,342,228,229,229,342,0, 342,0,0,0,0,0,0,0,0,0,228,229,229,342,228,229, 115,0,0,0,0,0,0,0,0,0,0,0,0,228,229,342, 115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115, 115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115, 115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228, 115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 228,229,342,0,0,0,0,0,0,0,0,0,0,0,0,0, 4410,4411,115,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 228,229,342,0,0,0,0,0,0,0,0,0,0,0,0,0, 229,342,115,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,115,228,229,342,0,0,0,0,0,0,0,0,0,0,0, 0,228,229,342,115,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,115,115,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,115,228,342,0,0,0,0,0,0,0,0,0,0, 0,0,0,228,342,115,0,0,0,0,0,0,0,0,0,0 0,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,4636,4636,4522,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,4522,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,4636,4636,4636,4636,4636,4636,4636,4636,4636,4636,4636,4636, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,4524,115,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,4524,115,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,4524,115,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,4524,115,0,0,0,0,0,0,0,0,0,0,0,0,0, 4636,4636,228,229,342,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,228,229,229,229,342,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,228,229,229,229,229,229,229,229, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,115,115,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,115,115,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,115,115,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,115,115,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,115,228,229,229,0,0,0,0,0,0,0,0, 0,0,0,0,228,229,229,229,0,0,0,0,0,0,0,0, 0,0,0,0,0,2,3,3,0,0,0,0,0,0,0,0, 0,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0, 342,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0, 115,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0, 228,342,0,0,115,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 218,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219, 0,0,0,0,0,0,0,0,1348,0,0,331,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,331,331,331,219, 0,0,0,0,0,0,0,0,0,1348,0,0,0,0,0,331, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 331,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 0,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 0,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 0,331,331,219,219,219,219,219,0,0,0,0,0,0,0,0, 0,0,0,219,219,219,219,219,0,0,0,0,0,0,0,0, 0,0,0,331,331,219,219,219,0,0,0,0,0,0,0,0, 0,0,0,0,0,219,219,219,0,0,0,0,0,0,0,0, 0,0,0,0,0,219,219,219,0,0,0,0,0,0,0,0, 0,0,0,0,0,331,219,219,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,219,219,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,219,219,0,0,0,0,0,0,0,0 219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,219,218,218,0,0,0,0,0,0,0,0,0,0,0,0, 219,219,219,219,0,0,0,0,0,0,0,0,0,0,0,0, 219,219,219,219,218,218,218,218,218,218,218,218,218,218,218,218, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 331,331,331,331,219,219,219,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 218,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,219,218,218,0,0,0,0,0,0,0,0,0,0,0,0, 219,219,219,219,0,0,0,0,0,0,0,0,0,0,0,0, 219,219,219,219,0,0,0,0,0,0,0,0,0,0,0,0, 219,219,219,219,0,0,218,218,0,0,0,0,0,0,0,0, 219,219,219,219,218,218,219,219,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,219,219,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,219,219,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,219,219,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,331,331,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,218,218,0,0,0,0,0,0,0,0, 0,0,0,0,0,218,219,219,0,0,0,0,0,0,0,0, 0,0,0,0,0,219,219,219,0,0,0,0,0,0,0,0, 0,0,0,0,0,219,219,219,0,0,0,0,0,0,0,0, 0,0,0,0,0,219,219,219,0,0,0,0,0,0,0,0, 0,0,0,0,0,219,219,219,0,0,0,0,0,0,0,0, 0,0,0,0,0,331,331,331,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,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: maps/hoenn/fill-032.tmx ================================================ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,114,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114, 114,114,114,114,0,0,0,0,0,0,0,114,114,114,114,114, 114,114,114,114,0,0,0,0,0,0,0,114,114,114,114,114, 114,114,114,114,114,0,0,0,0,0,0,114,114,114,114,114 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,0,116,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 114,114,114,114,114,114,0,0,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,342, 229,229,229,229,229,229,229,229,229,229,342,0,0,0,0,228, 0,0,0,0,0,0,0,0,0,0,228,229,342,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,228,229,229,229, 4410,4410,4410,4410,4410,4410,4410,4411,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,4637,4411,0,0,0,0,0,0,0, 4636,4636,4636,4636,4522,0,0,0,4637,4410,4411,0,0,0,0,0, 0,0,0,0,4522,0,0,0,0,0,4524,0,0,0,0,0, 0,0,0,0,4636,4522,0,0,0,0,4524,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 228,229,342,0,0,0,0,0,0,0,0,0,0,0,0,0, 229,342,115,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,4636,4522,4524,4636,4636,4636,0,0,0,0,0, 0,0,0,0,0,0,4636,4636,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,218,218,0,0, 218,218,218,0,0,218,218,0,218,218,0,0,331,219,0,218, 219,219,219,218,218,219,219,218,219,219,218,0,0,331,0,331, 331,331,331,331,331,331,331,331,219,331,331,0,0,0,0,0, 0,0,0,0,0,0,0,0,331,212,213,212,213,212,213,212, 218,0,0,0,0,0,0,0,0,325,326,438,439,438,439,438, 219,218,218,0,0,0,0,0,0,0,0,212,213,212,213,212, 219,219,219,218,0,0,0,0,0,0,0,438,439,438,439,438, 219,219,219,331,0,218,0,0,218,218,0,212,213,212,213,212 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,212,213,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,325,326,212,213,212,213,0,0,0,0,0,0,0, 213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 219,219,331,212,213,331,0,0,331,331,0,438,439,438,439,438, 219,331,0,325,326,212,213,212,213,212,213,212,213,212,213,212, 331,0,0,0,331,438,439,438,439,438,439,438,439,438,439,438, 0,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212, 0,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,99,100,99,100,99,100,99, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,99,100,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,99,100,99,100,99,100,0,0,0,0,0, 0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0, 0,99,100,99,100,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,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: maps/hoenn/fill-033.tmx ================================================ 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114,116,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114 0,0,0,0,0,0,0,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,342,0,117,0,0,0,0,0, 0,0,0,0,0,0,0,0,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,229,230,0,0,0,0,0, 342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,229,229,229,229,229,229,229,229,229, 115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,229,229,229,230,0,0,0,341,229,229,229,229,229, 228,342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,229,229,230,0,0,0,0,0,0,0,117,0,0,0,0,0, 0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,229,230,0,0,0,0,0,0,0,0,0,341,230,0,0,0,0,0, 0,228,229,342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,341,230,0,0,0,0,0,0, 0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,229,230,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0,0,0,0, 0,0,0,228,229,342,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0,0,0,0, 0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,341,229,230,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0,0,0,0, 0,0,0,0,0,228,229,229,229,342,0,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,341,230,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,228,342,0,0,0,0,341,229,230,0,0,0,0,0,0,0,0,0,0,0,0,341,230,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,228,229,229,229,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0,341,230,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,230,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,0,0,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,0,0,331,331, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1348,1349,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1348,1349,218,218, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,0,0,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,219,0,0,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,218,218,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,219,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,219,219,219,219,219 ================================================ FILE: maps/hoenn/fill-034.tmx ================================================ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2608,2608,2608,2608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 4190,4190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2608,2608,2608,2608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2608,2608,2608,2608,2608,2608,2608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 4190,4190,4190,4190,4190,4190,0,0,0,0,0,0,0,0,2608,2608,2608,0,0,0,0,0,0,0,0,0,0,2608,2608,2608,2608,2608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,2608,2608,2608,2608,2608,0,0,0,0,0,0,0,2608,2608,2608,2608,2608,2608,2608,2608,2608,0,0,0,0,0,0,0,0,0,0,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,0,0,0,0,0,0,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,3,3, 4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,0,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,0,0,0,0,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,0,0,0,0,2608,2608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,116,116, 4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,0,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,0,0,0,2608,2608,2608,116,116,116,116,116,116,116,116,116 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,4636,4636,4636,4636,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 21,21,22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,4636,4636,4636,4636,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,4636,4636,0,0,0,0,4636,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,21,21,21,21,22,0,0,0,0,0,0,4524,4636,4636,4636,4522,0,0,0,0,0,0,0,0,4524,4636,0,0,0,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,4636,4636,4636,4636,0,0,0,0,0,0,0,4636,4636,4636,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,21,21,21,21,21,21,21,21,22,0,0,4636,4636,4522,0,0,0,0,0,4524,4636,0,0,0,0,0,4636,4636,4636,4522,0,0,0,0,0,0,0,0,4524,4636,4636,4636,4636,4636,4636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4636,4636,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,21,21,22,21,21,21,22,135,0,0,0,0,4636,4636,4636,4636,4636,4636,4636,0,0,0,0,0,0,0,0,0,4636,4636,4636,4636,4636,4522,0,0,4524,4636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4636,4636,4636,4636,4522,0,0,4524,4636,4636,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,3,3,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,21,21,21,22,135,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4636,4636,4636,4636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4636,4636,4636,4636,0,0,4636,4636,4636,4636,4636,4636,4636,4636,4522,0,4524,4636,4636,2,3,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,225,0,224,225,224,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,337,338,0,337,451,450,451,225,224,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,337,338,0,0,0,0,0,0,0,0,0,0,0,0,224,225,337,338,0,224,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,225,224,225,224,225,224,450,451,450,451,450,451,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,22,0,0,22,0,0,0,0,224,225,224,225,0,0,224,225,224,225,224,225,224,450,451,225,0,0,337,338,0,0,224,225,0,0,0,0,0,0,224,225,224,225,224,225,224,450,451,450,451,450,451,450,451,450,451,450,338,337,451,225,224,225,224,225,0,0,0,0,224,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,337,451,450,451,225,224,450,451,450,451,450,451,450,451,450,451,225,224,225,0,0,224,450,451,225,224,225,224,225,224,450,451,450,451,450,451,450,451,450,451,450,451,450,451,450,451,450,338,0,224,450,451,450,451,450,451,225,224,225,0,337,451,225,224,225,224,225,224,225,0,0,0,0,224,225,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,337,451,450,451,450,451,450,451,450,451,450,451,450,451,450,451,450,451,225,224,450,451,450,451,450,451,450,451,450,451,450,451,450,451,450,451,450,451,450,451,450,451,450,451,450,451,225,224,450,451,450,451,450,451,450,451,450,451,225,224,450,451,450,451,450,451,450,451,225,224,225,0,337,338,0,0,0,0,0,0,0,0,0,0 ================================================ FILE: maps/hoenn/fill-035.tmx ================================================ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116 0,2,3,3,3,3,3,3,3,3,3,4,0,0,0,0,2, 3,3,0,0,0,0,0,0,0,0,0,3,3,3,3,3,3, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ================================================ FILE: maps/hoenn/fill-036.tmx ================================================ 0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,4978,4978,4978,4978,4978,4978,4978,4978,114,114,0,4978,0,0, 0,0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,0,0,0, 0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 5090,5429,1019,1020,1020,1020,1020,1020,1020,1020,1246,0,0,341,229,342, 0,4977,0,0,0,0,0,0,0,0,1019,1358,229,230,4979,115, 0,5090,5091,5429,0,0,0,1132,1020,1020,1020,1021,0,5430,5092,228, 0,0,0,5090,5091,5429,0,0,0,0,0,0,5430,5092,0,0, 0,0,0,0,0,5090,5091,5091,5091,5091,5091,5091,5092,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 229,342,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,228,342,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,228,229,229,229,229,342,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,228,229,229,229,229,342,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,228,229,229,229, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 218,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 331,331,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 0,0,331,219,219,219,219,219,219,219,219,219,219,219,219,219, 0,0,0,331,331,331,331,331,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,331,331,331,331,331,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,331,331,331, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,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: maps/hoenn/fill-037.tmx ================================================ 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0, 0,0,114,114,114,114,114,114,114,114,114,0,0,0,0,0, 0,0,0,0,0,0,114,114,114,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 229,342,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,228,229,229,229,229,229,229,229,342,0,0,0,0,0,341, 0,0,0,0,0,0,0,0,0,228,229,229,229,229,229,230, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,341,229,229,229,229,229,229,229,229,342,0, 229,229,229,229,229,230,0,0,0,0,0,0,0,0,228,342, 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,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,229, 229,342,0,0,0,0,0,0,0,0,0,341,229,229,230,0, 0,228,229,229,229,342,0,0,0,341,229,230,0,0,0,0, 0,0,0,0,0,228,229,229,229,230,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 331,331,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 0,0,331,331,331,331,331,331,331,331,219,219,219,219,219,331, 0,0,0,0,0,0,0,0,0,0,331,331,331,331,331,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,331,331,331,331,331,331,331,331,331,331,219, 331,331,331,331,331,0,0,0,0,0,0,0,0,0,0,331, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,331,331, 331,219,219,219,219,219,219,219,219,219,219,331,331,331,0,0, 0,0,331,331,331,331,219,219,219,331,331,0,0,0,0,0, 0,0,0,0,0,0,331,331,331,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,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: maps/hoenn/fill-038.tmx ================================================ 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,114,114,114,114,114,114,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 229,229,229,229,229,229,229,342,0,0,0,0,0,0,341,229, 0,0,0,0,0,0,0,228,229,229,229,229,229,229,230,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 341,229,229,229,229,229,229,229,229,342,0,0,0,0,0,0, 230,0,0,0,0,0,0,0,0,228,229,229,229,229,229,229, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 229,229,229,229,342,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,228,229,229,229,229,229,229,229,229,229,229,229, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 331,331,331,331,331,331,331,331,219,219,219,219,219,219,331,331, 0,0,0,0,0,0,0,0,331,331,331,331,331,331,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 331,331,331,331,331,331,331,331,331,331,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,331,331,331,331,331,331, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 331,331,331,331,331,219,219,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,331,331,331,331,331,331,331,331,331,331,331, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,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: maps/hoenn/fill-039.tmx ================================================ 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,114,114,114,114,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0, 114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0, 114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 228,229,229,229,229,229,229,229,229,229,229,342,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,228,229,229,229,229, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 229,229,229,229,229,229,342,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,228,229,342,0,0,0,0,341,229,229, 0,0,0,0,0,0,0,0,228,229,229,229,229,230,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,230, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0, 0,0,0,0,0,0,0,0,0,0,0,0,341,229,230,0, 0,0,0,0,0,0,0,0,0,341,229,229,230,0,0,0, 0,0,0,0,341,229,229,229,229,230,0,0,0,0,0,0, 0,0,341,229,230,0,0,0,0,0,0,0,0,0,0,0, 229,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 331,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 0,331,331,331,331,331,331,331,331,331,331,331,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,331,331,331,331, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 331,331,331,331,331,331,331,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,331,331,219,219,219,219,331,331,331, 0,0,0,0,0,0,0,0,0,331,331,331,331,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,0, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,0, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,331,0, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,0,0, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,0,0, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,0,0, 219,219,219,219,219,219,219,219,219,219,219,219,331,331,0,0, 219,219,219,219,219,219,219,219,219,331,331,331,0,0,0,0, 219,219,219,219,331,331,331,331,331,0,0,0,0,0,0,0, 219,219,331,331,0,0,0,0,0,0,0,0,0,0,0,0, 331,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,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: maps/hoenn/fill-040.tmx ================================================ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,116,114,114 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,114,114,114,0,0,0,0,0,0, 0,0,0,0,0,0,116,114,114,114,0,0,0,0,0,0, 0,0,0,0,0,0,114,114,114,114,0,0,0,0,0,0, 0,0,0,0,0,116,114,114,114,114,0,0,0,0,0,0, 0,0,0,0,114,114,114,114,114,114,0,0,0,0,0,0, 0,0,0,0,114,114,114,114,114,114,0,0,0,0,0,0, 0,0,0,116,114,114,114,114,0,0,0,0,0,0,0,0, 0,0,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 0,0,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 0,116,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,116,114,114,114,114,114, 0,0,0,0,0,0,116,114,114,114,114,114,114,114,114,114, 0,0,0,0,116,114,114,114,114,114,114,114,114,114,114,114, 0,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0, 114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,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,3,3, 0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0, 0,0,0,0,0,0,0,0,0,0,2,3,3,3,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,2,3,3,3,4,0,0,0,0,0, 0,0,0,0,0,0,115,0,0,0,117,0,0,0,0,0, 0,0,0,0,0,2,3,0,0,0,117,0,0,0,0,0, 0,0,0,0,0,115,0,0,0,0,117,0,0,0,0,0, 0,0,0,2,3,3,0,0,0,0,117,0,0,0,0,0, 0,0,0,115,0,0,0,0,0,0,117,0,0,0,0,0, 0,0,0,115,0,0,0,0,0,0,117,0,0,0,0,0, 0,2,3,3,0,0,0,0,341,229,230,0,0,0,0,0, 0,115,0,0,0,0,0,0,117,0,0,0,0,0,0,0, 0,115,0,0,0,0,0,0,117,0,0,0,0,0,0,0, 3,3,0,0,0,0,0,0,117,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,117,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,117,0,0,0,0,0,0,0 0,0,0,0,0,0,2,3,3,3,3,0,0,0,0,0, 0,0,0,0,2,3,3,0,0,0,0,0,0,0,0,0, 0,2,3,3,3,0,0,0,0,0,0,0,0,0,0,0, 2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117, 0,0,0,0,0,0,0,0,0,0,0,0,0,341,229,230, 0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0, 0,0,0,0,0,0,0,0,0,0,341,229,229,230,0,0 0,0,0,0,0,0,0,0,117,0,0,0,0,0,0,0, 0,0,0,0,0,0,341,229,230,0,0,0,0,0,0,0, 0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0, 0,0,0,0,341,229,230,0,0,0,0,0,0,0,0,0, 0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0, 0,0,341,229,230,0,0,0,0,0,0,0,0,0,0,0, 0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0, 341,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0, 230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,1810,1810, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,1810,1810,1810,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,1810,1810,1810,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,1810,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,1810,1810,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,1810,1810,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1810,1810,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,1810,1810,1810,1810,0,0,0,0,0, 0,0,0,0,0,1810,1810,0,0,0,0,0,0,0,0,0, 0,0,1810,1810,1810,0,0,0,0,0,0,0,0,0,0,0, 0,1810,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,219, 0,0,0,0,0,0,0,0,0,0,0,0,218,218,219,219 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,218,218,218,0,0,0,0,0,0, 0,0,0,0,0,0,0,219,219,219,0,0,0,0,0,0, 0,0,0,0,0,0,218,219,219,219,0,0,0,0,0,0, 0,0,0,0,0,0,219,219,219,219,0,0,0,0,0,0, 0,0,0,0,218,218,219,219,219,219,0,0,0,0,0,0, 0,0,0,0,219,219,219,219,219,219,0,0,0,0,0,0, 0,0,0,0,219,219,219,219,219,219,0,0,0,0,0,0, 0,0,0,218,219,219,219,219,331,331,0,0,0,0,0,0, 0,0,218,219,219,219,219,219,0,0,0,0,0,0,0,0, 0,0,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 0,0,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 218,218,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,218,218,218,218,218,219,219,219,219, 0,0,0,0,0,0,218,219,219,219,219,219,219,219,219,219, 0,0,0,218,218,218,219,219,219,219,219,219,219,219,219,219, 0,218,218,219,219,219,219,219,219,219,219,219,219,219,219,219, 218,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,331, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,0, 219,219,219,219,219,219,219,219,219,219,219,219,219,331,331,0, 219,219,219,219,219,219,219,219,219,219,219,219,219,0,0,0, 219,219,219,219,219,219,219,219,219,219,331,331,331,0,0,0, 219,219,219,219,219,219,219,219,219,219,0,0,0,0,0,0 219,219,219,219,219,219,331,331,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,0,0,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,0,0,0,0,0,0,0,0,0,0, 219,219,219,219,331,331,0,0,0,0,0,0,0,0,0,0, 219,219,219,219,0,0,0,0,0,0,0,0,0,0,0,0, 219,219,219,219,0,0,0,0,0,0,0,0,0,0,0,0, 219,219,219,219,0,0,0,0,0,0,0,0,0,0,0,0, 219,219,331,331,0,0,0,0,0,0,0,0,0,0,0,0, 219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 331,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,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: maps/hoenn/fill-041.tmx ================================================ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,2,115,0,0,0,0,0,0,0,0,0,0,229, 0,0,0,115,115,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,115,228,229,229,229,229,229,229,342,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,229, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,341,229,229,229,229,229,342,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,228,229,229,0,0,0,0,0,0,0,0,0, 0,228,229,229,229,342,0,0,0,0,0,0,0,0,0,0 ================================================ FILE: maps/hoenn/fill-042.tmx ================================================ 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 229,342,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,115,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,115,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,115,114,114,114,114,114,114,114,114,114,114,114,114,341,229,229,229,229,229, 0,228,229,229,229,342,114,114,114,114,341,229,229,229,230,0,0,0,0,0, 0,0,0,0,0,115,114,114,114,114,117,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,228,229,229,229,229,230,0,0,0,0,0,0,0,0,0 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 325,326,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 0,0,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 0,0,438,439,438,439,438,439,438,439,438,439,438,439,325,326,325,326,325,326, 0,0,212,213,212,213,212,213,212,213,212,213,212,213,0,0,0,0,0,0, 0,0,325,326,325,326,438,439,438,439,325,326,325,326,0,0,0,0,0,0, 0,0,0,0,0,0,212,213,212,213,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,325,326,325,326,0,0,0,0,0,0,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: maps/hoenn/fill-043.tmx ================================================ 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,341,230, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,117,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,341,230,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,117,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,117,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,341,230,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,117,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,117,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,117,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,117,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,117,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,341,229,229,230,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,117,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,341,230,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,117,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,117,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,341,230,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,117,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,117,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,117,0,0,0,0,0,0,0,0 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,0,0,0, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,0,0,0, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,0,0,0, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,325,326,0,0,0, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,0,0,0,0,0, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,0,0,0,0,0, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,0,0,0,0,0, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,0,0,0,0,0, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,0,0,0,0,0, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,325,326,0,0,0,0,0, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,0,0,0,0,0,0,0, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,325,326,0,0,0,0,0,0,0, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,0,0,0,0,0,0,0,0,0, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,0,0,0,0,0,0,0,0,0, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,0,0,0,0,0,0,0,0,0, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,0,0,0,0,0,0,0,0,0, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,0,0,0,0,0,0,0,0,0, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,0,0,0,0,0,0,0,0,0, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,0,0,0,0,0,0,0,0,0, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,325,326,0,0,0,0,0,0,0,0,0 ================================================ FILE: maps/hoenn/fill-044.tmx ================================================ 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,117, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,341,230, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,341,229,229,230,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,117,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,341,229,230,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,341,229,230,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,117,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,117,0,0,0,0,0,0,0,0, 114,341,229,229,229,229,229,229,229,229,230,0,0,0,0,0,0,0,0, 229,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,0,0,0, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,325,326,0,0,0, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,0,0,0,0,0, 438,439,438,439,438,439,438,439,438,439,325,326,325,326,0,0,0,0,0, 212,213,212,213,212,213,212,213,212,213,0,0,0,0,0,0,0,0,0, 438,439,438,439,438,439,438,439,438,439,0,0,0,0,0,0,0,0,0, 212,213,212,213,212,213,212,213,212,213,0,0,0,0,0,0,0,0,0, 325,326,325,326,325,326,325,326,325,326,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,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: maps/hoenn/fill-045.tmx ================================================ 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439 ================================================ FILE: maps/hoenn/fill-046.tmx ================================================ 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,341,229, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,341,230,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,341,229,230,0,0, 114,114,114,114,114,114,114,114,114,114,341,229,229,229,229,230,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,117,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,341,230,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,117,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,117,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,341,230,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,117,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,117,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,117,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,117,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,117,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,341,230,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,341,230,0,0,0,0,0,0,0,0,0,0,0,0 212,213,0,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 438,439,0,331,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 212,213,212,213,331,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 438,439,438,439,0,331,331,331,331,219,219,219,219,219,219,219,219,219,331,331, 212,213,212,213,212,213,212,213,218,219,219,219,219,219,331,219,219,331,0,0, 438,439,438,439,438,439,438,439,219,219,331,219,219,331,0,331,331,0,0,0, 212,213,212,213,212,213,212,213,219,331,0,331,331,0,0,0,0,0,0,0, 438,439,438,439,438,439,438,439,331,218,0,0,0,0,0,0,0,0,0,0, 212,213,212,213,212,213,212,213,0,331,0,0,0,0,0,0,0,0,0,0, 438,439,438,439,438,439,438,439,218,0,0,0,0,0,0,0,0,0,0,0, 212,213,212,213,212,213,212,213,219,0,0,0,0,0,0,0,0,0,0,0, 438,439,438,439,438,439,438,439,331,0,0,0,0,0,0,0,0,0,0,0, 212,213,212,213,212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,0, 438,439,438,439,438,439,438,439,0,0,0,0,0,0,0,0,0,0,0,0, 212,213,212,213,212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,0, 438,439,438,439,438,439,438,439,0,0,0,0,0,0,0,0,0,0,0,0, 212,213,212,213,212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,0, 438,439,438,439,438,439,325,326,0,0,0,0,0,0,0,0,0,0,0,0, 212,213,212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 438,439,438,439,325,326,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ================================================ FILE: maps/hoenn/fill-047.tmx ================================================ 114,114,114,114,114,114,114,114,114,114,114,114,341,230,4410,4410,4411,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,117,0,0,0,4524,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,117,0,0,0,4637,4410,4410,4410, 114,114,114,114,114,114,114,114,114,114,114,341,230,0,0,0,0,0,0,0, 229,229,342,114,114,114,114,114,114,114,114,117,0,0,0,0,0,0,0,0, 0,0,115,114,114,114,114,114,114,114,341,230,0,0,0,0,0,0,0,0, 0,0,228,229,342,114,114,341,229,229,230,0,0,0,0,0,0,0,0,0, 0,0,0,0,228,229,229,230,0,0,0,0,0,0,0,0,0,0,0,0 219,219,219,219,219,219,219,219,219,219,219,219,0,0,0,0,0,331,331,219, 219,219,219,219,219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,331, 331,219,331,219,219,219,219,219,219,219,219,331,0,0,0,0,0,0,0,0, 0,331,0,331,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0,0, 0,0,0,218,219,331,331,219,331,219,331,0,0,0,0,0,0,0,0,0, 0,0,0,331,331,0,218,331,0,331,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,331,0,0,0,0,0,0,0,0,0,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: maps/hoenn/fill-048.tmx ================================================ 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,341,229,230,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,117,114,114,114,114,114,114 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,331,331,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,0,218,219,331,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,331,0,331,331,0,219,219,219 ================================================ FILE: maps/hoenn/fill-049.tmx ================================================ 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219 ================================================ FILE: maps/hoenn/fill-050.tmx ================================================ 4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,0,0, 4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,0,0, 4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,0,0,0,0,0, 4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,0,0,0,0,0, 4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,0,0,0,0,0,0,0, 4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,0,0,0,0,0,0,0, 4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,0,0,0,0,0,0,0, 4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0, 4978,4978,4978,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,333,4979,0, 221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,333,333,0,4979,0, 221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,333,5430,5091,5091,5092,0, 221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,333,333,0,4979,0,0,0,0, 221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,0,5430,5091,5092,0,0,0,0, 221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,333,333,333,0,4979,0,0,0,0,0,0, 221,221,221,221,221,221,221,333,221,221,221,333,221,333,221,221,333,221,333,0,0,0,0,4979,0,0,0,0,0,0, 333,221,221,221,333,221,333,0,333,333,333,0,333,0,333,333,0,333,0,5430,5091,5091,5091,5092,0,0,0,0,0,0, 0,333,333,333,0,333,0,5430,5091,5091,5091,5091,5091,5091,5091,5091,5091,5091,5091,5092,0,0,0,0,0,0,0,0,0,0, 5091,5091,5091,5091,5091,5091,5091,5092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ================================================ FILE: maps/hoenn/fill-051.tmx ================================================ 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 229,342,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,115,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,228,229,229,229,342,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,115,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,115,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,228,342,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,115,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,228,229,342,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,228,229,229,342,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,228,342,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,115,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,228,342,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,115,114,114,114,114,114,114,114,114,114,114,114,114,114,114 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 325,326,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 0,0,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 0,0,325,326,325,326,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 0,0,0,0,0,0,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 0,0,0,0,0,0,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 0,0,0,0,0,0,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 0,0,0,0,0,0,325,326,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 0,0,0,0,0,0,0,0,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 0,0,0,0,0,0,0,0,325,326,325,326,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 0,0,0,0,0,0,0,0,0,0,0,0,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 0,0,0,0,0,0,0,0,0,0,0,0,325,326,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,438,439,438,439,438,439,438,439,438,439,438,439,438,439 ================================================ FILE: maps/hoenn/fill-052.tmx ================================================ 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,341,229,229,342,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,117,0,0,228,342,114,114,114, 114,114,114,114,114,114,114,114,114,114,341,229,229,229,230,0,0,0,228,229,229,229, 114,114,114,114,114,114,114,114,114,341,230,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,341,230,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,341,229,229,229,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0, 229,229,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,325,326,325,326,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,0,0,0,0,212,213,212,213, 438,439,438,439,438,439,438,439,325,326,325,326,325,326,0,0,0,0,325,326,325,326, 212,213,212,213,212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 438,439,438,439,438,439,438,439,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 212,213,212,213,212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 325,326,325,326,325,326,325,326,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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: maps/hoenn/fill-053.tmx ================================================ 115,114,114,114,114,114,114, 115,114,114,114,114,114,114, 115,114,114,114,114,114,114, 115,114,114,114,114,114,114, 115,114,114,114,114,114,114, 115,114,114,114,114,114,114, 115,114,114,114,114,114,114, 115,114,114,114,114,114,114, 115,114,114,114,114,114,114, 115,114,114,114,114,114,114, 115,114,114,114,114,114,114, 115,114,114,114,114,114,114, 115,114,114,114,114,114,114, 115,114,114,114,114,114,114, 115,114,114,114,114,114,114, 115,114,114,114,114,114,114, 115,114,114,114,114,114,114, 115,114,114,114,114,114,114, 115,114,114,114,114,114,114, 115,114,114,114,114,114,114, 115,114,114,114,114,114,114, 115,114,114,114,114,114,114, 115,114,114,114,114,114,114, 115,114,114,114,114,114,114, 115,114,114,114,114,114,114, 115,114,114,114,114,114,114, 228,229,342,114,114,114,114, 0,0,115,114,114,114,114, 0,0,115,114,114,114,114, 0,0,115,114,114,114,114, 0,0,115,114,114,114,114, 0,0,115,114,114,114,114, 0,0,115,114,114,114,114, 0,0,115,114,114,114,114, 0,0,115,114,114,114,114, 0,0,115,114,114,114,114, 0,0,115,114,114,114,114, 0,0,228,342,114,114,114, 0,0,0,228,229,229,229, 0,0,0,0,0,5090,5091 0,212,213,212,213,212,213, 0,438,439,438,439,438,439, 0,212,213,212,213,212,213, 0,438,439,438,439,438,439, 0,212,213,212,213,212,213, 0,438,439,438,439,438,439, 0,212,213,212,213,212,213, 0,438,439,438,439,438,439, 0,212,213,212,213,212,213, 0,438,439,438,439,438,439, 0,212,213,212,213,212,213, 0,438,439,438,439,438,439, 0,212,213,212,213,212,213, 0,438,439,438,439,438,439, 0,212,213,212,213,212,213, 0,438,439,438,439,438,439, 0,212,213,212,213,212,213, 0,438,439,438,439,438,439, 0,212,213,212,213,212,213, 0,438,439,438,439,438,439, 0,212,213,212,213,212,213, 0,438,439,438,439,438,439, 0,212,213,212,213,212,213, 0,438,439,438,439,438,439, 0,212,213,212,213,212,213, 0,325,326,438,439,438,439, 0,0,0,212,213,212,213, 0,0,0,438,439,438,439, 0,0,0,212,213,212,213, 0,0,0,438,439,438,439, 0,0,0,212,213,212,213, 0,0,0,325,326,325,326, 0,0,0,0,218,218,218, 0,0,0,218,219,219,219, 0,0,0,331,219,219,219, 0,0,0,0,331,219,219, 0,0,0,0,0,331,331, 0,0,0,0,0,0,0, 0,0,0,0,0,0,0, 0,0,0,0,0,0,0 ================================================ FILE: maps/hoenn/fill-054.tmx ================================================ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4190,4190,4190, 0,0,0,0,0,0,0,0,0,0,0,0,4190,4190,4190,4190,4190,4190,4190,4190,4190, 0,0,0,0,0,0,0,0,0,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190, 0,0,0,0,0,0,0,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190, 0,0,0,0,0,0,0,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190, 0,0,0,0,0,0,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190, 0,0,0,0,0,0,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190, 0,0,0,0,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190, 0,0,0,0,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190, 0,0,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190, 0,0,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190, 0,0,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190, 0,0,0,0,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190, 0,0,0,0,0,0,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190, 0,0,0,0,0,0,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190, 0,0,0,0,0,0,0,0,0,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4190,4190,4190,4190,4190,4190, 0,0,0,0,0,0,0,0,0,0,0,0,0,4190,4190,4190,4190,4190,4190,4190,4190, 0,0,0,0,0,0,0,0,0,0,0,0,0,4190,4190,4190,4190,4190,4190,4190,4190, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4190,4190,4190,4190,4190,4190, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4190,4190,4190,4190,4190,4190, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,21,21,21, 0,0,0,0,0,0,0,0,0,0,0,20,21,21,21,21,21,21,21,21,21, 0,0,0,0,0,0,0,0,20,21,21,21,20,21,21,21,21,0,0,0,0, 0,0,0,0,0,0,20,21,21,20,21,21,21,0,0,0,0,20,21,21,21, 0,0,0,0,0,4524,133,20,21,21,0,0,20,21,21,21,21,21,0,20,21, 0,0,0,0,0,20,21,133,133,0,0,0,133,0,0,0,0,0,0,133,0, 0,0,0,0,4524,133,20,21,21,0,20,21,21,0,0,20,21,21,21,21,0, 0,0,0,20,21,21,133,133,0,0,133,0,0,0,20,21,0,0,0,0,0, 0,0,4524,133,20,21,21,133,0,20,21,0,20,21,21,0,0,0,0,0,0, 0,20,21,21,133,20,21,21,0,133,0,20,21,0,0,0,0,0,0,0,0, 4524,133,20,21,21,133,0,20,21,21,0,133,0,0,0,0,0,0,0,0,0, 4524,133,133,20,21,21,20,21,0,0,20,21,0,0,0,0,0,0,0,0,0, 4524,133,133,133,0,0,133,0,0,0,133,0,0,0,0,0,0,0,0,0,0, 4524,133,133,246,247,360,246,360,0,0,246,247,247,247,360,0,0,0,0,0,0, 4524,133,246,247,360,133,0,246,360,0,0,0,0,0,246,360,0,0,0,0,0, 4524,246,247,360,133,246,247,360,133,0,0,0,0,0,0,246,247,247,247,247,247, 4637,4410,4411,133,246,247,360,133,246,247,247,247,247,247,247,247,247,247,247,247,247, 0,0,4524,246,247,360,133,246,247,247,247,247,360,0,0,0,359,247,247,247,247, 0,0,4637,4410,4411,133,246,247,247,247,247,360,133,0,0,0,135,0,0,0,0, 0,0,0,0,4524,246,247,247,247,247,360,133,246,247,247,247,248,0,0,0,0, 0,0,0,0,4637,4410,4410,4410,4410,4411,133,246,247,247,360,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,4524,246,247,247,360,246,247,247,247,247,247,247, 0,0,0,0,0,0,0,0,0,4637,4410,4410,4411,246,247,247,247,247,247,247,247, 0,0,0,0,0,0,0,0,0,0,0,0,4637,4410,4410,4410,4410,4410,4410,4410,4410 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,225,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,224,225,224,225,0,337,338,0, 0,0,0,0,0,0,0,0,20,0,0,0,0,337,451,450,338,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,337,338,0,0,0,0,0, 0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,224,225,224, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,225,224,450,451,450, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,450,451,450,451,450,451, 0,0,0,0,0,0,0,0,0,0,0,0,0,224,450,451,450,451,450,451,450, 0,0,0,0,0,0,0,0,0,0,0,0,224,450,451,450,451,450,451,450,451, 0,0,0,0,0,0,0,0,0,0,0,0,337,451,337,451,450,451,450,451,450, 0,0,0,0,0,0,0,0,224,225,0,0,0,0,0,337,451,450,451,450,451, 0,0,0,0,0,0,0,0,337,338,224,225,0,0,0,0,337,338,337,338,337, 0,0,0,0,0,0,0,0,0,224,450,338,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,337,338,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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: maps/hoenn/fill-055.tmx ================================================ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,116,116,116,116,0,0,0,0,0,0,0,4077, 0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,119,119,119,119,114, 0,0,0,0,0,0,0,0,0,0,0,0,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,114,114,119,119,119,119,119, 0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,119,119,119,119,119,119,119,119, 0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,119,119,119,119,119,119,119,119,119, 0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,119,119,119,119,119,119,119,119,119,119, 0,0,0,0,0,0,0,0,0,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,119,119,119,119,119,119,119,119,119,119,119,119,119, 0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 0,0,0,0,0,0,0,0,4978,114,114,114,114,114,114,114,114,114,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 0,0,0,0,0,0,0,0,4978,114,114,114,114,114,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 0,0,0,0,0,0,0,4978,116,114,114,114,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 0,0,0,0,4978,4978,0,4978,114,114,114,114,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 0,0,0,4978,4978,4978,4978,116,114,114,114,114,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 0,0,0,4978,4978,114,114,114,114,114,114,114,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 0,0,4978,4978,4978,114,114,114,114,114,114,114,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 0,0,4978,4978,4978,114,114,114,114,114,114,114,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 0,0,4978,4978,116,114,114,114,114,114,114,114,114,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 0,4978,4978,4978,114,114,114,114,114,114,114,114,114,114,114,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 0,4978,4978,116,114,114,114,114,114,114,114,114,114,114,114,114,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 0,4978,4978,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 0,4978,4978,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119 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,3,3,3,3,4,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,3,3,3,3,3,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,2,3,3,3,3,3,3,0,0,0,0,0,0,0,0,0,0,3,3,3,3,4,0,5,6,6,6,6,7, 0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,118,0,0,0,0,6, 0,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,6,6,6,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,6,0,0,0,0,5,6,6,7, 0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,6,6,6,0,0,0,0,0,118,0,0,120, 0,0,0,0,0,0,0,0,2,3,3,3,0,0,0,0,0,0,0,0,0,5,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,118,0,0,6, 0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,5,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0, 0,0,0,0,0,0,0,4864,115,0,0,0,0,0,5,6,6,6,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0, 0,0,0,0,0,0,4864,5203,115,0,0,0,5,6,6,0,0,0,0,0,0,0,5,6,6,7,0,0,5,7,0,0,0,0,0,0,0,118,0,0,0, 0,0,0,0,0,0,4977,2,3,0,0,5,6,0,0,0,0,0,0,5,7,0,118,0,0,6,7,0,231,233,0,0,0,0,0,0,5,6,0,0,0, 0,0,4864,4865,4865,4865,5203,115,0,0,0,118,0,0,0,5,6,7,0,231,233,0,118,0,0,0,6,7,0,0,0,0,0,5,6,6,6,0,0,0,0, 0,0,4977,0,2,3,3,3,0,0,0,118,0,0,5,6,0,120,0,0,5,6,6,0,0,0,0,6,6,6,7,0,0,118,0,0,0,0,0,0,0, 0,4864,5203,0,115,0,0,0,0,0,0,118,0,0,118,0,0,6,6,6,6,0,0,0,0,0,0,0,0,0,120,0,5,6,0,0,0,0,0,0,0, 0,4977,0,0,115,0,0,0,0,0,0,118,0,0,118,0,0,0,0,0,0,0,0,0,0,0,5,0,6,7,6,6,6,0,0,0,0,0,0,0,0, 0,4977,0,0,115,0,0,0,0,0,0,118,0,0,231,232,232,345,0,0,0,0,0,0,0,5,118,0,0,6,7,0,0,0,0,0,0,0,0,0,0, 4864,5203,0,2,3,0,0,0,0,0,0,231,345,0,0,0,0,118,0,5,6,6,6,6,6,6,118,0,0,0,6,6,6,6,6,6,6,6,6,6,6, 4977,0,0,115,0,0,0,0,0,0,0,0,231,232,345,0,0,231,345,118,0,5,6,6,6,6,6,0,0,0,0,0,0,0,0,5,6,6,6,6,6, 4977,0,2,3,0,0,0,0,0,0,0,0,0,0,231,345,0,0,118,118,5,118,0,0,0,0,0,0,0,0,5,6,6,6,6,5,7,0,0,0,0, 4977,0,115,0,0,0,0,0,0,0,0,0,0,0,0,231,232,345,118,118,118,118,0,0,0,5,6,6,6,6,6,0,0,0,0,231,233,0,5,7,0, 4977,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,118,118,118,118,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,231,233,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1810,1810,1810,1810,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1810,1810,1810,1810,1810,1810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,1810,1810,1810,1810,1810,1810,0,0,0,0,0,0,0,0,0,0,1810,1810,1810,1810,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,1810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,1810,1810,1810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,1810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,1810,1810,1810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,1810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,1810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,218,218,0,218,218,0,0,0,218,218,218,218,0,218,0,0,0,0,218,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,218,219,331,0,218,218,219,219,219,219,218,219,218,218,0,0,331,218,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,331,219,331,331,218,218,219,219,219,219,219,219,219,219,219,219,218,0,0,331,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,218,0,331,218,218,219,219,219,219,219,219,219,219,219,219,219,219,219,0,218,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,219,0,218,219,219,219,219,219,219,219,219,219,219,219,219,219,219,331,0,331,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,331,218,219,219,219,219,219,219,219,219,219,219,331,331,219,331,331,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,218,0,0,218,219,219,219,219,219,219,219,331,331,331,331,0,0,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,219,0,218,219,219,219,219,331,219,331,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,219,218,219,219,331,331,331,0,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,219,219,219,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,910,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,219,219,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,910,0,0,0,0, 0,0,0,0,0,0,0,0,218,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,218,219,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,218,219,219,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,219,219,219,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,910, 0,0,0,0,0,218,219,219,219,219,219,0,0,0,0,0,0,0,0,0,0,0,0,910,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,219,219,219,219,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,218,219,219,219,219,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,219,219,219,219,219,219,219,218,218,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,218,219,219,219,219,219,219,219,219,219,219,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,219,219,219,219,219,219,219,219,219,219,219,219,218,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,219,219,219,219,219,219,219,219,219,219,219,219,219,219,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: maps/hoenn/fill-056.tmx ================================================ 0,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978, 0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978, 0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978, 0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978, 0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978, 0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978, 0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978, 0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 4977,0,0,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221, 5090,5091,5429,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221, 0,0,4977,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221, 0,0,4977,333,333,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221, 0,0,5090,5091,5429,333,221,221,333,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221, 0,0,0,0,4977,0,333,333,0,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221,221, 0,0,0,0,5090,5091,5091,5091,5429,333,221,221,333,221,221,333,221,221,221,221,221,221,221,221,221,221,221,221,221,221, 0,0,0,0,0,0,0,0,4977,0,333,333,0,333,333,0,333,333,333,221,221,221,221,221,221,221,221,221,221,333, 0,0,0,0,0,0,0,0,5090,5091,5091,5091,5091,5091,5091,5429,0,0,0,333,333,221,221,221,221,333,333,221,333,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5090,5091,5091,5091,5091,5429,333,333,333,333,0,0,333,5430,5091, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5090,5091,5091,5091,5091,5091,5091,5091,5092,0 ================================================ FILE: maps/hoenn/fill-057.tmx ================================================ 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114 212,213,212,213,212,213,212,213,212,213,212,213,212,213,0,0,0,0,0,0,0,0,0,0,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,0,0,0,0,0,0,0,0,0,0,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,0,0,0,0,0,0,0,0,0,0,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,0,0,0,0,0,0,0,0,0,0,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,0,0,0,0,0,0,0,0,0,0,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,0,0,0,0,0,0,0,0,0,0,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,0,0,0,0,0,0,0,0,0,0,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,0,0,0,0,0,0,0,0,0,0,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,0,0,0,0,0,0,0,0,0,0,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,0,0,0,0,0,0,0,0,0,0,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,0,0,0,0,0,0,0,0,0,0,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,0,0,0,0,0,0,0,0,0,0,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,0,0,0,0,0,0,0,0,0,0,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,0,0,0,0,0,0,0,0,0,0,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,0,0,0,0,0,0,0,0,0,0,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,0,0,0,0,0,0,0,0,0,0,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,0,0,0,0,0,0,0,0,0,0,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,0,0,0,0,0,0,0,0,0,0,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,0,0,0,0,0,0,0,0,0,0,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,0,0,0,0,0,0,0,0,0,0,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,0,0,0,0,0,0,0,0,0,0,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,0,0,0,0,0,0,0,0,0,0,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,0,0,0,0,0,0,0,0,0,0,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,0,0,0,0,0,0,0,0,0,0,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,0,0,0,0,0,0,0,0,0,0,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,0,0,0,0,0,0,0,0,0,0,438,439,438,439,438,439,438,439 ================================================ FILE: maps/hoenn/fill-058.tmx ================================================ 114,114,114,114,114,114,114,114,114,114,114,114,116,116,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114 0,0,0,0,0,0,0,0,0,0,0,115,115,228,229,229,229,229, 0,0,0,0,0,0,0,0,0,0,0,115,228,229,342,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,228,342,0,228,229,229,229, 0,0,0,0,0,0,0,0,0,0,0,0,228,229,229,229,229,229, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 212,213,212,213,212,213,212,213,212,213,0,0,0,0,0,0,0,0, 438,439,438,439,438,439,438,439,438,439,218,0,0,0,0,0,0,0, 212,213,212,213,212,213,212,213,212,213,219,218,0,0,0,0,0,0, 438,439,438,439,438,439,438,439,438,439,219,219,218,218,218,218,218,218, 212,213,212,213,212,213,212,213,218,218,219,219,219,219,219,219,219,219, 438,439,438,439,438,439,438,439,219,219,219,219,219,219,219,219,219,219, 212,213,212,213,212,213,212,213,219,219,219,219,219,219,219,219,219,219, 438,439,438,439,438,439,438,439,219,219,219,219,219,219,219,219,219,219, 212,213,212,213,212,213,0,218,219,219,219,219,219,219,219,219,219,219, 438,439,438,439,438,439,218,219,219,219,219,219,219,219,219,219,219,219, 212,213,212,213,212,213,219,219,219,219,219,219,219,219,219,219,219,219, 438,439,438,439,438,439,219,219,219,219,219,219,219,219,219,219,219,219, 212,213,212,213,212,213,219,219,219,219,219,219,219,219,219,219,219,219, 438,439,438,439,438,439,219,219,219,219,219,219,219,219,219,219,219,219, 212,213,212,213,212,213,219,219,219,219,219,219,219,219,219,219,219,219, 438,439,438,439,438,439,219,219,219,219,219,219,219,219,219,219,219,219, 212,213,212,213,212,213,219,219,219,219,219,219,219,219,219,219,219,219, 438,439,438,439,438,439,219,219,219,219,219,219,219,219,219,219,219,219, 212,213,212,213,212,213,331,219,219,219,219,219,219,219,219,219,219,219, 438,439,438,439,438,439,0,331,219,219,219,219,219,219,219,219,219,219, 212,213,212,213,212,213,212,213,219,219,219,219,219,219,219,219,219,219, 438,439,438,439,438,439,438,439,219,219,219,219,219,219,219,219,219,219 ================================================ FILE: maps/hoenn/fill-059.tmx ================================================ 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114 212,213,212,213,212,213,212,213,219,219,219,219,219,219,219,219,219,219, 438,439,438,439,438,439,438,439,219,219,219,219,219,219,219,219,219,219, 212,213,212,213,212,213,212,213,219,219,219,219,219,219,219,219,219,219, 438,439,438,439,438,439,438,439,219,219,219,219,219,219,219,219,219,219, 212,213,212,213,212,213,212,213,331,219,219,219,219,219,219,219,219,219, 438,439,438,439,438,439,438,439,0,331,219,219,219,219,219,219,219,219, 212,213,212,213,212,213,212,213,212,213,219,219,219,219,219,219,219,219, 438,439,438,439,438,439,438,439,438,439,331,219,219,219,219,219,219,219, 212,213,212,213,212,213,212,213,212,213,0,331,219,219,219,219,219,219, 438,439,438,439,438,439,438,439,438,439,0,0,331,219,219,219,219,219, 212,213,212,213,212,213,212,213,212,213,212,213,0,331,219,219,219,219, 438,439,438,439,438,439,438,439,438,439,438,439,0,0,331,219,219,219, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,0,331,219,219, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,0,0,331,331, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439 ================================================ FILE: maps/hoenn/fill-060.tmx ================================================ 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439 ================================================ FILE: maps/hoenn/fortree-city.tmx ================================================ 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,0,0,0,0,0,0,219,219,0,0,0,0,0,219,219,219,219,219,0,0,0,0,0, 0,0,0,0,0,0,0,0,219,0,0,0,219,0,0,219,219,219,219,219,0,0,0,219,219,0,219,219,0,0,219,219,0,219,219,0,0,0,0,0, 0,0,0,0,0,0,0,0,219,0,0,0,219,0,0,219,219,219,219,219,0,0,0,219,219,0,219,219,0,0,219,219,0,219,219,0,0,0,0,0, 0,0,0,0,0,0,0,0,219,0,0,0,219,0,0,219,219,219,219,219,0,0,0,219,219,0,219,219,0,0,219,219,0,219,219,0,0,0,0,0, 0,0,0,0,0,0,0,0,219,219,0,219,219,0,0,219,219,219,219,219,0,0,0,219,219,0,219,219,0,0,219,219,0,219,219,219,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,3547,0,0,0,0,219,0,219,219,0,0,0,0,0,0,3547,0,219,0,0,0,0,3547,0,219,219,0,0,0,0, 0,0,0,0,0,4079,4193,4193,4193,4193,4193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4192,0,0,0,0,0,0,4193,4193,4193,4193,0,0,0,0, 0,0,0,0,0,4192,4193,4193,4193,4193,4193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4192,0,0,0,0,0,0,4193,4193,4193,4194,0,0,0,0, 0,0,0,0,0,4305,4306,4193,4193,4193,4193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4192,4193,0,0,0,0,0,4193,4193,4193,4307,0,0,0,0, 0,0,0,0,0,0,0,4305,4193,4193,4193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4192,4193,0,0,0,0,4193,4193,4193,4307,0,0,0,0,0, 0,0,0,0,0,0,0,0,4192,4193,4193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4192,4193,0,0,0,0,4193,4193,4194,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,4192,4193,219,0,0,0,219,0,0,0,0,0,4079,4080,4080,4080,4080,4193,4193,0,0,0,0,4193,4193,4194,0,219,219,219,219,219, 0,0,0,0,0,0,0,0,4192,4193,219,0,0,0,219,0,0,0,0,0,4193,4193,4193,4193,4193,4193,0,0,0,0,0,4305,4306,4307,0,219,0,0,0,219, 0,0,0,0,0,0,0,4079,4193,4193,219,0,0,0,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,0,0,0,0,219,219,0,0,0,219, 0,0,0,0,0,0,4079,4193,4193,4193,219,219,0,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4079,4080,0,219,219,0,219,219, 0,0,0,0,4079,4080,4193,4193,4193,4193,4193,4193,3547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4080,4193,4193,4193,4193,4193,3547,0,0, 0,0,0,0,0,0,4193,4193,4193,4193,4193,4193,4193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4193,4193,4193,4193,4193,4193,0,0, 0,0,0,0,0,0,0,0,0,4193,4193,4193,4193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4193,4193,4193,4193,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,3546,3546,0,0,0,0,0,3546,3546,3546,0,0,0,0,0,3546,3546,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3546,3546,3546,3546,3546,3546,3546,3546,3546,3546,3546,3546,3546,3546,3546,3546,3546,3546,3546,3546,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,3093,3094,3095,3096,3097,219,219,219,219,219, 219,219,219,219,331,331,331,331,3093,3094,3095,3096,3097,219,219,3093,3094,3095,3096,3097,219,219,219,3093,3094,3095,3096,3097,219,219,3206,3207,3208,3209,3210,219,219,219,219,219, 219,219,219,219,0,0,0,0,3206,3207,3208,3209,3210,219,219,3206,3207,3208,3209,3210,219,219,219,3206,3207,3208,3209,3210,219,219,3206,3320,3321,3321,3210,219,219,219,219,219, 219,219,219,219,136,137,138,139,3206,3320,3321,3321,3323,0,0,3319,3320,3321,3321,3323,0,0,0,3319,3320,3321,3321,3323,0,0,3319,3320,3321,3321,3210,219,219,219,219,219, 331,219,219,219,249,250,251,252,3432,3435,3434,3435,3436,219,219,3432,3435,3435,3435,3436,219,219,219,3432,3435,3434,3435,3436,219,219,3432,3435,3434,3435,3436,219,219,219,219,219, 0,331,331,331,362,363,364,365,219,219,0,219,219,219,219,219,219,219,219,219,219,219,219,219,219,0,219,219,219,219,219,219,0,219,219,219,219,331,331,331, 0,0,0,0,0,0,0,0,331,331,0,219,219,219,219,219,219,219,219,331,331,331,331,331,331,0,219,219,219,219,219,219,0,331,331,331,331,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,219,219,144,145,145,145,145,149,0,331,219,219,219,219,219,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,205,0,0,0,0,219,219,219,219,219,219,219,331,257,258,259,145,261,262,0,0,219,219,219,219,219,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,219,0,370,371,372,373,374,375,0,0,219,219,219,219,331,0,0,0,0,0,0,0,0, 219,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,219,0,483,484,485,486,487,488,0,0,219,219,219,219,0,0,0,0,219,219,219,219,219, 219,219,219,140,141,142,143,0,0,0,3093,3094,3095,3096,3097,219,219,219,219,0,0,0,0,0,0,0,0,219,219,219,331,0,0,0,219,3093,3094,3095,3096,3097, 219,219,219,253,254,255,256,0,0,219,3206,3207,3208,3209,3210,219,219,219,219,219,0,0,0,0,0,0,219,219,219,219,0,0,0,0,219,3206,3207,3208,3209,3210, 219,219,219,362,363,368,369,0,0,219,3206,3320,3321,3321,3323,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3319,3320,3321,3321,3210, 219,219,219,0,0,0,0,0,0,331,3432,3435,3434,3435,3436,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,0,0,0,0,219,3432,3435,3434,3435,3436, 219,219,219,219,0,0,0,0,0,0,331,331,0,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,0,0,0,0,331,331,331,0,219,219, 219,219,219,219,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,219,219, 219,219,219,219,219,219,0,0,0,0,0,0,0,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,0,0,0,0,0,0,219,219, 219,219,219,219,219,219,219,219,219,0,0,0,0,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,0,0,0,219,219,219 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2981,2982,2983,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,2981,2982,2983,0,0,0,0,2981,2982,2983,0,0,0,0,0,2981,2982,2983,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,23,24,25,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,32,32,32,36,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,218,218,218,218, 0,218,218,27,28,28,30,0,0,0,218,2981,2982,2983,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,0,2981,2982,2983,0, 0,0,0,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,218,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,218,218,218,218,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0, 0,0,0,0,218,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,218,218,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,218,0,0,0,218,0,0, 0,0,0,0,0,0,0,0,0,218,218,218,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,218,218,0,0,0 ================================================ FILE: maps/hoenn/hoenn-route-101.tmx ================================================ 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114 212,213,212,213,212,213,212,213,2601,2602,2603,0,212,213,212,213,212,213,212,213, 438,439,325,326,325,326,325,326,2714,2715,2716,0,325,326,325,326,438,439,438,439, 212,213,95,95,95,0,0,0,0,0,0,0,0,95,95,95,212,213,212,213, 325,326,95,95,95,95,0,0,0,0,0,0,95,95,95,95,325,326,438,439, 95,95,95,95,95,95,0,0,0,0,0,0,95,95,95,95,95,95,212,213, 95,95,95,95,95,0,0,0,0,0,0,99,95,95,95,95,95,95,325,326, 212,213,95,95,0,0,1245,1020,1020,1020,1133,212,213,95,95,95,0,0,0,0, 438,439,1132,1020,1020,1020,1021,0,0,0,0,438,439,212,213,0,0,2488,2490,0, 212,213,99,100,0,0,0,0,0,0,0,212,213,325,326,0,2488,2602,2603,0, 438,439,212,213,0,205,0,2488,2489,2490,0,325,326,95,95,0,2714,2602,2602,2490, 212,213,438,439,0,2488,2489,2602,2602,2603,0,95,95,95,95,95,0,2714,2602,2603, 438,439,212,213,0,2714,2602,2602,2602,2716,0,95,95,95,95,95,95,0,2714,2716, 212,213,325,326,0,0,2714,2715,2716,0,0,95,95,95,95,95,95,0,0,0, 325,326,95,95,0,0,0,0,1132,1020,1020,1133,95,95,95,95,95,0,99,100, 95,95,95,95,95,0,0,0,0,0,0,0,212,213,95,95,0,0,212,213, 95,95,95,95,95,95,0,0,0,0,0,0,438,439,95,95,99,100,438,439, 212,213,95,95,95,95,0,0,0,0,0,0,212,213,212,213,212,213,212,213, 438,439,95,95,99,100,99,100,99,100,0,0,438,439,325,326,325,326,438,439, 212,213,212,213,212,213,212,213,212,213,0,0,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,0,0,438,439,438,439,438,439,438,439 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 99,100,0,0,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,99,100,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,99,100,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 99,100,0,0,0,0,0,0,0,0,0,0,0,0,99,100,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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: maps/hoenn/hoenn-route-102.tmx ================================================ 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,4184,4184,4184,4184,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,4184,4184,4184,4184,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,4184,4184,4184,4184,4184,4184,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,4184,4184,4184,4184,4184,4184,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,4184,4184,4184,4184,4184,4184,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,95,95,95,0,0,0,0,0,0,0,0,0,0,0,0,2837,2498,2498,2838,0,0,0,0,0,0,0,0,0,95,95,95,95,4409,4410,4410,4411,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,95,95,95,0,0,0,2488,2489,2489,2490,0,0,0,0,0,1811,1812,1812,1813,0,0,0,0,0,0,0,0,0,95,95,95,95,4522,0,0,4524,0,0,0,0,0,0, 0,0,95,95,95,95,95,95,95,95,95,0,2488,2489,2602,2602,2602,2602,2489,2490,0,0,0,0,0,0,0,0,0,0,0,0,0,659,795,0,95,95,95,95,4522,0,0,4637,4410,4411,0,0,0,0, 0,0,95,95,95,95,95,95,95,95,0,2488,2602,2602,2715,2715,2715,2715,2715,2716,0,0,0,0,0,0,0,0,0,0,0,0,659,0,908,0,0,95,95,95,4522,0,0,0,0,4524,0,0,0,0, 0,0,0,95,95,95,95,95,95,95,0,2601,2602,2716,0,0,1132,1133,0,0,1132,1020,1020,1020,1020,1133,0,0,0,0,0,0,0,659,908,0,0,0,95,95,4522,0,0,0,0,4524,0,0,0,0, 0,0,0,0,95,95,95,95,0,0,0,2714,2716,0,0,0,0,0,0,0,95,95,95,95,95,0,0,0,0,0,0,0,0,0,908,0,0,0,0,0,4636,4636,4636,4636,4636,4636,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,95,95,95,95,95,0,0,0,0,0,0,0,0,0,1247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,95,95,95,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,95,95,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2488,2489,2489,2490,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2488,2489,2489,2602,2602,2602,2603,0,0,0,0,0, 0,0,0,0,0,0,95,95,0,0,0,0,0,0,0,0,95,95,95,0,0,0,0,0,0,0,0,0,0,0,95,95,0,0,0,0,2488,2489,2602,2602,2602,2602,2602,2715,2716,0,0,0,0,0, 0,0,0,0,0,0,95,95,1132,1020,1020,1133,0,0,0,0,95,95,0,0,0,0,0,0,0,0,0,0,95,95,95,95,0,0,0,0,2601,2602,2602,2602,2602,2715,2716,0,0,0,0,0,0,0, 0,0,0,0,0,0,95,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,95,95,95,0,0,2488,2602,2602,2715,2715,2716,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,95,95,95,0,0,0,0,0,0,0,0,0,0,0,95,95,95,0,0,0,0,0,0,95,95,95,0,0,0,2714,2715,2716,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,95,95,95,95,0,0,0,0,0,0,0,0,0,95,95,95,95,95,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,95,95,95,95,0,0,0,0,0,0,0,0,0,95,95,95,95,95,95,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 212,213,212,213,212,213,212,213,212,213,212,213,212,213,0,0,0,0,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,325,326,325,326,325,326,0,0,0,0,325,326,325,326,325,326,325,326,325,326,438,439,438,439,438,439,438,439,325,326,325,326,325,326,325,326,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,0,0,0,0,0,0,0,0,0,205,0,0,0,0,0,0,0,0,0,0,212,213,212,213,212,213,212,213,0,0,0,0,0,0,0,0,212,213,212,213,212,213, 438,439,325,326,325,326,325,326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,325,326,325,326,325,326,325,326,0,0,0,0,0,0,0,0,325,326,438,439,438,439, 212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213,212,213, 325,326,0,0,0,0,0,0,0,0,0,0,0,0,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,438,439,438,439, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213,0,0,0,0,0,0,0,0,0,0,99,100,99,100,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213,212,213, 0,0,0,0,0,0,0,0,0,0,0,0,99,100,438,439,0,0,0,0,0,0,0,0,0,0,212,213,212,213,438,439,99,100,0,0,0,0,0,0,0,0,0,0,0,0,325,326,438,439, 0,0,0,0,0,0,0,0,0,0,0,0,212,213,212,213,0,0,0,0,0,0,0,0,0,0,438,439,438,439,212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213, 99,100,99,100,99,100,99,100,0,0,0,0,438,439,438,439,0,0,0,0,0,0,0,0,0,0,212,213,212,213,438,439,438,439,99,100,0,0,0,0,0,0,0,0,0,0,0,0,438,439, 212,213,212,213,212,213,212,213,0,0,99,100,212,213,212,213,0,0,0,0,0,0,0,0,0,0,438,439,438,439,212,213,212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,0,212,213, 438,439,438,439,438,439,325,326,0,0,212,213,438,439,438,439,0,0,0,0,0,0,0,0,0,0,212,213,212,213,325,326,438,439,438,439,0,0,0,0,0,0,0,0,0,0,0,0,325,326, 212,213,212,213,212,213,0,0,0,0,325,326,212,213,212,213,0,0,0,0,0,99,100,0,0,0,325,326,325,326,0,0,212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 438,439,438,439,438,439,0,0,0,0,0,0,438,439,438,439,99,100,0,0,0,212,213,99,100,0,0,0,0,0,0,0,325,326,325,326,0,0,0,0,0,0,0,0,99,100,99,100,99,100, 212,213,212,213,212,213,0,0,0,0,0,0,212,213,212,213,212,213,0,0,0,325,326,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213,212,213,212,213, 438,439,438,439,438,439,0,0,0,0,99,100,438,439,438,439,438,439,0,0,0,0,0,325,326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,100,99,100,438,439,438,439,438,439, 212,213,212,213,212,213,0,0,0,0,212,213,212,213,212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,99,100,99,100,438,439,438,439,438,439,438,439,99,100,99,100,99,100,0,0,0,0,0,0,0,0,99,100,99,100,99,100,99,100,438,439,438,439,438,439,438,439,438,439, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,0,0,0,0,0,0,0,0,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,99,100,99,100,99,100,99,100,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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: maps/hoenn/hoenn-route-103.tmx ================================================ 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,0,0,0,0,0,0,0,0,0,4524,115,0,228,342,115,0,0,0,341,230,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,229,230,0,0,0,117, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,0,0,0,0,0,0,0,0,0,4524,228,229,342,115,228,342,0,0,117,0,0,228,342,0,0,0,0,341,229,229,229,229,229,229,229,342,0,0,0,0,0,0,0,0,341,230,0,0,0,0,0,117, 0,0,0,0,0,0,0,0,0,0,95,95,95,95,95,95,0,0,0,0,0,0,0,0,0,0,4522,0,0,0,0,0,0,0,0,0,0,4637,4410,4411,115,228,342,115,0,0,117,0,341,342,228,229,229,229,229,230,0,341,229,229,229,342,0,228,229,229,229,229,229,229,229,229,230,0,0,0,0,0,0,117, 0,0,0,0,0,0,0,2488,2489,2489,2490,95,95,95,95,95,0,0,0,0,0,0,0,0,0,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,4524,228,342,115,228,342,0,117,0,117,228,229,229,229,229,229,229,229,230,0,0,0,228,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,230, 0,0,95,95,0,0,0,2714,2715,2715,2716,0,0,95,95,95,95,95,0,0,0,0,0,0,4409,4410,4635,0,0,0,0,0,0,0,0,0,0,0,0,4637,4411,115,228,342,228,229,230,341,230,341,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229, 0,0,95,95,95,95,1132,1020,1020,1020,1020,1020,1020,1246,95,95,95,95,0,0,0,0,0,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,115,0,228,229,456,229,230,0,117,0,0,0,0,0,0,0,2837,2498,2498,2498,2838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,95,95,95,95,95,95,95,0,0,0,0,1019,1020,1020,1020,1020,1020,1133,0,0,0,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,228,229,229,229,569,229,229,229,230,0,0,0,0,0,0,0,1811,1812,1812,1812,1813,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,95,95,95,95,95,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4637,4410,4410,4411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,95,95,95,95,95,95,95,0,0,0,0,2488,2489,2489,2489,2490,0,0,0,0,4409,4410,4635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4637,4410,4410,4410,4410,4411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,95,95,95,95,95,95,95,0,0,0,0,2714,2715,2602,2602,2602,2490,0,0,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2491,2492,2492, 0,0,0,0,95,95,95,95,0,0,0,0,0,0,0,2714,2715,2715,2716,0,0,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,0,2491,2492,2492,2493,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2491,2492,2605,2605,2718, 0,0,0,0,95,95,95,95,0,0,0,0,0,0,95,95,95,95,0,0,0,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,0,2717,2718,2605,2605,2492,2492,2492,2493,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2491,2492,2605,2605,2718,2719,0, 0,0,0,0,1132,1020,1020,1020,1020,1020,1020,1020,1020,1133,95,95,95,95,95,0,0,0,4636,4636,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,0,0,0,2717,2718,2718,2718,2605,2605,2492,2492,2492,2492,2492,2492,2492,2492,2492,2492,2492,2492,2492,2492,2492,2605,2605,2718,2719,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,95,95,95,95,95,95,95,95,0,0,0,0,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,4636,4636,4636,4636,0,0,0,0,0,0,0,2717,2718,2718,2718,2718,2718,2718,2718,2718,2718,2718,2718,2718,2718,2718,2718,2718,2718,2719,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,95,95,95,95,95,95,95,0,0,0,0,0,0,4636,4636,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,95,95,95,95,95,95,0,0,0,0,0,0,0,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,4636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 438,439,438,439,325,326,325,326,325,326,325,326,325,326,325,326,438,439,438,439,438,439,438,439,438,439,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,0,212,213,212,213,212,213,212,213,212,213,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 438,439,325,326,0,0,0,0,0,0,0,0,0,0,0,0,325,326,438,439,438,439,438,439,325,326,0,0,0,0,0,0,0,2,4,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213,212,213,212,213,0,0,0,0,2,4,0,0,0,228,230,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,218,218,218,0,0,0,0,218,218,218,218,218,218,218,218,218,218, 438,439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,325,326,438,439,438,439,202,203,0,0,228,230,2,4,202,203,0,0,0,2,4,202,203,0,0,0,0,0,0,0,0,0,0,218,218,218,218,218,218,0,0,0,0,0,219,331,219,331,218,0,218,0,219,219,219,331,219,331,219,219,219,219, 212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213,212,213,315,316,2,4,0,0,228,230,315,316,0,0,0,228,230,315,316,0,0,0,0,0,0,0,0,0,218,219,219,219,219,219,219,0,0,0,0,0,331,218,331,218,331,0,331,0,331,331,331,218,219,218,219,331,219,331, 438,439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,325,326,325,326,0,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,331,219,219,219,219,219,0,0,0,0,0,0,219,0,331,0,0,218,0,0,0,0,219,219,219,219,0,219,0, 212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,219,219,219,219,218,0,218,0,218,0,331,218,218,218,0,331,0,218,218,0,219,331,331,331,0,331,0, 438,439,0,0,0,0,0,0,0,0,0,205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,331,219,219,219,218,219,218,219,218,0,331,331,331,0,0,218,331,219,0,331,0,0,0,0,0,0, 212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,331,331,219,331,219,331,219,218,218,218,218,218,218,331,0,331,0,0,0,0,0,0,0,0, 438,439,438,439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,0,331,0,331,331,331,331,331,331,331,0,0,0,0,0,0,0,0,0,0,218, 212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,203,202,203,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219, 438,439,438,439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,100,99,100,99,100,315,316,315,316,2,4,0,0,0,0,202,203,202,203,228,230,0,2,4,0,0,218,218,218,0,0,0,218,218,218,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,218,219, 212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213,212,213,212,213,0,0,0,0,228,230,2,4,202,203,315,316,315,316,0,202,203,228,230,202,203,219,219,219,218,218,218,219,219,219,218,219,218,218,0,218,0,218,0,218,0,218,0,218,0,218,0,218,0,218,218,0,218,219,219,219, 438,439,438,439,99,100,0,0,0,0,0,0,99,100,99,100,99,100,438,439,438,439,438,439,99,100,0,0,0,0,228,230,315,316,0,0,0,0,0,315,316,0,0,315,316,219,219,219,219,219,219,219,219,219,219,219,219,331,218,331,218,331,218,331,218,331,218,331,218,331,218,331,218,331,219,218,219,219,219,219, 212,213,212,213,212,213,0,0,0,0,0,0,212,213,212,213,212,213,212,213,212,213,212,213,212,213,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,219,219,219,219,219,219,218,331,218,331,218,331,218,331,218,331,218,331,218,331,218,331,218,331,219,219,219,219,219, 438,439,438,439,438,439,99,100,0,0,0,0,438,439,438,439,438,439,438,439,438,439,438,439,438,439,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,219,219,219,219,219,219,219,219,219,219,219,219,219,218,219,218,219,218,219,218,219,218,219,218,219,218,219,218,219,218,219,219,219,219,219, 212,213,212,213,212,213,212,213,0,0,0,0,212,213,212,213,212,213,212,213,212,213,212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 438,439,438,439,438,439,438,439,0,0,0,0,438,439,438,439,438,439,438,439,438,439,438,439,438,439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 212,213,212,213,212,213,212,213,0,0,0,0,212,213,212,213,212,213,212,213,212,213,212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 438,439,438,439,438,439,438,439,0,0,0,0,438,439,438,439,438,439,438,439,438,439,438,439,438,439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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: maps/hoenn/hoenn-route-104.tmx ================================================ 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 4978,4978,4978,4978,4978,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,4978,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,4978,4978,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,4978,4978,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,4978,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,4978,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,4978,4978,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,4978,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,4978,4978,4978,4978,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,116,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2491,2493,0,0,0,0,0,0,0,0,0,0,0,4070,4072,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2604,2605,2492,2492,2492,2492,2492,2492,2492,2492,2493,0,0,4296,4184,4072,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,95,95,0,0,0,0,0,0,0,2717,2718,2718,2718,2718,2718,2718,2718,2718,2605,2606,0,0,0,4296,4298,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,4070,4072,0,0,0,0,2604,2606,0,0,0,0,0,659,0,0,0,0,0,0,0,0, 0,0,95,0,95,95,95,0,95,95,0,0,0,0,0,0,0,0,4296,4298,0,0,0,0,2604,2606,0,4070,4072,0,0,0,0,2837,2498,2498,2498,2838,0,0, 0,0,95,95,95,95,95,95,95,0,0,0,0,0,0,0,0,0,0,0,0,4070,4072,0,2717,2719,0,4296,4298,0,0,0,659,1811,1812,1812,1812,1813,0,0, 0,0,95,95,0,0,95,95,95,95,0,0,0,0,0,0,0,0,0,0,0,4296,4298,0,0,0,0,0,0,0,0,0,0,0,659,0,659,659,0,0, 0,0,95,0,95,95,95,95,0,0,0,0,0,0,0,0,0,0,0,0,4409,4410,4410,4410,1463,1464,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4411,0,0, 0,0,95,95,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,0,0,1463,1464,0,0,0,0,0,0,0,0,0,0,0,4524,0,0, 0,0,95,95,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,0,0,1463,1464,0,0,0,0,0,0,0,0,0,0,0,4524,0,0, 0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,4409,4410,4410,4410,4635,0,0,0,1463,1464,0,0,0,0,0,0,0,0,0,0,0,4524,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,4409,4410,4635,0,0,0,0,0,0,0,1463,1464,0,0,0,0,0,0,0,0,0,0,0,4524,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,0,0,0,0,0,0,0,0,1463,1464,0,0,0,0,0,0,0,0,0,0,0,4524,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,4409,4635,0,0,0,0,0,0,0,0,0,1463,1464,1576,1576,1576,1576,1463,1464,0,0,0,0,0,4524,0,0, 0,0,1924,0,0,0,0,0,0,0,0,0,0,4522,0,0,0,0,0,0,0,0,0,0,1463,1464,1689,1689,1689,1689,1463,1464,0,0,0,0,0,4524,0,0, 0,0,1924,0,0,0,0,0,0,0,0,0,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1463,1464,0,0,0,0,0,4524,0,0, 0,0,1924,0,0,0,0,0,0,0,0,0,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1463,1464,0,0,0,0,0,4524,0,0, 0,0,1924,1924,1924,0,1924,1924,1924,1924,1924,0,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1463,1464,0,0,0,0,0,4524,0,0, 0,0,659,659,659,0,0,0,659,659,659,0,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1463,1464,0,0,0,0,0,4524,0,0, 0,0,659,659,659,0,0,0,659,659,659,0,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1463,1464,0,0,0,0,0,4524,0,0, 0,0,2837,2498,2838,2491,2493,0,0,0,0,0,0,4636,4636,4636,4636,4636,4636,4636,4636,4636,4636,4636,4636,4636,4636,4636,4636,4636,4636,4636,4636,4636,4636,4636,4636,4636,0,0, 0,0,2836,2611,2949,2604,2606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2491,2493,0,0,0,0,0,0,0,0, 0,0,2836,2611,2949,2604,2605,2492,2492,2492,2492,2492,2492,2492,2492,2492,2492,2492,2492,2492,2492,2492,2492,2492,2492,2492,2492,2492,2492,2492,2605,2606,0,0,0,0,0,0,0,0, 0,0,2836,2611,2949,2717,2718,2718,2718,2718,2605,2605,2718,2718,2718,2718,2718,2718,2718,2718,2718,2718,2718,2718,2718,2718,2718,2718,2718,2718,2718,2719,0,0,0,0,0,0,0,0, 0,0,1811,1812,1813,0,0,0,0,0,2604,2606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,2604,2606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,2717,2719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 229,229,229,229,342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 5091,5091,5091,5429,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,4977,228,342,0,0,0,0,2491,2493,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,5090,5429,228,342,95,95,95,2604,2606,95,95,95,95,0,0,0,0,0,2837,2498,2498,2498,2838,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,5090,5429,115,95,95,95,2604,2606,95,95,95,95,95,0,0,0,0,1811,1812,1812,1812,1813,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,4977,115,95,95,95,2604,2605,2492,2492,2492,2492,2492,2492,2492,2492,2492,2492,2492,2492,2493,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,4977,228,342,95,95,2717,2718,2718,2718,2718,2718,2718,2718,2718,2718,2718,2718,2605,2605,2606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,5090,5429,115,95,95,95,95,95,95,95,95,95,95,0,0,0,0,2604,2605,2606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,4977,228,229,229,342,95,95,95,95,95,95,95,95,0,0,0,2604,2605,2606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,5090,5091,5091,5429,228,229,229,229,342,0,0,0,0,0,0,0,2604,2605,2606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,5090,5091,5091,5091,5429,115,0,0,0,0,0,0,0,2604,2605,2606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,4977,115,0,0,0,0,0,0,0,2604,2605,2606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,5090,115,0,0,0,0,0,0,0,2604,2605,2606,0,0,0,793,0,0,659,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,2717,2718,2719,0,0,0,906,0,659,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,2,4,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,906,0,0,659,0,0,0,0,0,0,0,0, 0,0,0,0,0,228,230,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,906,0,659,0,0,0,0,0,0,0,0,0, 0,0,0,0,2,3,4,0,0,0,0,0,0,4864,228,229,1348,1349,229,342,0,0,0,0,0,95,95,95,906,0,0,659,0,0,0,0,0,0,0,0, 0,0,0,0,115,0,117,0,0,0,0,0,0,4977,0,0,0,0,0,115,0,95,95,95,95,95,95,95,1019,1020,1246,0,0,0,0,0,0,0,0,0, 0,0,0,0,228,229,230,0,0,0,0,0,0,5090,5429,0,0,0,0,115,95,95,95,95,95,95,95,95,95,95,906,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,2,4,0,0,0,0,0,0,0,4977,0,0,0,0,115,95,95,95,95,95,95,95,95,95,95,1019,1020,1020,1133,0,0,0,0,0,0, 0,0,0,0,0,228,230,0,0,0,0,0,0,0,4977,0,0,0,0,228,342,95,95,95,95,95,95,95,95,95,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,2,4,0,0,0,0,0,0,4977,0,0,0,0,0,115,95,95,95,95,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,228,230,0,0,0,0,0,0,4977,0,0,0,0,0,228,342,95,95,95,0,0,0,2491,2492,2493,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,4864,5203,0,0,0,0,0,0,342,95,95,95,0,0,2491,2605,2605,2605,2492,2492,2493,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,4977,0,0,0,0,0,0,0,228,229,342,0,0,0,2604,2605,2605,2605,2605,2605,2605,2493,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,4977,0,0,0,0,0,0,0,0,0,115,0,0,0,2717,2605,2605,2605,2605,2718,2718,2719,0,0,0,0,0, 0,0,0,0,0,2,4,0,0,0,0,0,0,4977,0,0,0,0,0,0,0,0,0,228,342,0,0,0,2717,2718,2718,2719,0,0,0,0,0,0,0,0, 0,0,0,0,0,228,230,0,0,0,0,0,0,4977,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,5090,5429,0,0,0,0,0,0,0,0,0,228,229,342,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,4977,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,2,3,4,0,0,0,0,0,0,0,4977,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,115,0,117,0,0,0,0,0,0,0,4977,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,228,229,230,0,0,0,0,0,0,0,5090,5429,0,0,0,0,0,0,0,0,0,0,228,229,1348,1349,229,342,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,4977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,228,230,0,0,0,0,0,0,4977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,5090,5091,5429,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0,5090,5091,5429,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5090,5091,5091,5429,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,5090,5091,5091,5091,5091,5091,5429,0,0,115,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5090,5091,5091,115,0,0,0,0,0,0,0,0, 0,0,0,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,4,0,0,115,0,0,0,0,0,0,0,0, 0,0,0,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,230,0,0,115,0,0,0,0,0,0,0,0 212,213,212,213,212,213,212,213,212,213,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213,212,213,438,439, 438,439,438,439,438,439,438,439,438,439,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,100,438,439,438,439,212,213, 212,213,212,213,212,213,212,213,212,213,438,439,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213,212,213,212,213,438,439, 438,439,438,439,438,439,325,326,438,439,212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,438,439,438,439,438,439,212,213, 212,213,212,213,212,213,0,0,212,213,438,439,438,439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213,212,213,212,213,438,439, 438,439,325,326,325,326,0,0,325,326,212,213,212,213,0,0,0,0,0,0,0,0,0,205,0,0,0,0,0,0,0,0,325,326,325,326,325,326,212,213, 212,213,0,0,0,0,0,0,0,0,438,439,438,439,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,438,439, 438,439,0,0,0,0,0,0,0,0,212,213,212,213,212,213,99,100,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213, 212,213,0,0,0,0,0,0,99,100,438,439,438,439,438,439,212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,438,439, 438,439,0,0,0,0,99,100,212,213,212,213,212,213,212,213,438,439,438,439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213, 212,213,0,0,0,0,212,213,438,439,438,439,438,439,438,439,212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,438,439, 438,439,0,0,99,100,438,439,212,213,212,213,212,213,212,213,325,326,325,326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213, 212,213,0,0,212,213,212,213,438,439,438,439,438,439,325,326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,438,439, 438,439,0,0,438,439,438,439,212,213,212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213, 212,213,0,0,212,213,212,213,325,552,551,552,551,326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,325,326, 438,439,0,2083,2084,2084,2084,2084,2088,212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 212,213,0,2196,2197,2197,2197,2197,2201,438,439,438,439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,100, 438,439,0,2309,2310,2311,2312,2313,2314,212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213, 212,213,0,2422,2423,2424,2425,2426,2427,325,326,438,439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,438,439, 438,439,0,0,0,0,0,0,0,0,0,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213, 212,213,0,0,0,0,0,205,0,0,0,325,326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,438,439, 438,439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213, 212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,100,99,100,438,439, 438,439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213,212,213,212,213, 212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,100,438,439,438,439,438,439, 438,439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213,212,213,212,213,212,213, 212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,325,326,325,326,438,439,438,439, 438,439,99,100,99,100,0,0,0,0,0,0,0,0,1902,1902,1902,218,218,1902,1902,1902,1902,218,218,218,1902,1902,1902,1902,218,218,218,218,218,218,212,213,212,213, 212,213,212,213,212,213,218,218,1902,1902,0,0,1902,1902,218,218,218,219,219,218,218,218,218,219,219,219,218,218,218,218,219,219,219,219,219,219,218,218,438,439, 438,439,218,218,218,218,219,219,218,218,0,0,218,218,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,212,213, 212,213,219,219,219,219,219,219,219,219,0,0,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,438,439, 218,218,219,219,219,219,219,219,219,219,218,218,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,212,213, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,218,218, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 331,331,331,331,331,219,219,219,219,219,331,331,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,219,219,219,219,219,0,0,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,331,219,219,331,331,0,0,331,331,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,331,331,1902,1902,0,0,1902,1902,331,331,219,219,219,219,219,331,331,331,331,331,219,219,219,219,219,219,331,331,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,331,331,331,331,0,0,0,0,0,219,219,219,219,219,219,0,0,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,0,0,219,219,219,219,331,331, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,331,0,0,331,331,219,219,212,213, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,0,0,0,212,213,331,331,438,439, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,0,0,0,438,439,212,213,212,213, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,0,0,0,212,213,438,439,438,439, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2089,2090,2090,2090,2093,0,0,0,0,0,0,331,219,219,219,331,0,0,0,438,439,212,213,212,213, 0,0,0,0,0,0,0,202,203,0,0,0,0,0,0,2202,2203,2203,2203,2206,0,0,0,0,0,0,0,219,219,219,0,0,0,0,212,213,438,439,438,439, 0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,2315,2316,2316,2316,2319,0,0,0,0,0,0,0,331,331,331,0,0,0,0,438,439,212,213,212,213, 0,0,0,0,0,0,0,0,0,202,203,0,0,0,0,2428,2429,2430,2431,2432,205,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213,438,439,438,439, 0,0,0,0,0,0,0,202,203,315,316,1574,1575,1575,1575,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,438,439,212,213,212,213, 0,0,0,0,0,0,0,315,316,0,0,1687,1688,1688,1688,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,100,212,213,438,439,438,439, 0,0,0,0,0,0,0,0,0,0,0,1800,1801,1802,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213,438,439,212,213,212,213, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,438,439,212,213,438,439,438,439, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213,438,439,212,213,212,213, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,325,326,212,213,438,439,438,439, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,438,439,212,213,212,213, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213,438,439,438,439, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,325,326,212,213,212,213, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,325,326,325,326, 0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,100,99,100, 0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213,212,213, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,100,438,439,438,439, 0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,0,0,0,0,0,0,212,213,212,213,212,213, 0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,100,438,439,438,439,438,439, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213,212,213,212,213,212,213, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,438,439,438,439,438,439,438,439, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213,212,213,212,213,212,213, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,438,439,438,439,438,439,438,439, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213,212,213,212,213,212,213, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,438,439,438,439,438,439,438,439, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213,212,213,212,213,212,213, 0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,438,439,438,439,438,439,438,439, 0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213,212,213,212,213,212,213, 0,0,0,0,0,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,203,0,438,439,438,439,438,439,438,439, 0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,212,213,212,213,212,213,212,213, 0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,438,439,438,439,438,439,438,439 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,100, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,100,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,100,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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: maps/hoenn/hoenn-route-105.tmx ================================================ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,116,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0, 0,0,0,0,0,0,0,4865,116,116,116,4865,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,4978,116,116,116,4978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,4978,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,4978,4978,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,4978,4978,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,4978,4978,4978,4978,0,0,0,0,4978,4978,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,4978,4978,4978,4978,0,0,0,0,0,4978,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,4978,4978,4978,4978,0,0,0,0,0,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,4978,4978,4978,0,0,0,0,0,0,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,4978,4978,0,0,0,0,0,0,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,4978,4978,0,0,0,0,0,4978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,203,0,0,0,115,212,213,212,213,212,213,212,213, 0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,115,438,439,438,439,438,439,438,439, 0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,203,0,0,115,212,213,212,213,212,213,212,213, 0,0,0,0,0,202,203,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,115,325,326,438,439,438,439,438,439, 0,0,0,0,0,315,316,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,228,229,342,212,213,212,213,212,213, 0,0,0,0,0,2,4,0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,0,0,0,0,115,325,326,438,439,438,439, 0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,228,229,342,212,213,212,213, 0,0,0,0,0,0,2,4,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,2,4,0,0,115,325,326,325,326, 0,0,0,0,0,0,228,230,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,117,0,0,228,229,229,229,229, 0,0,0,0,0,202,203,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,117,0,0,0,0,0,0,0, 0,0,0,0,0,315,316,315,316,202,203,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,202,203,0,115,0,117,0,0,0,0,0,0,0, 0,0,0,0,202,203,0,0,0,315,316,202,203,315,316,202,203,0,0,0,0,0,0,0,0,0,0,315,316,0,115,0,117,0,0,0,0,0,0,0, 0,0,0,0,315,316,0,0,0,0,0,315,316,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,117,0,0,0,0,0,0,0, 0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,202,203,0,2,3,0,117,0,0,0,0,0,0,0, 0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,315,316,0,115,0,341,230,0,0,0,0,0,0,0, 202,203,0,0,0,2,4,0,0,0,0,0,2,4,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,115,0,117,0,2,4,0,0,0,0,0, 315,316,0,0,0,228,230,0,0,0,0,0,228,230,0,315,316,202,203,0,0,0,0,0,0,0,0,0,0,115,0,117,2,3,117,0,0,0,0,0, 0,202,203,0,0,0,0,0,2,3,4,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,115,341,230,115,0,117,0,0,0,0,0, 0,315,316,0,0,0,4864,2,115,0,117,4,4866,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,115,117,0,228,229,230,0,0,0,0,0, 202,203,0,2,4,0,4977,115,228,229,230,117,4979,0,2,4,315,316,202,203,0,0,0,0,0,0,0,0,0,115,117,0,0,0,0,0,0,0,0,0, 315,316,0,228,230,0,4977,228,229,229,229,230,4979,0,228,230,0,0,315,316,0,0,0,0,0,0,0,202,203,228,230,0,0,0,0,0,0,0,0,0, 202,203,0,0,0,0,5090,5429,0,0,0,5430,5092,0,0,0,0,202,203,0,0,0,0,0,0,0,0,315,316,0,0,2,4,0,0,0,0,0,0,0, 315,316,0,0,0,0,0,5090,5091,5091,5091,5092,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,228,230,2,4,0,0,0,0,0, 0,202,203,0,0,2,4,0,0,0,0,0,2,4,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,2,4,0,2,3,117,0,0,0,0,0, 0,315,316,0,0,228,230,0,0,0,0,0,228,230,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,228,230,0,115,0,117,0,0,0,0,0, 202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,117,0,0,0,0,0, 315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,117,0,0,0,0,0, 0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,202,203,2,3,0,117,0,0,0,0,0, 0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,315,316,115,0,0,117,0,0,0,0,0, 0,0,202,203,0,0,0,0,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,2,4,117,0,0,0,0,0, 0,0,315,316,0,0,0,0,0,0,0,0,0,0,315,316,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,115,115,117,117,2,4,0,0,0, 0,0,0,202,203,0,0,0,0,0,0,0,0,202,203,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,115,115,117,117,228,230,0,0,0, 0,0,0,315,316,0,0,0,0,0,0,202,203,315,316,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,115,115,117,3,4,0,0,0,0, 0,0,202,203,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,0,115,115,3,4,117,0,0,0,0, 0,0,315,316,0,0,0,0,0,0,202,203,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,115,115,0,117,117,0,0,0,0, 0,0,0,2,4,0,0,0,0,0,315,316,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,115,115,0,117,117,0,0,0,0, 0,0,0,228,230,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,115,0,117,117,0,0,0,0, 0,0,202,203,0,0,0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,2,3,341,230,117,0,0,0,0, 0,0,315,316,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,115,115,0,117,341,230,0,0,0,0, 0,202,203,0,0,0,0,0,0,0,228,230,0,0,202,203,0,0,202,203,0,0,0,0,0,0,0,0,228,230,115,115,0,117,117,0,0,0,0,0, 0,315,316,0,0,0,0,0,0,0,2,4,0,0,315,316,0,0,315,316,0,0,0,0,0,0,0,0,0,0,115,228,342,117,117,0,0,0,0,0, 0,0,2,4,0,0,0,0,0,0,228,230,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,342,115,117,117,0,0,0,0,0, 0,0,228,230,0,0,0,0,0,0,0,0,315,316,220,220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,228,230,117,0,0,0,0,0, 0,2,4,0,0,0,0,0,0,0,0,202,203,4864,221,221,4866,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,341,230,0,0,0,0,0, 0,228,230,0,0,0,0,0,0,0,0,315,316,4977,221,221,4979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,117,0,2,4,0,0,0, 0,0,202,203,0,0,0,0,0,0,0,0,0,4977,333,221,5204,4865,4866,0,0,0,0,0,0,0,0,0,0,2,4,115,0,117,0,228,230,0,0,0, 0,0,315,316,0,202,203,0,0,0,0,4864,4865,5203,220,221,0,0,4979,0,0,0,0,0,0,0,0,0,0,228,230,115,341,230,0,0,0,0,0,0, 0,2,4,0,0,315,316,0,0,0,0,4977,0,0,221,221,0,0,4979,0,0,0,0,0,0,0,0,0,0,0,0,115,117,0,0,0,0,0,0,0, 0,228,230,0,0,0,0,0,0,0,0,4977,0,220,221,221,220,0,4979,0,0,0,0,0,0,0,0,0,0,0,0,115,117,0,0,0,0,0,0,0, 0,0,0,202,203,0,0,0,0,0,0,4977,0,221,333,221,221,0,4979,0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,0,0,0,0,0,0, 0,0,0,315,316,0,0,0,0,0,4864,5203,0,221,220,221,221,0,4979,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0, 0,202,203,0,220,220,0,0,0,0,4977,0,0,221,333,221,333,0,4979,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,2,4,0,0,0,0, 0,315,316,4864,221,221,4866,0,0,0,4977,0,0,221,220,333,0,0,4979,0,0,0,0,0,0,0,0,0,0,0,202,203,0,0,228,230,0,0,0,0, 0,202,203,4977,333,221,4979,0,0,0,5090,5429,0,333,221,0,0,0,4979,0,0,0,0,0,0,0,0,0,0,0,315,316,2,4,202,203,0,0,0,0, 0,315,316,4977,0,221,5204,4865,4866,0,0,4977,0,0,221,0,0,0,4979,0,0,0,0,0,0,0,0,0,0,0,0,2,3,117,315,316,0,0,0,0, 2,4,0,4977,0,333,220,0,4979,0,0,4977,0,0,333,0,0,0,4979,0,0,0,0,0,0,0,0,0,0,0,0,228,229,230,0,0,0,0,0,0, 228,230,0,4977,0,220,221,0,4979,0,0,5090,5429,0,0,0,0,0,4979,0,0,0,0,0,0,0,0,0,0,202,203,0,0,0,2,4,0,0,0,0, 0,2,4,4977,0,221,221,0,4979,0,0,0,4977,0,0,0,0,5430,5092,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,228,230,0,0,0,0, 0,228,230,4977,0,221,333,5430,5092,0,0,0,4977,0,0,0,0,4979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0, 202,203,0,5090,5429,333,0,4979,0,0,0,0,4977,0,0,0,5430,5092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,0,0,0,0,0, 315,316,0,0,5090,5091,5091,5092,0,0,0,0,5090,5429,0,0,4979,0,0,0,0,0,0,0,0,0,0,0,0,2,4,2,3,4,0,0,0,0,0,0, 0,2,4,0,0,0,0,0,0,0,0,0,0,4977,0,0,4979,202,203,0,0,0,0,0,0,0,0,0,0,228,230,115,0,117,0,0,0,0,0,0, 0,228,230,202,203,0,0,0,0,0,202,203,0,5090,5091,5091,5092,315,316,0,0,0,0,0,0,0,0,0,0,0,2,3,0,117,0,0,0,0,0,0, 0,0,0,315,316,0,202,203,0,0,315,316,202,203,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,115,2,4,117,0,0,0,0,0,0, 0,0,0,0,202,203,315,316,2,4,0,0,315,316,2,4,315,316,0,0,0,0,0,0,0,0,0,0,0,0,115,115,117,117,0,0,0,0,0,0, 0,0,0,0,315,316,0,0,228,230,0,0,2,4,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,115,117,117,0,0,0,0,0,0, 0,0,0,0,0,0,202,203,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,115,117,117,0,0,0,0,0,0, 0,0,0,0,0,0,315,316,0,0,0,202,203,0,4864,4865,4866,0,0,0,0,0,0,0,0,0,0,0,0,0,115,228,230,117,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,2,4,315,316,0,4977,0,4979,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,341,230,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,228,230,0,0,0,5090,5091,5092,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,117,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,341,230,0,0,0,0,0,0,0, 0,0,0,0,0,0,220,220,315,316,0,4864,4865,4865,4866,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,117,0,0,0,0,0,0,0,0, 0,0,0,0,0,4864,221,221,4866,0,0,4977,0,0,4979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,117,0,0,0,0,0,0,0,0, 0,0,0,0,0,4977,221,221,5204,4865,4866,5090,5429,0,4979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,2,4,0,0,0,0,0,0, 0,0,0,0,0,4977,221,221,220,0,4979,0,5090,5091,5092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,0,0,0,0,0, 0,0,0,0,0,4977,221,221,221,0,4979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0, 0,0,0,0,0,4977,333,221,333,5430,5092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,228,230,0,0,0,0,0,0,0, 0,0,0,0,0,5090,5429,333,0,4979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,5090,202,203,5092,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,315,316,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0 ================================================ FILE: maps/hoenn/hoenn-route-106.tmx ================================================ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5203,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,116,116,116,116,116,116,116,116,116,116,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,0,0,0,0,0,0,0,0,116,4978,4978, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,116,116,116,116,116,116,116,116,116,116,116,116,116,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,0,0,0,0,0,0,0,4978,4978,4978,4978, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,116,116,116,116,116,116,116,116,116,116,116,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,0,0,0,0,0,0,116,4978,4978,4978,4978, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,116,116,116,116,116,116,116,116,116,116,116,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,0,0,0,4978,4978,4978,4978,4978,4978 0,0,0,0,0,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,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,2,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,115,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,115,0,117,0,0,0,0,2,3,3,4,0,2,4,0,0,2,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,228,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,229,230,0,0,2,4,115,0,341,230,0,228,230,0,0,228,230,0,0,228,230,0,0,0,0,0,0,2,4,0,0,2,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,228,230,228,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,0,228,230,0,0,228,230,0,2,4,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0,0,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,230,0,2,4,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,4,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4864,4865,4865,4865,4865,4865,4865,4865,4865,4865,4865,4865,4865,4865,4865,4865,4866,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,4864,4865,4865,4865,4865,4865,4865,4865,4865,2,3,3,3,3,3,3,3,3,3,4,0,0,0,0,0,5204,4865,4865,4865,4866,0,0,0,0,0,0,0,0,0,0,0,0,0,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,230,0,0,0,0,0,0,0,0,4864,4865,4865,5203,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,4,117,0,0,0,0,0,0,0,0,0,5204,4865,4865,4865,4865,4865,4866,0,0,0,0,0,0,0,0,0,0,2,3,3, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,4977,0,2,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4979,0,0,0,0,0,0,0,0,0,0,115,0,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,230,0,0,0,4977,2,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,229,229,230,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5204,4865,4865,4866,0,0,0,0,0,0,0,115,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4864,4865,5203,115,115,0,0,0,0,0,0,0,0,0,341,229,229,229,229,229,230,341,229,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4979,0,0,0,2,4,2,3,3,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4977,0,2,3,3,0,0,0,0,0,0,0,341,229,230,0,341,229,229,229,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4979,0,0,0,228,230,115,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4977,2,115,0,0,0,0,0,0,0,0,341,230,341,229,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5204,4865,4866,0,2,3,3,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4977,115,115,0,0,0,0,0,0,0,0,117,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4979,0,115,0,0,0,0,0,0 0,0,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,315,316,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,202,203,0,0,0,0,0,0,0,315,316,0,202,203,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,202,203,0,0,202,203,315,316,315,316,0,0,0,0,0,0,0,0,0,0,315,316,0,202,203,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,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,203,0,315,316,0,0,315,316,0,0,315,316,0,0,0,0,0,0,202,203,0,0,202,203,0,0,0,0,0,315,316,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,315,316,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,315,316,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,203,0,0,0,220,220, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,203,315,316,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,907,0,0,0,0,0,0,0,206,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,221,221, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,315,316,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,333,221, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,220,0,220,221, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,220,220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,0,221,333, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,220,220,220,220,0,0,0,0,0,0,0,0,220,221,333,220,220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,333,220,333,220, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,220,220,220,221,221,221,221,0,0,0,0,0,0,220,220,221,333,220,221,333,220,220,0,0,0,0,0,0,0,0,0,0,0,0,220,220,220,219,220,221, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221,221,221,221,221,221,221,220,220,220,220,220,220,221,221,221,220,221,221,220,221,221,220,0,0,0,0,0,0,0,0,0,0,0,221,221,221,333,221,333 ================================================ FILE: maps/hoenn/hoenn-route-107.tmx ================================================ 4978,4978,4978,4978,4978,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 4978,4978,4978,4978,4978,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 4978,4978,4978,4978,4978,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 4978,4978,4978,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 4978,4978,4978,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 4978,4978,4978,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 4978,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 4978,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 4978,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 4978,4978,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 4978,4978,4978,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 4978,4978,4978,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0,0,0,0,0, 4978,4978,4978,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 4978,4978,4978,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 4978,4978,4978,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 4978,4978,4978,4978,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,117,0,0,0,0,0,0,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,4,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,2,4,228,230,0,0,0,2,4,228,230,0,0,0,0,0,2,4,0,0,0,0, 0,0,0,0,0,0,0,341,229,230,0,0,0,0,0,0,0,0,0,0,2,3,4,0,2,4,0,0,228,230,0,0,0,0,0,0,2,4,228,230,0,0,2,3,4,228,230,0,0,0,0,0,2,4,228,230,2,4,0,0, 0,0,0,0,0,0,0,117,0,0,2,4,0,0,0,0,0,0,0,0,115,0,117,0,228,230,0,0,0,0,0,0,0,0,0,0,228,230,0,0,0,2,3,0,117,0,0,0,0,0,0,0,228,230,0,0,228,230,0,0, 0,0,0,0,0,0,0,117,0,0,228,230,2,4,0,0,0,0,0,0,228,229,230,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,229,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,341,229,230,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 229,229,229,229,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 4865,4865,4865,4865,4865,4866,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,4979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,5204,4866,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,5204,4866,0,0,0,0,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,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,4979,0,2,3,3,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,228,230,0,0,0,0,0,0,0,2,4,2,3,3,4,228,230,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,4979,0,228,229,342,117,0,0,228,230,0,0,0,0,0,0,0,0,0,0,2,4,2,3,4,228,230,2,4,0,0,0,0,0,0,0,2,4,228,230,115,0,0,117,0,0,0,2,4,0,0,0,0, 0,0,0,0,0,0,0,4979,0,0,0,228,230,0,0,0,0,0,0,2,4,0,0,0,0,0,0,228,230,115,0,3,4,0,228,230,0,0,0,0,0,0,0,228,230,0,0,228,229,229,230,0,0,0,228,230,0,0,0,0, 0,0,0,0,0,0,0,4979,0,0,0,0,0,0,0,0,0,0,0,228,230,0,0,2,4,0,0,0,0,228,342,0,117,0,0,0,0,0,2,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,5204,4866,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,0,2,4,0,228,342,117,0,0,0,0,0,228,230,0,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,4979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 220,221,221,221,333,221,221,221,221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,202,203, 221,333,221,221,220,221,333,221,333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,202,203,0,0,0,202,203,315,316, 221,220,221,333,221,221,220,333,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,315,316,0,0, 221,221,221,220,333,333,221,0,0,0,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,202,203,0,0,202,203,315,316,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 333,221,221,221,220,220,221,0,202,203,0,0,0,0,202,203,315,316,202,203,0,0,0,0,0,0,315,316,0,0,315,316,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,333,221,333,221,333,333,0,315,316,0,0,0,0,315,316,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,333,0,333,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,220,220,220,0,220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 220,221,221,333,220,333,220,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 221,221,333,220,221,220,221,315,316,0,0,0,0,202,203,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,202,203,0,0,202,203,0,0, 333,221,220,221,221,221,333,0,0,0,0,0,0,315,316,0,0,315,316,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,315,316,202,203, 220,221,333,221,221,333,220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,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,203,0,0,0,0,0,315,316, 221,221,220,221,221,220,221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0, 221,221,221,221,221,221,221,220,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ================================================ FILE: maps/hoenn/hoenn-route-108.tmx ================================================ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,4975,4975,0,0,0,0,0,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4861,4862,4862,4862,4862,4862,4862,4862,4862,4862,4862,4862,4862,4863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4861,5313,0,0,0,0,2,4,0,0,2,4,0,0,4976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,4861,4862,4862,4863,0,0,0,0,0,0,0,0,0,0,0,0,0,4974,2,4,0,0,0,228,230,0,0,228,230,0,0,4976,0,0,0,4861,4862,4862,4862,4862,4862,4862,4862,4863,0,0,0,0,0,2,4,0,2,4,0,0,0,0, 0,0,4974,2,4,4976,0,0,0,4861,4862,4862,4863,0,0,0,0,0,0,4974,228,230,0,0,0,2,4,0,0,0,0,0,0,4976,0,2,4,4974,0,2,4,0,0,0,0,4976,0,0,0,0,0,228,230,0,228,230,0,0,0,0, 0,0,4974,228,230,4976,0,0,0,4974,2,4,4976,0,0,0,2,4,0,5087,5088,5088,5088,5088,5426,228,230,0,0,0,0,0,0,4976,0,228,230,4974,0,228,230,0,0,0,0,4976,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,5087,5088,5088,5089,0,0,0,4974,228,230,4976,0,0,0,228,230,0,0,0,0,0,0,5087,5426,0,0,0,0,0,0,0,4976,0,0,0,5087,5426,0,0,0,0,0,5427,5089,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,5087,5088,5088,5089,0,0,0,0,0,0,0,0,0,0,0,0,5087,5088,5426,0,0,0,5427,5088,5089,0,0,0,0,5087,5088,5088,5088,5088,5088,5089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5087,5088,5088,5088,5089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,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,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4861,4862,4862,4863,0,0,0,0,0,0,0,0,0,0,0,0, 0,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,230,0,0,0,0,0,0,0,0,0,4861,4862,4862,4863,0,0,0,4861,5313,0,0,5314,4863,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4861,4862,4862,4862,4863,0,0,0,0,0,0,0,0,0,0,0,0,5087,5426,4975,4976,0,0,0,4974,0,0,0,0,4976,0,0,4861,4862,4862,4863,0,0,0,0,0, 0,0,0,0,0,0,0,2,4,0,0,0,0,0,4861,4862,4862,4863,0,5087,5426,4975,4975,4976,0,0,2,4,0,0,2,4,0,0,0,0,0,5087,5088,5089,2,4,0,5087,5088,5088,5088,5088,5089,0,0,4974,2,4,4976,0,0,0,0,0, 0,0,0,0,0,0,0,228,230,2,4,0,0,0,4974,2,4,4976,0,0,5087,5088,5088,5089,0,0,228,230,0,0,228,230,0,2,4,0,0,0,0,0,228,230,0,0,0,0,0,0,2,4,0,4974,228,230,4976,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,228,230,0,0,0,4974,228,230,4976,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,228,230,0,0,0,0,2,4,0,0,0,0,0,0,0,228,230,0,5087,5088,5088,5089,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,5087,5088,5088,5089,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0, 202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,429,0,0,0,0,0,429,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,202,203, 315,316,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,202,203,0,0,0,429,429,0,0,429,0,0,0,429,429,315,316,0,0,0,0,0,0,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,202,203,315,316, 0,202,203,0,0,202,203,315,316,0,0,0,0,0,202,203,0,0,315,316,0,0,0,0,0,0,0,0,2208,2209,2210,2211,429,0,0,0,0,202,203,0,0,0,429,0,429,202,203,315,316,0,0,0,0,0,0,0,315,316,0,0, 0,315,316,0,0,315,316,0,202,203,0,0,202,203,315,316,0,0,0,0,0,0,0,0,0,0,0,2320,2321,2322,2323,2324,2325,0,0,0,0,315,316,0,0,429,0,429,0,315,316,0,0,202,203,0,202,203,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,315,316,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,2433,2434,2435,2436,2437,2438,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,315,316,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2547,2548,2549,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,203,0,0,202,203,0,0,0,0,429,0,0,0,0,0,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,202,203,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,429,0,0,0,0,0,0,315,316,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,203,0,0,202,203,0,0,0,0, 0,315,316,0,0,315,316,0,0,0,0,0,0,202,203,0,0,202,203,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,202,203,0,0,0,202,203,0,0,202,203,0,0,315,316,0,0,315,316,0,0,0,0, 202,203,0,0,0,0,0,0,0,0,0,202,203,315,316,0,0,315,316,0,202,203,0,0,315,316,0,0,0,0,0,0,0,0,0,202,203,315,316,0,0,0,315,316,202,203,315,316,0,0,0,0,0,0,0,0,202,203,202,203, 315,316,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,202,203,315,316,0,0,0,0,0,202,203,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,315,316,0,0,0,0,0,202,203,0,0,0,315,316,315,316, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0 ================================================ FILE: maps/hoenn/hoenn-route-109.tmx ================================================ 0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,0,0,0,0, 0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,0,0,0,0, 0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,0,0,0,0,0,0,0, 0,0,0,116,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,4977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4979,0,0,0, 0,0,0,0,0,0,0,4977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4979,0,0,0, 0,2,4,0,0,0,0,5090,5429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5430,5092,0,0,0, 0,228,230,0,0,0,0,0,4977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4979,0,0,2,4, 0,0,0,0,0,0,0,0,4977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4979,0,0,228,230, 0,0,0,0,0,0,0,0,4977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4979,0,0,2,4, 0,0,2,4,0,0,0,0,4977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5430,5092,0,0,228,230, 0,0,228,230,0,0,0,0,4977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4979,0,0,2,4,0, 0,2,4,0,0,0,0,0,4977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4979,0,0,228,230,0, 0,228,230,0,0,0,0,0,4977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4979,0,0,0,0,0, 0,0,0,0,0,0,0,0,4977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5430,5092,0,0,0,0,0, 0,0,0,0,0,0,0,0,4977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4979,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,5090,5429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4979,0,0,0,2,4,0, 0,0,2,4,0,0,0,0,0,4977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4979,0,0,0,228,230,0, 0,0,115,3,4,0,0,0,0,5090,5429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5430,5092,0,0,0,0,2,4, 0,0,228,229,230,0,0,0,0,0,4977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4979,0,0,0,0,0,228,230, 0,0,0,0,2,4,0,0,0,0,5090,5429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4979,0,0,0,0,0,0,0, 0,0,0,0,228,230,0,0,0,0,0,4977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5430,5091,5092,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,5090,5429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4979,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,4977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5430,5092,0,0,0,0,0,0,0,0,0, 0,0,0,2,4,0,0,0,0,0,0,0,4977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4979,0,0,0,0,0,0,0,2,4,0, 0,0,0,228,230,0,0,0,0,0,0,0,5090,5091,5091,5429,0,0,0,0,0,0,0,0,0,0,0,5430,5091,5092,0,0,0,0,0,0,0,228,230,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4977,0,0,0,0,0,0,0,0,0,0,0,4979,0,0,0,0,0,0,0,0,0,2,3,4, 0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,4977,0,0,0,0,0,0,0,0,0,5430,5091,5092,0,0,0,0,0,0,0,0,2,3,0,117, 0,0,0,0,0,0,228,230,0,0,0,0,0,0,0,5090,5091,5091,5429,0,0,0,0,5430,5091,5092,0,0,0,0,0,0,0,0,0,0,115,0,341,230, 0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,5090,5091,5091,5091,5091,5092,0,0,0,0,0,0,0,0,0,0,0,0,115,0,117,0, 0,0,0,0,0,228,230,0,0,0,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,4,228,229,230,0, 0,0,0,0,2,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,0,0,0, 0,0,0,2,3,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4864,4865,4865,4866,0,0,0,0,0,0,2,4,0,0, 0,0,0,115,0,0,117,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4864,5203,0,0,5204,4865,4866,0,0,0,0,228,230,0,0, 0,0,0,115,0,341,230,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4864,5203,0,0,0,0,0,5204,4865,4866,0,0,0,0,0,0, 0,0,0,228,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4977,0,0,0,0,0,0,0,0,4979,0,0,0,0,0,0, 0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4977,0,0,0,0,0,0,0,0,4979,0,0,0,0,0,0, 0,0,228,230,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4977,0,0,0,0,0,0,0,5430,5092,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5090,5091,5429,0,0,0,5430,5091,5092,0,0,0,0,0,0,0, 0,0,0,0,0,0,2,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5090,5091,5091,5091,5092,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,115,0,117,0,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,4,0,0,0,0, 0,0,0,0,0,0,228,229,230,0,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,230,0,0,0,0, 0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0, 0,0,0,228,230,0,0,0,0,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,230,0,0,0,0,0, 0,0,2,4,0,0,0,4864,4865,4865,4866,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,2,4,0,0,0, 2,4,228,230,0,0,4864,5203,0,0,4979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,0,228,230,0,0,0, 228,230,0,0,0,0,4977,0,0,0,4979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4864,4865,4865,4866,0,0,0,0,0,0,0,0,0,0, 0,0,2,4,0,0,4977,0,0,5430,5092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4864,5203,0,0,4979,0,0,0,0,0,0,0,0,0,0, 0,0,228,230,0,0,5090,5091,5091,5092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4977,0,0,0,5204,4866,0,0,2,4,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4864,5203,0,0,0,0,4979,0,0,228,230,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4977,0,0,0,0,0,4979,0,0,0,2,4,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4977,0,0,0,0,5430,5092,0,0,0,228,230,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5090,5091,5091,5091,5091,5092,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,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,4,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4864,4865,4865,4865,4865,4865,4866,0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4977,0,0,0,0,0,4979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4977,0,0,0,0,0,4979,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,4977,0,0,0,0,0,4979,0,0,0,0,0,0,0,0,0,0,0,2,3,4,0,0,0,0, 0,0,0,0,228,230,0,0,0,0,0,0,0,0,0,4977,0,0,0,0,0,5204,4866,0,0,0,0,0,0,0,0,0,2,3,0,117,0,0,0,0, 0,0,0,0,0,2,4,2,3,4,0,0,0,0,4864,5203,0,0,0,0,0,0,5204,4866,0,0,0,0,0,0,0,0,115,0,341,230,0,0,0,0, 0,0,0,0,0,228,230,115,0,117,0,0,0,0,4977,0,0,0,0,0,0,0,0,4979,0,0,2,4,0,0,0,0,228,229,230,0,0,0,0,0, 0,0,0,0,0,0,0,228,229,230,0,0,0,0,5090,5091,5091,5429,0,0,0,0,5430,5092,0,0,228,230,2,4,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5090,5091,5429,0,5430,5092,0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,5090,5091,5092,0,0,0,0,0,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,230,0,0,0,0,2,4,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316, 315,316,0,0,0,0,0,0,0,0,0,0,0,0,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,203, 0,0,0,0,0,0,0,0,0,0,932,933,933,933,935,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316, 0,0,0,0,0,0,0,0,0,0,1045,1046,1046,1046,1048,0,0,0,0,0,0,0,0,0,2592,2593,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,202,203,0,0,0,0,0,0,1158,1160,1049,1160,1161,0,0,0,2592,2593,0,0,0,0,2705,2706,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,315,316,0,0,0,0,0,0,1266,1268,1162,1268,1270,205,0,0,2705,2706,0,0,0,0,2818,2819,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,3157,3158,0,0,0,0,3157,3158,0,2818,2819,0,3157,3158,0,0,0,0,3157,3158,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,3270,3271,0,0,0,0,3270,3271,0,0,0,0,3270,3271,0,0,0,0,3270,3271,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,2818,2819,2592,2593,0,0,2818,2819,2595,0,0,0,2818,2819,2595,2595,0,0,2818,2819,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,2594,0,2705,2706,0,2595,2595,0,2708,0,0,0,0,0,2708,2708,0,0,0,0,206,0,0,0,0,0,0,202,203,0,0, 0,0,0,202,203,0,0,0,0,2707,0,2818,2819,0,2708,2708,0,2821,0,0,0,0,0,2821,2821,0,0,0,0,0,0,2594,0,0,0,0,315,316,202,203, 0,0,0,315,316,0,0,0,0,2820,0,0,2595,0,2821,2821,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2707,0,0,0,0,0,0,315,316, 0,0,0,0,202,203,0,0,0,0,0,0,2708,0,0,0,3157,3158,0,0,0,0,0,0,0,3157,3158,0,0,0,0,2820,0,0,0,0,0,0,0,0, 0,0,0,0,315,316,0,0,0,0,0,0,2821,0,0,0,3270,3271,0,0,2595,2595,2595,2595,0,3270,3271,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,2931,2932,0,2818,2819,2595,0,2708,2708,2708,2708,0,2818,2819,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,2595,3044,3045,0,0,0,2708,0,2821,2821,2821,2821,0,0,0,2931,2932,2594,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,2708,2818,2819,0,0,0,2821,0,0,0,0,0,0,0,0,3044,3045,2707,0,0,0,0,0,0,0,202,203,0, 0,0,0,0,0,0,0,0,0,0,0,0,2821,0,0,0,2595,2595,0,0,2931,2932,0,2595,0,0,0,2818,2819,2820,0,0,0,0,0,0,0,315,316,0, 0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,2708,2708,0,0,3044,3045,0,2708,0,0,0,0,0,0,0,0,0,0,0,0,202,203,0,0, 0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,2821,2821,0,0,2818,2819,0,2821,0,0,2594,0,0,0,0,0,0,0,0,0,315,316,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2707,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2820,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3157,3158,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3270,3271,0,0,0,0,0,0,202,203,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2818,2819,2594,0,0,0,0,0,315,316,0,0,0, 0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2707,0,0,0,0,0,0,202,203,0,0, 0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2820,0,0,0,0,0,0,315,316,0,0, 0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0, 0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2594,2594,2595,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,203,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2707,2707,2708,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0, 0,0,202,203,0,0,0,0,202,203,0,0,0,0,0,0,2820,2820,2821,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 202,203,315,316,0,0,0,0,315,316,0,0,0,0,0,0,2592,2593,0,0,2595,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2705,2706,0,0,2708,0,0,0,315,316,0,0,0,0,202,203,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2818,2819,0,0,2821,0,0,0,202,203,0,0,0,0,315,316,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,202,203,0,0,0,202,203,0,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,315,316,0,0,0,315,316,0,0,0,0,0,0,0,315,316,0,0,0,0,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,203,202,203,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,315,316,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ================================================ FILE: maps/hoenn/hoenn-route-110.tmx ================================================ 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,114,0, 0,0,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,116,116,116,114,0, 0,0,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,116,116,116,116,114,0, 0,0,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,116,116,116,116,114,0, 0,0,114,114,114,114,114,0,0,0,0,0,0,0,0,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,116,116,116,116,114,0, 0,0,114,114,114,114,114,0,0,0,0,0,0,0,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,0, 0,0,114,114,114,114,114,0,0,0,0,0,0,0,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,0, 0,0,114,114,114,114,114,0,0,0,0,0,0,0,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,0, 0,0,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,0, 0,0,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,0,0, 0,0,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,0,0, 0,0,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,0,0, 0,0,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0, 0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0, 0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0, 0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0, 0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,0,0,0,114,114,114,114,114,114,114,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,0,0,0,114,114,114,114,114,114,114,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,0,0,0,114,114,114,114,114,114,114,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,0,0,0, 116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,0,0,0, 116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,0,0,0, 116,116,116,116,116,116,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,0,0,0, 116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,0,0,0, 116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0, 114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4636,4522,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,0, 4411,0,0,0,0,0,0,0,0,0,0,0,0,0,2491,2493,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,0, 4524,0,0,0,0,0,0,0,0,0,0,0,0,2491,2605,2606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,0, 4524,0,0,0,0,0,0,0,0,0,0,0,0,2604,2605,2606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,0, 4524,0,0,0,0,0,0,0,0,0,0,0,2491,2605,2605,2606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,0, 4524,0,0,0,0,0,0,0,0,0,0,0,2604,2605,2605,2719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,0, 4524,0,0,0,0,0,0,0,0,0,0,2491,2605,2605,2606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,0, 4524,0,0,0,2837,2498,2498,2498,2838,0,0,2604,2605,2605,2719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,0, 4524,0,0,0,1811,1812,1812,1812,1813,2491,2492,2605,2605,2606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,0, 4524,0,0,0,0,0,0,2491,2492,2605,2605,2605,2605,2606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4636,4636,4522, 4524,0,0,0,0,0,2491,2605,2605,2718,2718,2718,2718,2719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522, 4524,0,0,0,0,2491,2605,2605,2719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522, 4524,0,0,0,0,2717,2718,2719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522, 4524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522, 4524,0,0,0,0,0,0,0,0,0,0,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,3,3,4,4522, 4524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,117,4522, 4637,4411,0,0,0,0,0,4409,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4411,2,3,3,0,0,117,4522, 0,4524,0,0,0,0,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,115,2,3,3,4,117,4522, 0,4524,0,0,0,95,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,115,115,0,0,117,117,4522, 0,4524,0,0,0,0,0,4522,0,0,0,0,0,0,4524,4636,4636,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,115,228,456,229,230,117,4522, 0,4524,0,95,0,0,0,4522,0,0,0,0,0,4524,4636,0,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,228,229,569,229,229,230,4522, 0,4524,0,0,0,95,0,4522,0,0,0,0,0,4524,0,0,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,659,0,0,0,0,0,4522, 0,4524,0,0,0,0,0,4522,0,0,0,0,0,4524,0,0,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,0,0,0,0,0,0,4522, 0,4524,0,95,0,95,0,4522,0,0,0,0,0,4637,4410,4410,4410,4635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,0,659,0,0,0,0,4522, 0,4524,0,0,95,0,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,0,0,0,0,0,4409,4635, 0,4524,0,95,0,95,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4637,4411,0,0,0,0,4522,0, 0,4524,0,0,95,95,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,0,0,0,0,4522,0, 0,4524,0,95,95,95,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4637,4410,4410,4410,4410,4635,0, 0,4524,0,0,95,95,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,4524,0,95,95,95,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,4524,0,95,95,95,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,4524,0,95,0,95,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,4524,0,95,95,95,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,4524,0,95,95,0,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,4524,0,95,95,0,0,4636,4636,4636,4636,4636,4636,4636,4636,4636,4636,4636,4636,4636,4636,4636,4636,4636,4636,4636,4636,4636,4636,4636,4636,4636,4636,4636,4636,4636,4636,4636,4522,0, 0,4524,0,95,95,0,0,0,0,0,0,0,0,0,0,0,0,95,95,0,95,0,95,0,0,95,95,0,95,0,95,95,95,0,95,0,95,0,4522,0, 0,4524,0,95,95,95,95,95,95,0,0,0,0,0,0,0,0,0,0,95,0,0,95,95,95,95,0,95,0,95,0,95,95,95,95,95,95,0,4522,0, 0,4524,0,95,95,95,95,95,95,95,0,0,0,0,0,0,95,0,95,0,0,95,95,95,0,95,95,95,95,95,95,95,95,95,95,95,95,0,4522,0, 0,4524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,95,95,95,95,0,4522,0, 0,4637,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4411,0,95,95,95,95,95,0,4522,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,0,0,95,95,95,95,0,4522,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,0,95,0,95,95,0,0,4522,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,4636,4636,4636,4522,0,4524,0,95,95,95,95,95,0,4522,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,0,0,0,4522,0,4524,0,95,95,0,95,0,0,4522,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4637,4411,0,0,4522,0,4524,0,95,0,95,0,95,0,4522,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4637,4410,4410,4635,0,4524,0,0,95,95,95,95,0,4522,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,0,0,0,95,0,0,0,4522,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4637,4411,0,95,0,95,0,4409,4635,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,0,95,95,0,0,4522,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,0,95,0,95,0,4522,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,0,0,95,0,0,4522,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,0,95,0,95,0,4522,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,0,0,0,0,0,4522,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,0,0,0,0,0,4522,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,0,95,95,0,0,4522,0,0, 3,3,3,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,0,95,0,95,0,4522,0,0, 0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,0,0,0,0,0,4522,0,0, 2,3,3,4,3,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,0,95,0,95,0,4522,0,0, 115,0,0,3,3,4,117,0,0,0,0,0,0,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,0,0,95,0,0,4522,0,0, 228,229,229,229,229,230,117,0,0,0,0,0,0,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,0,95,0,95,0,4522,0,0, 229,229,229,229,229,229,230,0,0,0,0,0,0,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,0,95,95,0,0,4522,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4636,95,95,95,0,95,0,0,4522, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,0,95,95,95,95,0,4522, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,95,95,95,95,0,0,4522, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,4636,4636,4636,4636,4636,4636,4636,4636,4636,4636,4636,4636,4636,4636,4636,4636,95,95,95,95,95,95,95,95,0,4522, 2492,2492,2492,2492,2492,2492,2492,2492,2492,2492,2493,0,0,0,0,0,0,0,0,0,0,0,0,95,95,0,95,95,95,95,0,95,0,95,0,95,95,95,0,4522, 2718,2718,2718,2718,2718,2718,2718,2718,2605,2605,2605,2493,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,95,0,95,95,95,95,95,95,95,0,0,0,4522, 0,0,0,0,0,0,0,0,2604,2605,2605,2719,0,0,0,0,0,0,0,0,0,0,95,0,0,0,95,0,95,95,0,0,0,95,95,95,0,0,0,4522, 0,0,0,0,0,0,0,0,2604,2605,2606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522, 0,0,0,0,0,0,0,0,2604,2605,2606,0,4409,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4635, 0,0,0,0,0,0,0,0,2604,2605,2606,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,2604,2605,2606,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,2604,2605,2606,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,2604,2605,2606,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,2604,2605,2606,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,2604,2605,2606,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,2604,2605,2606,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,2604,2605,2606,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,2604,2605,2606,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,2604,2605,2606,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,2604,2605,2606,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,2604,2605,2606,0,4636,4636,4636,4636,4636,4636,4636,4636,4636,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,2604,2605,2606,0,0,0,0,0,0,0,0,0,0,4636,4636,4636,4636,4636,4636,4636,4636,4636,4636,4636,4636,4636,4636,4636,4636,4636,4522,0, 0,0,0,0,0,0,0,0,2604,2605,2606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0, 0,0,0,0,0,0,0,0,2604,2605,2606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0, 0,0,0,0,0,0,0,0,2604,2605,2606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0, 0,0,0,0,0,0,0,0,2604,2605,2606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0, 0,0,0,0,0,0,0,0,2604,2605,2605,2492,2492,2492,2492,2493,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0, 0,0,0,0,0,0,0,0,2717,2718,2718,2718,2718,2605,2605,2605,2492,2493,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0, 0,0,0,0,0,0,0,0,0,95,95,95,95,2717,2718,2718,2605,2606,0,0,0,0,0,0,659,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0, 0,0,0,0,0,0,0,0,0,95,95,95,95,95,0,0,2604,2606,0,0,0,0,0,0,0,659,0,659,0,659,0,0,0,0,0,0,0,0,4522,0, 0,0,0,0,0,0,0,0,0,0,95,95,95,95,95,0,2604,2606,0,0,0,0,0,0,659,0,659,0,659,0,0,0,0,0,0,0,0,0,4522,0, 0,0,0,0,0,0,0,0,0,0,0,95,95,95,95,0,2604,2605,2493,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,0,2717,2605,2606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2604,2606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4409,4410,4635,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2717,2719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3149,3149,3149,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3149,3149,3149,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3149,3149,3149,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3149,3149,3149,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3149,3149,3149,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3149,3149,3149,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3149,3149,3149,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3149,3149,3149,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,3149,3149,3483,3483,3488,3488,3488,3488,3488,3488,3488,3488,3488,3488,3488,3488,3149,3149,3149,3149,3149,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,3149,3149,3149,3483,3488,3488,3488,3488,3488,3488,3488,3488,3488,3488,3488,3488,3483,3149,3149,3149,3149,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,3149,3149,3149,3149,3149,3149,3149,3149,3149,3149,3149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,3149,3149,3149,3149,3149,3149,3149,3149,3149,3149,3149,3149,3149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,3149,3149,3149,3149,3149,3149,3149,3149,3149,3149,3149,3149,3149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,3149,3149,3149,3149,3149,3149,3149,3149,3149,3149,3149,3149,3149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,3149,3149,3149,3149,3149,3149,3149,3149,3149,3149,3149,3149,3149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,3149,3149,3149,3149,3149,3149,3149,3149,3149,3149,3149,3149,3149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,3149,3149,3149,3149,3149,3149,3149,3149,3149,3149,3149,3149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3149,3149,3149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3149,3149,3149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3149,3149,3149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3149,3149,3149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3149,3149,3149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3149,3149,3149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3149,3149,3149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3149,3149,3149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3149,3149,3149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3149,3149,3149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3149,3149,3149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3149,3149,3149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3149,3149,3149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3149,3149,3149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3149,3149,3149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3149,3149,3149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3149,3149,3149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3149,3149,3149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3149,3149,3149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3149,3149,3149,3488,3488,3488,3488,3488,3488,3488,3488,3488,3488,3488,3033,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,3149,3149,3149,3488,3488,3488,3488,3488,3488,3488,3488,3488,3488,3488,3488,3149,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3488,3149,3149,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3149,3149,3149,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3149,3149,3149,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3149,3149,3149,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3149,3149,3149,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3030,3149,3149,3149,3149,3149,3149,3149,3149,3149,3149,3149,3149,3033,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3149,3149,3149,3149,3149,3149,3149,3149,3149,3149,3149,3149,3149,3149,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3149,3149,3149,3149,3149,3149,3149,3149,3149,3149,3149,3149,3149,3149,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3149,3149,3149,3149,3149,3149,3149,3149,3149,3149,3149,3149,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 219,219,219,219,219,219,219,219,219,218,331,2016,0,0,0,0,0,0,0,2014,219,219,219,219,219,219,219,219,218,219,219,219,219,219,219,219,0,0,0,0, 219,219,219,219,219,219,219,219,219,219,2016,2129,0,0,0,0,0,0,0,2014,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,0,0,0,0, 219,219,219,219,219,219,219,219,219,219,2016,0,0,0,0,0,0,0,1901,2018,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,0,0,0,0, 219,219,219,219,219,219,219,219,219,219,2016,0,0,0,0,0,0,0,2014,0,331,331,331,219,219,219,219,219,219,219,219,219,219,219,219,219,218,0,0,0, 331,219,219,219,219,219,219,219,219,331,2016,0,0,0,0,0,0,1901,2018,0,0,0,0,331,331,331,331,331,331,331,331,331,331,331,219,219,219,0,0,0, 0,219,219,219,219,219,219,219,219,2016,2129,0,0,0,0,0,0,2014,2916,2917,2918,2918,2918,2918,2918,2918,2918,2918,2918,2918,2918,2918,2920,2921,219,219,219,0,0,0, 0,219,219,219,219,219,219,219,219,2016,0,0,0,0,0,0,0,2014,3029,3030,3149,3149,3149,3149,3149,3149,3149,3149,3149,3149,3149,3149,3033,3034,219,219,219,0,0,0, 0,219,219,219,219,219,219,219,219,2016,0,0,0,0,0,0,0,2014,3255,3149,3149,3149,3149,3149,3149,3149,3149,3149,3149,3149,3149,3149,3149,3260,219,219,219,0,0,0, 0,219,219,219,219,219,219,219,219,2016,0,0,0,0,0,0,0,2014,3368,3149,3149,3149,3149,3149,3149,3149,3149,3149,3149,3149,3149,3149,3149,3373,331,219,219,0,0,0, 0,219,219,219,219,219,219,219,219,2016,0,0,0,0,0,0,0,2014,3481,3482,3149,3149,3149,3149,3149,3149,3149,3149,3149,3149,3149,3149,3485,3486,0,219,219,0,0,0, 0,219,219,219,331,331,331,331,331,2017,0,0,0,0,0,0,0,2014,3594,3595,3487,3149,3149,3489,3596,3487,3149,3149,3149,3489,3596,3596,3598,3599,0,219,219,0,0,0, 0,219,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,2014,3707,3708,3600,3488,3488,3602,3710,3600,3149,3149,3149,3602,3710,3709,3711,3712,218,219,219,0,0,0, 0,219,219,219,0,0,0,0,0,0,0,0,0,0,4204,4205,4205,4205,4205,4208,3713,3488,3488,3715,0,3713,3149,3149,3149,3715,218,3822,218,218,219,219,219,0,0,0, 0,219,219,219,0,0,0,0,0,0,0,0,0,0,4317,4318,4318,4318,4318,4321,3826,3488,3488,3828,0,3265,3149,3149,3149,3266,219,3935,331,331,219,219,219,218,218,0, 0,219,219,219,0,0,0,0,0,0,0,0,0,0,4430,4431,4431,4431,4431,4434,1902,0,0,1902,1902,3265,3149,3149,3149,3266,331,1902,1902,1902,219,219,219,219,219,0, 0,219,219,219,0,0,0,0,0,0,0,0,0,0,4543,4544,4545,4545,4544,4547,0,0,0,0,218,3265,3149,3149,3149,3266,0,0,0,218,219,219,219,219,219,0, 0,219,219,331,0,0,0,0,0,0,0,0,0,205,4656,3640,4658,4658,3640,4660,0,0,0,218,219,3265,3149,3149,3149,3266,218,0,0,219,219,219,219,219,219,0, 0,219,219,205,0,0,0,0,0,0,0,0,0,0,0,0,0,2014,0,0,0,0,218,219,219,3265,3149,3149,3149,3266,219,218,218,219,219,331,331,331,331,0, 0,219,219,0,0,0,0,0,218,218,0,218,0,0,0,218,218,2014,0,0,0,0,331,219,219,3265,3149,3149,3149,3266,219,219,219,219,219,0,0,0,0,0, 0,331,331,0,0,0,0,0,331,331,0,331,0,0,0,331,331,2127,1902,1902,1902,1902,1902,331,331,3378,3149,3149,3149,3379,331,331,331,331,331,0,0,0,0,0, 0,0,3410,0,0,0,3412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3491,3149,3149,3149,3492,0,0,0,0,0,0,0,0,0,0, 0,0,3410,0,0,0,3412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3604,3149,3149,3149,3605,0,0,0,0,0,0,0,0,0,0, 0,0,3410,0,0,0,3412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3717,0,0,0,3718,0,0,0,0,0,0,0,0,0,0, 0,0,3410,0,0,0,3412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3265,0,0,0,3266,0,0,0,0,0,0,0,0,0,0, 0,0,3410,0,0,0,3412,0,0,0,0,0,0,0,0,216,217,0,0,0,0,0,0,0,0,3265,0,0,0,3266,0,0,0,0,0,0,218,218,0,0, 0,0,3410,0,0,0,3412,0,0,0,0,0,0,0,206,329,330,0,0,0,0,0,0,0,0,3265,0,0,0,3266,0,0,0,0,0,0,219,219,218,0, 0,0,3410,0,0,0,3412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3265,0,0,0,3266,0,0,0,0,0,0,219,219,219,0, 0,0,3410,0,0,0,3412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3265,0,0,0,3037,0,0,0,0,0,218,219,219,331,0, 0,0,3410,0,0,0,3412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3035,0,0,0,3150,2920,2921,0,0,218,219,219,219,0,0, 0,0,3410,0,0,0,3412,0,2916,2917,2918,2918,2918,2918,2918,2918,2918,2918,2918,2918,2918,2918,2918,2918,2918,3148,0,0,0,3149,3033,3034,0,0,219,219,219,219,0,0, 0,0,3410,0,0,0,3412,0,3378,3030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3146,2814,0,0,331,331,331,331,0,0, 0,0,3410,0,0,0,3412,0,3491,3482,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2927,0,0,0,202,203,0,0,0, 0,0,3410,0,0,0,3412,0,3038,3595,3487,3149,3149,3149,3489,3596,3596,3596,3596,3596,3596,3596,3596,3596,3596,3596,3596,3596,3596,3596,3598,3264,0,0,0,315,316,202,203,0, 0,0,3410,0,0,0,3412,0,3151,3708,3600,3149,3149,3149,3602,3710,3710,3710,3490,3710,3710,3710,3710,3710,3490,3710,3710,3710,3710,3710,3711,3377,0,0,0,0,0,315,316,0, 0,0,3410,0,0,0,3412,0,0,0,3713,3149,3149,3149,3715,0,0,0,3603,0,0,0,0,0,3603,0,0,0,0,0,0,0,0,0,0,0,0,0,202,203, 0,0,3410,0,0,0,3412,0,0,0,3265,3149,3149,3149,3266,0,0,0,3716,0,0,0,0,0,3716,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316, 0,0,3410,0,0,0,3412,0,0,0,3265,3149,3149,3149,3266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,203,0, 0,0,3410,0,0,0,3412,0,0,0,3265,3149,3149,3149,3266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0, 0,0,3410,0,0,0,0,3298,3298,3298,3298,0,0,0,3298,3298,3298,3298,3298,3298,3298,3298,3298,3298,3298,3298,3298,3298,3298,3298,3298,3298,3298,3298,3298,3298,3298,3299,0,0, 0,0,3410,0,0,0,0,0,0,0,3265,3149,3149,3149,3266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,206,0,0,0,3412,0,0, 0,0,3410,0,0,0,0,0,0,0,3265,3149,3149,3149,3266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3412,0,0, 0,0,3410,0,0,0,0,0,0,0,3265,3149,3149,3149,3266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3412,0,0, 0,0,3523,3524,3524,3524,3524,3524,3524,3524,3378,3149,3149,3149,3379,3524,3524,3524,3524,3524,3524,3524,3524,3524,3524,3524,3524,3524,3524,3524,3524,0,0,0,0,0,0,3412,0,0, 0,0,0,0,0,0,0,0,0,0,3491,3149,3149,3149,3492,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,3410,0,0,0,0,0,3412,0,0, 0,0,0,0,0,202,203,0,0,0,3604,3149,3149,3149,3605,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,3410,0,0,0,0,0,3412,0,0, 0,0,0,0,0,315,316,0,0,0,3717,3149,3149,3149,3718,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,3410,0,0,0,0,0,3412,0,0, 0,0,0,0,202,203,0,0,0,0,3142,3149,3149,3149,3266,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,3410,0,0,0,0,0,3412,0,0, 0,0,202,203,315,316,0,0,0,0,3142,3149,3149,3149,3266,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,3410,0,0,0,0,0,3412,0,0, 202,203,315,316,0,0,0,0,0,0,3142,3149,3149,3149,3266,0,0,0,315,316,202,203,0,0,0,0,0,0,0,0,0,3410,0,0,0,0,0,3412,0,0, 315,316,0,0,0,0,0,0,0,0,3035,3149,3149,3149,3037,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,3410,0,0,0,0,0,3412,0,0, 0,202,203,0,0,0,0,2916,2917,2918,3148,3149,3149,3149,3150,2918,2918,2918,2918,2918,2920,2921,202,203,0,0,0,0,0,0,0,3523,0,0,0,0,0,3525,0,0, 0,315,316,0,0,0,0,3029,3030,0,0,0,0,0,0,0,0,0,0,0,3033,3034,315,316,0,0,0,0,0,0,0,0,3410,0,0,0,3412,0,0,0, 0,0,202,203,0,0,0,3142,0,0,0,0,0,0,0,0,0,0,0,0,0,3147,0,202,203,0,0,0,0,0,0,0,3410,0,0,0,3412,0,0,0, 0,0,315,316,0,0,0,2813,0,0,0,0,0,0,0,0,0,0,0,0,0,2814,0,315,316,0,0,0,0,0,0,0,3410,0,0,0,3412,0,0,0, 0,202,203,0,0,0,0,2926,0,0,0,0,0,0,0,0,0,0,0,0,0,2927,0,202,203,0,0,0,0,0,0,0,3410,0,0,0,3412,0,0,0, 0,315,316,0,0,0,0,3039,0,0,0,0,0,0,0,0,0,0,0,0,0,3040,0,315,316,0,0,0,0,0,0,0,3410,0,0,0,3412,0,0,0, 202,203,0,0,0,0,0,3152,0,0,0,0,0,0,0,0,0,0,0,0,0,3153,0,0,202,203,0,0,0,0,0,0,3410,0,0,0,3412,0,0,0, 315,316,202,203,0,0,0,3142,0,0,0,0,0,0,0,0,0,0,0,0,3485,3147,0,0,315,316,0,0,0,0,0,0,3410,0,0,0,3412,0,0,0, 0,0,315,316,0,0,0,3820,3595,3596,3596,3596,3596,3596,3596,3487,0,0,0,3489,3598,3825,0,202,203,0,0,0,0,0,0,0,3410,0,0,0,3412,0,0,0, 0,0,0,0,0,0,0,3707,3708,3710,3710,3490,3710,3710,3710,3600,0,0,0,3602,3711,3712,0,315,316,0,0,0,0,0,0,0,3410,0,0,0,3412,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,3603,0,0,0,3713,0,0,0,3715,0,0,0,202,203,0,0,0,0,0,0,0,3410,0,0,0,3412,0,0,0, 0,0,0,0,0,0,0,0,0,0,3300,3301,3305,0,0,3265,0,0,0,3266,0,0,0,315,316,0,0,0,0,0,0,0,3410,0,0,0,3412,0,0,0, 0,0,0,0,0,0,0,218,218,3300,3414,3414,3414,3305,0,3265,0,0,0,3266,0,0,202,203,0,0,0,0,0,0,0,0,3410,0,0,0,3412,0,0,0, 0,0,0,0,0,0,0,219,219,3413,3413,3414,3418,3418,0,3378,0,0,0,3379,0,0,315,316,0,0,0,0,0,0,0,0,3410,0,0,0,3412,0,0,0, 218,218,218,218,218,218,218,219,219,3413,3532,3533,3535,3418,0,3491,0,0,0,3492,0,202,203,0,0,0,0,0,0,0,0,0,3410,0,0,0,3412,0,0,0, 219,219,219,219,219,219,219,219,331,3532,3534,3527,3534,3535,0,3604,0,0,0,3605,0,315,316,0,0,0,0,0,0,0,3297,0,0,0,0,0,0,3298,3299,0, 331,331,331,331,219,219,219,331,0,3645,3647,3640,3647,3648,0,3717,0,0,0,3718,0,0,202,203,0,0,0,0,0,0,3410,0,0,0,0,0,0,0,3412,0, 0,0,0,0,331,331,331,0,205,0,0,0,0,3412,0,3265,0,0,0,3266,0,0,315,316,0,0,0,0,0,0,3410,0,0,0,0,0,0,0,3412,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,3298,3298,0,0,0,3298,3298,3298,3298,3298,3298,3298,0,0,3298,3298,0,0,0,0,0,0,0,0,3412,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3265,0,0,0,3266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3412,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3265,0,0,0,3266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3412,0, 218,218,218,218,218,218,0,0,0,0,0,0,0,0,0,3378,0,0,0,3379,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3412,0, 219,219,219,219,219,219,218,218,0,0,0,0,3524,3524,3524,3491,0,0,0,3492,3524,3524,3524,3524,3524,3524,3524,3524,3524,3524,3524,0,0,0,0,3524,3524,3524,3525,0, 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,3604,0,0,0,3605,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,203,0,0, 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,3717,0,0,0,3718,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0, 219,219,219,219,219,219,219,331,0,0,0,0,0,0,0,3035,0,0,0,3037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,203,0,0, 219,219,219,219,219,219,219,218,0,0,0,2014,0,2916,2917,3148,0,0,0,3150,2918,2918,2918,2918,2918,2918,2918,2918,2918,2920,2921,0,0,0,0,0,315,316,202,203, 219,219,219,219,219,219,219,219,0,0,0,2014,0,2813,3030,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2814,0,0,0,0,0,0,0,315,316, 219,219,219,219,219,219,219,331,0,0,0,2014,0,2926,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2927,0,0,0,0,0,0,0,202,203, 219,219,219,219,219,219,219,205,0,0,0,2014,0,3038,3595,3596,3596,3596,3596,3596,3596,3596,3596,3596,3596,3596,3487,0,0,0,3040,0,0,0,0,0,0,0,315,316, 219,219,219,219,219,219,219,0,0,0,0,2014,0,3151,3708,3710,3710,3490,3710,3710,3710,3710,3490,3710,3710,3710,3600,0,0,0,3153,0,0,0,0,0,0,202,203,0, 219,219,219,219,219,219,219,0,0,0,0,2014,0,0,0,0,0,3603,0,0,0,0,3603,0,0,0,3713,0,0,0,3147,0,0,0,0,0,0,315,316,0, 219,219,219,219,219,219,219,0,0,0,0,2014,0,0,0,0,0,3716,0,0,0,0,3716,0,0,0,3824,0,0,0,3824,0,0,0,0,0,0,0,202,203, 219,219,219,219,219,219,219,0,0,0,0,2014,0,0,0,0,0,0,0,0,0,2916,2917,2918,2918,2918,3937,0,0,0,3937,2918,2918,2918,2918,2920,2921,0,315,316, 219,219,219,219,219,219,219,0,0,0,0,2014,0,0,0,4204,4205,4205,4205,4205,4208,3029,3030,0,0,0,0,0,0,0,0,0,0,0,0,3033,3034,0,202,203, 219,219,219,219,219,219,219,0,0,0,0,2127,1902,1902,1902,4317,4318,4318,4318,4318,4321,3255,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3260,218,315,316, 219,219,219,219,219,219,219,218,0,0,0,0,0,0,0,4430,4431,4431,4431,4431,4434,3368,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3373,219,0,0, 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,4543,4544,4545,4545,4544,4547,3481,3482,0,0,0,0,0,0,0,0,0,0,0,0,3485,3486,219,0,0, 219,219,219,219,219,219,219,219,0,0,0,0,0,0,205,4656,3640,4658,4658,3640,4660,3594,3595,3596,3596,3596,3596,3487,3149,3149,3489,3596,3596,3596,3596,3598,3599,219,0,0, 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0,0,0,2014,0,0,3707,3708,3709,3710,3710,3710,3600,3488,3488,3602,3710,3710,3710,3709,3711,3712,219,0,0, 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0,0,0,2014,0,0,0,0,3822,0,0,0,3713,3488,3488,3715,0,0,0,3822,0,218,219,0,0, 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0,0,0,2014,0,0,0,0,3935,0,0,0,3826,3488,3488,3828,2014,0,0,3935,0,219,219,0,0, 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0,0,0,2014,0,0,0,0,0,0,0,0,0,0,0,0,2127,1902,1902,1902,218,219,219,0,0, 219,219,219,219,219,219,219,219,218,0,0,0,0,0,0,0,0,0,2127,1902,1902,1902,1902,2014,0,0,0,0,0,0,0,0,205,0,0,219,219,219,0,0, 219,219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0,0,0,0,205,0,0,2014,0,0,0,0,0,0,0,0,0,0,218,219,219,219,0,0, 219,219,219,219,219,219,219,219,219,218,0,0,0,0,0,0,0,0,0,0,0,0,0,2014,0,0,0,0,0,0,0,0,0,218,219,219,219,219,0,0, 219,219,219,219,219,219,219,219,219,219,218,0,0,0,0,0,0,0,0,0,0,0,0,2127,1902,1902,218,218,218,218,218,218,218,219,219,219,219,219,0,0, 219,219,219,219,219,219,219,219,219,219,219,218,218,0,0,0,0,0,0,0,0,0,0,218,218,218,219,219,219,219,219,219,219,219,219,219,331,331,0,0, 219,219,219,219,219,219,219,219,219,219,219,219,219,218,218,0,0,0,0,0,0,218,218,219,219,219,219,219,219,219,219,219,219,219,219,219,0,0,0,0, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,0,0,0,0,0,218,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,3265,3149,3149,3149,3266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3265,0,0,0,3266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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: maps/hoenn/hoenn-route-111.tmx ================================================ 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 114,114,114,114,0,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116, 116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116, 116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116, 116,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 114,114,114,114,114,0,0,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,2605,2605,2605,2605,2605,2605,116,116,116,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,0,0,116,116,116,116,116,116,116,116,116,116,116,116,116,0,2605,2605,2605,2605,2605,2605,2605,116,116,116,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,0,0,0,0,0,2605,2605,2605,2605,2605,2605,2605,2605,116,116,116,116,116, 116,116,116,116,116,116,114,114,114,114,114,114,114,114,2605,2605,2605,2605,2605,0,4187,2605,2605,2605,4187,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,0,116,116,116,116, 116,116,116,116,116,116,116,116,114,114,114,114,114,114,0,0,0,0,2605,2605,2605,2605,2605,2605,4187,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,116,116,116,116, 116,116,116,116,116,116,116,116,2605,114,114,114,114,2605,2605,2605,2605,2605,2605,4187,2605,2605,2605,2605,4187,2605,2605,2605,2605,4187,2605,2605,2605,2605,2605,116,116,116,116,116, 116,116,116,116,116,116,116,116,2605,114,114,114,2605,2605,2605,2605,2605,2605,2605,4187,4187,2605,2605,4187,2605,2605,2605,2605,2605,0,2605,2605,2605,2605,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,2605,114,114,114,2605,2605,2605,2605,2605,2605,4187,4187,4187,4187,4187,4187,4187,2605,2605,2605,2605,2605,2605,2605,2605,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,2605,114,114,2605,2605,2605,2605,2605,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,2605,2605,2605,2605,2605,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,2605,2605,2605,2605,2605,2605,2605,2605,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,2605,2605,2605,2605,2605,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,2605,2605,2605,2605,2605,2605,2605,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,2605,2605,2605,2605,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,2605,2605,0,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,4187,4187,4187,4187,0,4187,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,4187,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,4187,4187,4187,4187,4187,4187,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,4187,4187,4187,4187,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,4187,4187,4187,4187,4187,4187,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,4187,4187,4187,4187,4187,4187,4187,4187,4187,2605,2605,2605,2605,2605,2605,2605,2605,2605,4187,4187,4187,4187,4187,4187,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,2605,2605,2605,2605,2605,2605,2605,2605,4187,4187,4187,4187,4187,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,2605,2605,2605,2605,2605,2605,2605,2605,4187,4187,4187,4187,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,2605,2605,2605,2605,2605,2605,2605,2605,4187,4187,4187,4187,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,2605,2605,2605,2605,2605,2605,2605,2605,4187,4187,4187,4187,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,2605,2605,2605,2605,2605,2605,4187,4187,4187,4187,4187,4187,116,116,116, 116,116,116,116,116,116,116,116,116,116,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,2605,2605,2605,2605,4187,4187,4187,4187,4187,4187,116,116,116, 116,116,116,116,116,116,116,116,116,116,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,2605,2605,2605,2605,2605,2605,4187,4187,4187,4187,4187,4187,116,116,116, 116,116,116,116,116,116,116,116,116,116,4187,4187,4187,4187,4187,4187,4187,4187,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,4187,4187,4187,4187,4187,4187,116,116,116, 116,116,116,116,116,116,116,116,116,116,4187,4187,4187,4187,4187,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,4187,2605,2605,2605,2605,4187,0,116,116, 116,116,116,116,116,116,116,116,116,116,4187,4187,4187,4187,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,4187,2605,2605,2605,2605,2605,4187,116,116, 116,116,116,116,116,116,116,116,116,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,4187,2605,2605,2605,2605,2605,4187,116,116, 116,116,116,116,116,116,116,116,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,4187,116,116, 0,0,0,0,0,0,0,2605,2605,2605,2605,2605,2605,2605,2605,2605,116,116,2605,2605,2605,2605,2605,4187,4187,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,4187,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,2605,2605,2605,2605,116,116,2605,2605,2605,2605,2605,4187,4187,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,4187,4187,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,2605,116,116,2605,2605,2605,2605,2605,4187,4187,4187,2605,2605,2605,2605,2605,2605,2605,2605,2605,4187,4187,4187,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,2605,2605,2605,2605,4187,4187,4187,4187,4187,4187,4187,4187,4187,2605,2605,4187,4187,4187,4187,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,2605,2605,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,0,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,2605,2605,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,2605,2605,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,2605,2605,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,2605,2605,4187,4187,4187,4187,4187,4187,4187,4187,4187,2605,2605,4187,4187,4187,4187,4187,4187,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,2605,2605,4187,4187,4187,4187,4187,4187,4187,2605,2605,2605,2605,4187,4187,4187,4187,4187,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,2605,2605,4187,4187,4187,4187,4187,4187,4187,2605,2605,2605,2605,4187,4187,4187,4187,4187,116, 116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,116,116,116,116,2605,2605,4187,4187,4187,4187,4187,4187,4187,4187,2605,2605,2605,2605,4187,4187,4187,4187,116, 116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,116,116,116,116,116,2605,2605,2605,2605,4187,4187,4187,4187,4187,4187,2605,2605,2605,2605,4187,4187,4187,4187,116, 116,116,116,116,116,116,116,2602,114,114,114,114,114,114,114,114,116,116,116,116,116,2605,2605,2605,2605,0,4187,4187,4187,4187,4187,4187,2605,2605,4187,4187,4187,4187,4187,116, 116,116,116,116,116,116,116,2602,2602,114,114,114,114,114,114,116,116,116,116,116,116,2605,2605,2605,2605,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,116, 116,116,116,116,116,116,116,2602,2602,0,114,114,114,114,114,116,116,116,116,116,116,2605,2605,0,4187,4187,4187,4187,0,0,4187,4187,4187,4187,4187,4187,4187,0,2605,116, 116,116,116,116,116,116,116,2602,2602,0,114,114,114,114,116,116,116,116,116,116,116,2605,2605,0,4187,4187,4187,0,2605,2605,0,4187,4187,4187,4187,4187,4187,0,2605,116, 116,116,116,116,116,116,116,2602,2602,0,114,114,114,114,116,116,116,116,116,116,116,2605,2605,0,4187,4187,4187,0,2605,2605,0,4187,4187,4187,4187,4187,2605,2605,2605,116, 116,116,116,116,116,116,0,2602,2602,114,114,114,114,114,116,116,116,116,116,116,116,2605,2605,0,4187,4187,4187,0,2605,0,4187,4187,4187,4187,4187,4187,2605,2605,2605,116, 116,116,116,116,116,116,0,2602,2602,114,114,114,114,114,116,116,116,116,116,116,116,2605,2605,4187,4187,4187,4187,4187,0,4187,4187,4187,4187,4187,4187,4187,2605,2605,2605,116, 116,116,116,116,116,116,0,2602,2602,114,114,114,114,114,116,116,116,116,116,116,2605,2605,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,4187,2605,2605,2605,116, 116,116,116,116,116,0,2602,114,114,114,114,114,114,114,116,116,116,116,116,116,2605,2605,4187,4187,4187,4187,4187,2605,2605,2605,2605,2605,4187,4187,4187,4187,2605,2605,116,116, 116,116,116,116,116,0,114,114,114,114,114,114,114,114,116,116,116,116,116,116,2605,2605,4187,4187,4187,4187,2605,2605,2605,2605,2605,2605,2605,4187,4187,4187,2605,2605,116,116, 116,116,116,116,116,0,114,114,114,114,114,114,114,114,114,114,116,116,116,116,2605,2605,4187,4187,4187,2605,2605,2605,116,116,116,2605,2605,0,4187,4187,2605,2605,116,116, 116,116,116,116,2602,2602,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,4187,4187,4187,4187,2605,2605,2605,116,116,116,2605,2605,0,4187,4187,2605,2605,116,116, 116,116,116,116,2602,2602,2602,114,114,114,114,114,114,114,114,114,114,116,116,116,116,0,4187,4187,4187,2605,2605,2605,0,2605,2605,2605,2605,0,4187,4187,2605,2605,116,116, 116,116,116,2602,2602,2602,2602,114,114,114,114,114,114,114,114,114,114,116,116,116,116,0,0,4187,4187,2605,2605,2605,2605,2605,2605,2605,2605,0,4187,4187,2605,2605,116,116, 116,116,116,2602,2602,2602,2602,114,114,114,114,114,114,114,114,114,114,116,116,116,116,0,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,116,116, 116,116,116,2602,2602,2602,2602,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,116,116,116, 116,116,2602,2602,2602,2602,2602,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,116,116,116,116, 116,116,2602,2602,2602,2602,2602,2602,114,114,114,114,114,114,114,114,114,0,116,116,116,116,116,116,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,116,116,116,116, 116,116,2602,2602,2602,2602,2602,2602,2602,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,116,116,116,116, 116,116,116,2602,2602,2602,2602,2602,2602,2602,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,2605,2605,2605,2605,2605,2605,2605,2605,2605,4187,116,116,116,116, 116,116,116,116,116,2602,2602,2602,2602,2602,2602,2602,114,114,114,114,114,114,2605,116,116,116,116,116,116,116,116,2605,2605,2605,2605,2605,2605,4187,4187,116,116,116,116,116, 116,116,116,116,116,116,116,2602,2602,2602,2602,2602,0,114,114,114,114,114,2605,0,116,116,116,116,116,116,116,116,2605,2605,2605,2605,4187,4187,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,2602,114,114,114,114,114,2605,2605,0,116,116,116,116,116,116,116,116,2605,2605,4187,4187,4187,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,0,114,114,114,114,114,2605,2605,2605,2605,116,116,116,116,116,116,2605,2605,4187,4187,4187,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,2605,2605,114,114,114,114,2605,2605,2605,116,116,116,116,116,116,2605,2605,4187,4187,4187,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,2605,114,114,114,114,2605,2605,2605,2605,116,116,116,116,116,2605,2605,4187,4187,4187,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,2605,114,114,114,114,2605,2605,2605,2605,2605,116,116,116,0,2605,2605,4187,4187,4187,4187,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,2605,114,114,114,114,114,0,2605,2605,2605,116,116,116,116,2605,2605,2605,4187,4187,4187,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,0,0,0,2605,114,114,114,114,114,114,114,0,2605,2605,116,116,116,116,116,2605,2605,2605,2605,2605,116,116,116,116,116, 116,116,116,116,116,116,116,0,114,114,114,2605,114,114,114,114,114,114,114,114,114,114,114,0,2605,116,116,116,116,116,116,116,2605,2605,2605,116,116,116,116,116, 116,116,116,116,116,116,0,114,4184,4184,4184,4184,114,114,114,114,114,114,114,114,114,114,114,114,2605,0,116,116,116,116,116,116,116,2605,116,116,116,116,116,116, 116,116,116,116,0,0,114,4184,4184,4184,4184,4184,4184,4184,114,114,114,114,114,114,114,114,114,114,114,2605,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,0,4184,4184,4184,4184,4184,4184,4184,4184,4184,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,0,0,0,0,0,0,116,116,116,116,116, 116,116,116,0,114,4184,4184,4184,4184,4184,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,114,4184,4184,4184,4184,4184,4184,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,0,4184,4184,4184,4184,4184,4184,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,0,116,116,116,116, 116,116,116,0,4184,4184,4184,4184,4184,4184,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,114,4184,4184,4184,4184,4184,4184,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,114,114,4184,4184,4184,4184,4184,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,116,116,116,116,116,116, 116,116,116,114,4184,4184,4184,4184,4184,4184,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116, 116,116,116,114,4184,4184,4184,4184,4184,4184,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116, 116,116,116,0,4184,4184,4184,4184,4184,4184,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116, 116,116,116,0,4184,4184,4184,4184,4184,4184,4184,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116, 116,116,116,114,114,114,114,4184,4184,4184,4184,4184,4184,4184,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,114,114,114,114,114,4184,4184,4184,4184,4184,4184,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,0,114,114,114,114,114,114,114,114,114,114,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,116,116,116,116,116,116, 116,116,116,116,116,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116, 116,116,116,116,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114 0,0,2,4,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,228,229,229,229,229,229,342,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,228,230,0,0,0,2,4,0,0,0,228,230,341,229,229,342,0,0,0,0,0,0,0,228,229,229,229,342,0,0,0,341,229,229,342,0,0,0, 0,0,0,0,0,0,0,228,230,0,0,0,0,341,230,2,4,228,229,229,229,229,229,229,229,229,342,2,4,228,229,229,229,230,0,0,115,0,0,0, 0,0,0,0,0,0,0,0,0,0,341,229,229,230,0,228,230,0,0,0,0,0,0,0,0,0,115,228,230,0,0,0,0,0,0,2,3,2,4,0, 229,229,229,342,0,0,0,0,341,229,230,0,0,0,0,0,341,229,229,229,229,229,229,229,229,342,115,0,0,0,0,0,0,0,0,115,0,228,230,0, 0,0,0,228,229,229,229,229,230,0,0,341,229,229,229,229,230,2837,2498,2498,2838,2837,2498,2498,2838,115,228,342,0,0,0,0,0,0,0,228,342,0,0,0, 229,229,229,229,342,0,0,0,0,0,341,230,0,0,0,0,0,1811,1812,1812,1813,1811,1812,1812,1813,228,342,228,229,229,229,229,342,0,0,0,115,0,0,0, 0,0,0,0,228,229,229,229,229,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,229,229,229,229,342,115,0,0,0,115,0,0,0, 2492,2492,2492,2492,2492,2492,2492,2492,2492,2492,2492,2492,2492,2493,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,115,0,0,0,115,0,0,0, 2718,2718,2718,2718,2718,2718,2718,2718,2718,2718,2718,2605,2605,2605,2492,2492,2492,2492,2493,0,0,0,0,0,0,0,0,0,0,0,0,115,115,0,0,0,115,0,2,4, 0,0,0,0,0,0,0,0,0,0,0,2717,2718,2718,2718,2718,2605,2605,2606,0,0,0,0,0,0,0,0,0,0,0,0,115,115,0,0,0,115,0,228,230, 3,3,3,3,3,4,0,0,0,0,0,0,0,0,0,0,2717,2718,2605,2493,0,0,0,0,0,0,0,0,0,0,0,115,115,0,0,0,115,0,0,0, 3,3,3,4,0,3,3,4,0,0,0,0,0,0,0,0,0,0,2717,2719,795,0,0,0,0,0,0,0,0,0,0,115,115,0,0,0,115,0,0,0, 0,2,4,117,2,4,0,117,0,0,0,0,0,0,1132,1020,1020,1020,1020,1020,1021,0,0,0,0,0,0,0,0,0,0,115,115,0,0,0,228,342,0,0, 0,228,230,117,228,230,0,117,0,0,0,0,0,0,0,0,0,0,2491,2493,0,0,0,0,0,0,0,0,0,0,0,115,228,342,0,0,0,115,0,0, 0,0,0,117,0,2,4,117,0,0,0,0,0,0,0,0,0,0,2717,2719,0,0,0,0,0,0,0,0,0,0,0,228,342,115,0,0,0,115,0,0, 0,0,341,230,0,228,230,117,0,0,0,0,0,0,0,0,1132,1020,1020,1020,1133,0,0,0,0,0,0,0,0,2488,2489,2490,115,115,0,0,0,228,342,0, 229,229,230,0,341,229,229,230,0,0,0,0,0,0,0,0,0,2491,2493,0,0,0,0,0,0,0,0,0,0,2601,2602,2603,115,115,0,0,0,0,115,0, 0,341,229,229,230,0,0,0,0,0,0,0,0,0,0,0,0,2717,2719,0,0,0,0,0,0,0,0,0,0,2714,2715,2716,115,115,0,0,0,0,115,0, 229,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1132,1020,1020,1133,0,0,0,0,0,0,0,0,0,0,115,115,0,0,0,0,115,0, 0,0,0,0,0,0,0,0,0,0,0,0,2491,2492,2492,2493,2491,2493,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,115,0,0,0,0,115,0, 0,0,0,0,0,0,0,0,0,0,0,2491,2605,2605,2605,2719,2717,2605,2493,0,0,0,0,0,0,0,0,0,0,0,0,2,3,115,0,0,0,2,3,0, 0,0,0,0,0,0,0,0,0,0,0,2604,2605,2605,2719,0,0,2717,2719,0,0,0,0,0,0,0,0,0,0,0,0,115,2,3,0,0,0,115,0,0, 0,0,0,0,0,0,0,0,1132,1020,1133,2604,2605,2606,1132,1020,1020,1020,1133,0,0,0,0,0,0,2,3,3,3,3,3,3,115,0,0,0,0,115,0,0, 0,0,0,0,0,0,0,2491,2492,2492,2492,2605,2605,2606,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,2,3,3,3,0,0,0,0,115,0,0, 0,0,0,0,0,0,0,2604,2605,2605,2718,2718,2718,2719,0,0,0,0,0,0,2,3,3,3,3,2,3,3,3,3,0,0,0,0,0,0,0,115,0,0, 0,0,0,0,1132,1020,1133,2604,2605,2606,1132,1020,1133,2,3,3,3,3,3,3,3,2,3,3,3,3,2,3,3,4,0,0,0,0,0,0,0,115,0,0, 0,0,0,0,0,0,0,2604,2605,2606,0,0,0,115,0,0,2,3,3,3,3,3,0,0,2,4,228,229,229,230,0,0,0,0,0,2,3,3,0,0, 0,0,0,2491,2492,2492,2492,2605,2605,2606,0,0,0,115,2,3,3,0,0,0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,2,3,0,0,0,0, 0,0,0,2604,2605,2605,2605,2605,2605,2606,0,2,3,3,115,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,0, 0,0,0,2717,2718,2718,2718,2605,2605,2606,0,115,0,2,3,228,230,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,115,0,0,0,0,0, 0,0,0,0,0,2491,2493,2604,2605,2606,0,115,0,115,0,0,0,0,0,0,0,0,2,4,0,0,0,0,228,230,0,2,4,0,228,229,342,0,0,0, 0,0,0,0,0,2717,2719,2604,2605,2606,0,115,0,115,0,0,0,0,0,0,0,0,228,230,341,229,229,229,229,342,0,228,230,0,0,0,228,229,342,0, 0,0,0,0,0,0,0,2604,2605,2606,0,115,0,115,0,0,0,0,0,341,229,229,229,229,230,0,2,4,0,228,229,229,229,229,229,229,342,0,115,0, 0,0,0,0,0,0,0,2717,2605,2606,0,115,0,228,342,0,0,0,0,117,0,2,4,0,0,0,228,230,341,229,229,229,229,229,342,0,115,0,115,0, 0,0,0,0,0,0,0,0,2604,2606,0,228,229,342,115,0,0,0,0,117,0,228,230,0,0,0,0,341,230,0,0,0,0,0,115,0,115,0,115,0, 3,3,3,3,3,3,4,0,2717,2719,0,2491,2493,115,228,229,229,229,229,230,0,0,341,229,229,229,229,230,0,0,0,0,0,0,115,0,228,342,115,0, 0,0,0,0,0,0,117,0,0,2491,2493,2717,2719,228,229,229,229,229,229,229,229,229,230,4186,0,4188,0,0,0,0,0,0,4073,4075,228,342,0,115,115,0, 3,3,3,3,4,0,3,3,4,2717,2719,0,0,2491,2492,2492,2492,2492,0,4073,4188,0,0,4186,0,4188,0,0,4073,4075,0,0,4299,4301,0,115,0,115,115,0, 0,0,0,0,117,0,0,0,117,0,0,2491,2492,0,0,0,0,0,4073,0,4188,0,0,4186,0,4301,0,0,4299,0,4075,0,0,0,2,3,0,115,115,0, 3,3,3,4,3,4,0,0,117,0,0,2604,0,0,0,0,0,0,4186,0,0,4074,4074,0,4188,0,0,0,0,4299,4301,0,0,2,3,0,0,115,115,0, 0,0,0,117,0,117,0,0,117,0,0,2604,0,0,0,0,4073,4074,0,0,0,0,0,0,0,4074,4075,0,0,0,0,2,3,3,0,2,4,115,115,0, 0,0,0,3,4,3,4,0,117,2491,2492,0,0,0,0,4073,0,0,0,0,0,0,0,0,0,0,0,4075,0,0,0,115,0,0,0,228,230,115,115,0, 0,0,0,0,3,4,3,4,117,0,0,0,0,0,0,4186,0,0,228,230,0,0,0,0,0,0,0,4188,0,0,0,115,0,2,4,0,0,115,115,0, 0,2,3,4,0,117,0,117,117,0,0,0,0,0,4073,0,0,0,0,0,0,0,0,0,0,0,0,0,4074,4075,0,115,0,228,230,0,0,115,228,229, 2,3,0,3,4,117,0,117,117,0,0,2,4,0,4299,4300,4300,4300,4300,4300,0,0,0,0,0,0,0,0,0,0,4075,228,342,0,0,0,0,115,0,0, 115,0,0,0,117,117,0,117,3,3,4,228,230,0,0,0,0,0,0,0,4299,4300,4300,4300,4300,4300,4300,0,0,0,0,4074,115,0,0,0,0,115,0,0, 115,0,0,0,117,117,0,117,0,0,117,4074,4074,4075,0,0,0,0,0,0,0,0,0,0,0,0,0,4186,0,228,230,0,228,342,0,0,0,115,0,0, 115,0,0,0,117,117,0,3,4,0,117,0,0,0,4074,4074,4074,4074,4075,0,0,0,0,0,0,0,0,4186,0,0,0,0,0,115,0,0,0,228,342,0, 228,342,0,0,117,3,3,4,117,0,117,0,0,0,0,0,0,0,0,4074,4074,4074,4075,0,0,0,0,4186,0,0,0,0,0,115,0,0,0,0,115,0, 0,115,0,0,3,4,0,117,3,4,117,0,0,0,0,0,0,0,0,0,0,0,0,4074,4075,0,0,4299,4300,4300,4300,0,0,228,229,342,0,0,115,0, 0,115,0,0,0,117,0,3,4,117,117,0,0,0,0,0,0,0,0,0,0,0,0,0,4188,0,0,0,0,0,0,4186,0,0,0,115,0,0,115,0, 0,228,342,0,0,117,0,0,117,117,117,0,228,230,0,0,0,0,0,0,0,0,0,0,4188,0,0,0,0,0,0,4186,0,0,0,115,0,0,115,0, 342,0,115,0,341,230,0,0,117,117,117,0,0,0,0,0,0,0,0,0,0,0,0,0,4188,0,0,0,0,0,0,4186,0,0,0,115,0,0,115,0, 115,0,228,229,230,0,0,0,117,117,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4074,4075,0,0,0,4073,0,0,0,0,228,342,0,228,342, 115,0,0,0,0,0,0,0,117,117,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4075,0,0,4186,0,0,0,0,0,115,2,4,115, 115,0,0,0,0,0,0,341,230,117,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4300,4300,4301,0,0,4186,0,0,0,228,230,115,228,230,115, 115,0,0,0,0,341,229,230,0,117,117,0,0,0,0,0,0,0,4300,4300,4300,4300,4300,4300,4301,0,0,0,0,0,4186,0,0,0,0,0,115,0,0,115, 228,342,0,0,341,230,0,0,0,117,117,0,0,0,0,4300,4300,4301,0,0,0,0,0,0,0,0,0,0,0,0,4186,0,4187,4300,4300,4300,228,342,0,115, 0,228,229,229,230,0,0,341,229,230,117,0,0,0,4301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4186,0,4188,0,0,0,4186,115,0,115, 0,0,0,0,0,341,229,230,341,229,230,4300,4300,4301,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4186,0,4188,0,0,0,4186,115,0,115, 229,229,229,229,229,230,0,0,117,2605,2605,2605,2605,2605,2605,2,3,3,4,0,0,0,4073,4074,4074,4075,0,0,0,0,4299,4300,4301,0,0,0,4186,115,0,115, 229,229,229,229,229,229,229,229,230,0,0,0,2605,2605,2605,115,0,0,117,0,0,0,4186,0,0,4188,0,0,0,0,0,0,0,0,0,0,4186,115,0,115, 0,0,0,0,0,0,0,2717,2718,2718,2718,2718,2605,2605,2605,115,0,0,117,0,0,0,4186,0,0,4188,0,0,0,0,0,0,0,0,0,4073,0,115,0,115, 0,0,0,0,0,0,0,0,2491,2493,0,0,2717,2718,2718,115,0,0,117,0,0,0,4186,0,0,0,4074,4074,4074,4074,4074,4075,0,0,4073,0,0,115,0,115, 0,0,0,0,2491,2493,0,0,2717,2605,2493,0,0,0,0,115,0,0,3,3,4,0,4186,0,0,0,0,0,0,0,0,0,4074,4074,0,0,0,115,0,115, 0,0,0,0,2717,2719,0,0,0,2717,2719,0,0,2491,2493,115,0,0,0,0,117,4073,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,342,115, 0,0,0,0,0,0,0,0,0,0,0,0,0,2717,2719,115,0,0,0,0,117,4186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,115, 0,0,0,0,0,0,0,0,2491,2492,2492,2492,2493,0,0,228,342,0,0,0,117,4186,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,115,115, 2492,2492,2492,2492,2492,2492,2492,2492,2605,2605,2605,2605,2606,0,2491,2493,115,0,0,0,117,4186,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,115,115, 2718,2718,2718,2718,2718,2718,2718,2718,2718,2605,2605,2605,2606,0,2717,2719,115,0,0,0,117,4299,0,0,0,0,0,0,0,0,0,4300,4300,0,0,0,0,0,115,115, 0,0,0,0,0,0,0,0,0,2717,2718,2605,2606,0,0,0,115,0,0,0,3,4,4186,0,0,0,0,0,0,0,4188,0,0,4299,0,0,0,0,115,115, 3,3,3,3,3,3,3,4,0,0,0,2604,2606,0,0,0,115,0,0,0,0,117,4299,0,0,0,0,0,0,0,4188,0,0,0,4186,0,0,0,115,115, 0,0,0,0,0,0,0,117,0,0,0,2604,2606,0,0,0,115,2,3,4,0,117,0,4299,4300,0,0,0,0,0,0,4075,0,0,4186,0,0,0,115,115, 0,0,0,0,0,0,0,117,0,0,0,2604,2606,0,0,2,3,115,0,117,0,117,0,0,0,4186,0,0,0,0,0,4188,0,0,4186,0,0,0,115,115, 3,3,4,0,0,0,0,117,2490,0,0,2604,2606,0,0,115,2,3,0,117,0,117,0,0,0,4186,0,0,0,0,0,0,4074,4074,0,0,0,0,115,115, 0,0,3,3,4,0,0,117,0,2490,0,2604,2606,0,2,3,115,0,0,117,0,117,0,4073,4074,0,0,0,0,0,0,0,0,0,0,0,0,0,115,115, 0,0,0,0,117,0,0,117,0,2603,0,2604,2606,0,115,2,3,0,0,117,0,117,0,4186,0,0,0,0,4300,4300,0,0,0,0,0,0,0,4188,115,115, 0,0,0,0,117,0,0,117,0,2603,0,2604,2606,2,3,115,0,0,0,117,0,117,0,4186,0,0,0,4188,0,0,4186,0,0,0,0,0,0,4301,115,115, 0,0,0,0,117,0,0,117,0,2603,0,2604,2606,115,2,3,0,0,0,117,0,117,0,4186,0,0,0,4188,0,0,4186,0,0,0,0,0,4188,0,115,115, 0,0,341,229,230,0,341,230,0,2603,0,2604,2606,115,115,0,0,0,0,117,341,230,4073,4187,0,0,0,4188,0,4073,0,0,0,0,0,0,4188,0,115,115, 0,0,117,0,0,0,117,0,0,2603,0,2604,2606,115,115,0,0,0,0,117,117,4073,4187,0,0,0,0,0,4074,0,0,0,0,0,0,0,4188,0,115,115, 0,0,117,0,0,0,117,0,0,2716,0,2604,2606,115,115,0,0,0,0,117,117,4186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4188,2,3,115, 0,0,117,0,0,341,230,2715,2716,0,0,2604,2606,115,115,0,0,0,0,117,117,4186,0,0,0,228,230,4300,4300,4300,4300,4300,228,230,0,0,4188,115,0,115, 0,0,117,0,0,117,0,0,0,0,0,2604,2606,115,228,229,342,0,0,117,117,4186,0,0,0,0,4301,0,2,3,4,0,4299,0,0,0,4188,115,2,3, 0,341,230,0,0,117,0,0,0,0,0,2604,2606,228,229,342,115,0,0,117,3,4,0,0,0,4188,0,2,115,0,117,4,0,4186,0,0,4188,115,115,0, 0,117,0,0,341,230,2489,2490,2,4,0,2604,2606,0,0,115,228,342,0,3,4,117,0,0,0,4188,0,115,228,229,230,117,0,4186,0,0,4188,115,115,0, 0,117,0,0,117,0,0,2603,228,230,0,2604,2606,0,0,228,342,115,0,0,117,117,0,228,230,4188,0,228,229,229,229,230,0,4186,228,230,4188,115,115,0, 0,117,0,341,230,0,0,2603,0,0,0,2717,2719,0,0,0,115,115,0,0,117,117,4299,0,0,4301,0,0,0,0,0,0,0,4299,0,0,4301,115,115,0, 341,230,0,117,0,0,0,2603,0,0,0,0,0,0,0,0,115,228,342,0,117,117,0,4299,4301,0,0,0,0,0,0,0,0,0,4299,4301,0,115,115,0, 117,0,0,117,0,0,0,2603,0,0,0,0,0,0,0,0,115,0,115,0,117,3,4,0,0,2,4,0,0,0,0,0,2,4,0,2,3,3,115,0, 117,0,341,230,0,0,0,2603,0,0,0,0,0,0,0,0,115,0,115,0,3,4,3,3,4,228,230,0,0,0,0,0,228,230,0,115,0,0,115,0, 117,0,117,2,4,0,0,0,2489,2490,0,0,0,0,0,0,228,342,228,342,0,3,3,4,117,0,0,0,4073,4074,4075,0,0,0,0,115,0,0,115,0, 117,0,117,228,230,0,0,0,0,2603,0,0,0,0,0,0,0,228,342,115,0,0,0,117,3,3,4,0,4299,4300,4301,0,0,0,0,115,0,0,115,0, 117,0,3,3,4,0,0,0,0,0,2489,2490,0,0,0,0,0,0,115,228,229,342,0,3,3,4,117,0,0,0,0,0,4073,4074,4074,115,0,0,115,0, 3,4,0,0,3,3,4,0,0,0,0,0,2490,0,0,0,0,2491,115,0,0,115,0,0,0,117,3,3,4,0,0,0,4186,0,0,3,0,0,115,0, 0,117,0,0,0,0,3,3,3,3,3,4,2603,0,0,0,0,2604,228,342,0,228,342,0,0,3,3,4,117,0,0,4073,0,0,3,0,0,2,3,0, 0,3,3,3,4,0,0,0,0,0,0,3,3,4,0,0,0,2604,0,228,342,0,228,342,2,4,0,117,3,4,4073,0,0,115,0,0,0,115,0,0, 0,0,0,0,3,3,3,3,3,3,4,0,0,117,2492,2493,0,2717,2718,0,228,229,342,115,228,230,0,117,0,117,4186,0,0,115,0,2,4,115,0,0, 0,0,0,0,0,0,0,0,2,4,3,3,4,3,3,4,2493,0,0,2604,2,4,115,228,342,0,0,3,4,117,4186,0,0,115,0,228,230,115,0,0, 0,0,0,0,0,0,0,0,228,230,0,0,117,2,4,117,2606,4,0,2604,228,230,228,342,228,342,0,0,117,117,4186,0,0,115,0,0,0,115,0,0, 3,3,3,3,4,2,4,0,0,0,0,341,230,228,230,117,2606,230,0,2604,0,0,0,228,342,115,0,0,117,117,4299,0,0,228,342,2,3,3,0,0, 0,0,0,0,117,228,230,0,341,229,229,230,0,0,341,230,2606,0,0,2717,2718,2605,0,0,115,115,0,0,117,117,0,4299,0,0,115,115,0,0,0,0, 0,0,341,229,230,0,341,229,230,0,0,341,229,229,230,2605,2719,2,4,0,0,2717,2605,0,115,228,342,0,117,3,3,4,4299,4300,115,115,0,0,0,0, 0,341,230,0,0,341,230,341,229,229,229,230,2605,2605,2718,2719,0,228,230,0,0,0,2717,2605,115,0,115,0,117,0,0,3,4,0,115,115,0,0,0,0, 0,117,0,341,229,230,341,230,4409,4410,4410,4411,2718,2719,0,0,0,0,0,0,0,0,0,2604,228,342,115,0,117,0,0,0,3,3,3,115,0,0,0,0, 0,117,341,230,341,229,230,4409,4635,0,0,4637,4410,4411,0,0,0,0,0,0,0,0,0,2717,2718,115,115,0,3,3,3,3,3,3,3,3,0,0,0,0, 0,117,117,0,117,4409,4410,4635,0,0,0,0,0,4524,0,0,0,0,0,0,0,0,0,0,0,115,228,342,341,229,229,229,229,229,342,0,0,0,0,0, 341,230,117,341,230,4522,0,0,0,4524,4636,4636,4636,4636,0,0,0,0,0,0,0,0,0,0,0,228,342,115,117,0,0,0,0,0,115,0,0,0,0,0, 117,0,117,117,4409,4635,0,0,0,4524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,115,117,0,0,0,0,0,115,0,0,0,0,0, 117,341,230,117,4522,0,0,0,0,4524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,115,117,0,0,0,0,0,228,342,0,0,0,0, 117,117,0,117,4522,0,0,0,0,4524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,115,115,3,3,3,3,3,3,4,115,0,0,0,0, 117,117,341,230,4522,0,0,0,0,4524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,115,228,229,229,229,229,229,229,230,115,0,0,0,0, 117,117,117,0,4636,4522,0,0,0,4524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,229,229,229,229,229,229,342,2,3,0,0,0,0, 117,117,117,0,4409,4635,0,0,0,4524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2488,2489,2489,2489,2489,2490,115,115,0,0,0,0,0, 117,117,3,4,4522,0,0,0,0,4524,0,0,2488,2489,2490,0,0,0,0,0,0,0,0,0,0,0,0,2601,2602,2602,2602,2602,2603,115,115,0,0,0,0,0, 117,3,4,117,4522,0,0,0,0,4524,0,0,2714,2715,2716,0,0,0,0,0,0,0,0,0,0,0,2488,2602,2602,2715,2715,2715,2716,115,115,0,0,0,0,0, 3,4,117,117,4522,0,0,0,0,4637,4411,0,0,0,0,0,0,0,0,0,0,0,0,2488,2489,2489,2602,2715,2716,2,3,3,3,3,115,0,0,0,0,0, 0,117,117,117,4636,4636,4636,4522,0,0,4637,4410,4410,4411,0,0,0,0,0,0,0,0,0,2714,2715,2715,2716,0,2,115,0,0,0,0,115,0,0,0,0,0, 0,117,117,117,0,0,0,4636,4522,0,0,0,0,4524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,115,0,0,0,0,228,229,229,342,0,0, 0,117,117,3,3,3,4,0,4636,4636,4636,4636,4636,4636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,228,229,342,0,0,0,0,0,115,0,0, 0,117,3,4,0,0,3,3,3,3,3,3,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,229,342,228,342,0,0,0,0,115,0,0, 0,3,4,3,3,3,3,3,3,3,4,0,0,3,3,4,0,0,341,229,229,229,229,229,342,0,0,0,0,0,115,0,115,0,0,0,0,115,0,0, 0,0,3,4,0,0,0,0,0,0,117,0,0,0,0,117,0,0,117,0,0,0,0,0,115,0,0,0,0,0,115,0,228,229,342,0,0,228,342,0, 0,0,0,117,0,0,0,0,0,0,117,0,0,0,0,117,0,341,230,0,0,0,0,0,228,229,342,0,0,0,115,0,0,0,228,229,342,0,115,0, 229,229,229,230,0,0,0,341,229,229,230,0,0,0,0,117,0,117,0,0,341,229,229,229,229,342,228,229,342,0,228,342,0,0,0,0,115,0,115,0, 0,0,0,0,341,229,229,230,0,0,0,0,0,0,0,117,341,230,0,341,230,0,0,0,0,228,229,342,228,229,342,228,342,0,0,0,115,0,228,342, 0,341,229,229,230,0,0,0,0,0,0,0,341,229,229,230,117,341,229,230,0,3288,3289,3290,0,0,0,228,229,342,228,342,228,342,0,0,115,0,0,228, 229,230,0,0,0,341,229,229,229,229,229,229,230,0,0,341,230,117,0,0,0,3401,3402,3403,0,0,0,0,0,115,0,115,0,115,0,0,228,342,0,0, 0,0,0,0,341,230,0,0,0,0,0,0,0,0,0,117,341,230,0,0,0,3401,3402,3403,0,0,0,0,0,115,0,115,0,115,0,0,0,228,342,0, 229,229,229,229,230,0,0,0,0,0,341,229,229,229,229,230,117,0,0,0,0,3401,3402,3403,0,0,0,0,0,115,0,228,342,115,0,0,0,0,228,229, 0,0,0,0,0,0,0,341,229,229,230,0,0,341,229,229,230,0,0,0,0,3401,3402,3403,0,0,0,0,0,115,0,0,115,228,229,342,0,0,0,0, 0,0,0,0,341,229,229,230,0,0,0,0,0,117,0,0,0,0,0,0,0,3401,3402,3403,0,0,0,0,0,115,0,0,115,0,0,228,342,0,0,0, 229,229,229,229,230,0,0,0,0,0,341,229,229,230,0,3288,3289,3289,3289,3289,3289,3401,3402,3403,0,0,0,0,0,228,342,0,228,229,342,0,228,229,229,229, 0,0,0,0,0,0,0,341,229,229,230,0,0,0,0,3401,3402,3402,3402,3402,3402,3401,3402,3403,0,0,0,0,0,0,228,229,342,0,228,229,342,0,0,0, 0,0,0,0,0,341,229,230,0,0,0,0,0,0,0,3401,3402,3402,3515,3515,3515,3515,3515,3516,0,0,0,0,0,0,0,0,115,0,0,0,228,229,229,229, 0,0,0,341,229,230,0,0,0,0,0,0,0,0,0,3401,3402,3403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,229,229,229,229,229,229,229, 229,229,229,230,0,0,0,0,0,0,0,0,0,0,0,3401,3402,3403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3401,3402,3403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3401,3402,3403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,772,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,772,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,218,218,218,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,218,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,219,219,219,218,218,218,0,0,0,0,0,0,0,0,0,0,219,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,219,219,219,219,219,219,218,0,0,0,0,0,0,0,0,0,219,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,219,219,219,219,219,219,219,218,0,0,0,0,0,0,0,218,219,927,928,928,931,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,219,219,1040,1041,1041,1044,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,219,219,219,219,219,331,331,219,0,0,0,0,0,0,0,219,219,1153,1154,1155,1157,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,218,218,218,219,219,219,219,219,216,217,219,0,0,0,0,0,0,218,219,219,1266,1267,1268,1270,0,0,0,0,0,0,0,0,0,0,0, 0,0,218,218,218,219,219,219,219,219,219,331,331,329,330,331,0,0,0,0,0,0,219,219,219,205,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 218,218,219,219,219,219,219,219,219,219,331,0,0,0,0,0,0,0,0,0,0,0,331,331,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,219,219,331,0,0,0,0,0,0,0,0,0,0,0,0,0,218,218,218,659,659,659,659,0,0,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,219,331,0,0,0,0,0,0,0,0,0,0,0,0,0,218,219,219,331,659,659,659,659,0,0,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,331,0,0,0,0,0,0,0,0,0,0,0,218,218,218,219,219,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,331,0,0,0,0,0,0,0,0,0,0,0,218,219,331,331,331,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,219,219,219,331,331,0,0,0,0,0,0,0,0,0,0,0,0,331,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,219,331,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 331,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 218,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,219,218,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,219,219,219,218,218,0,0,0,0,907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 331,331,331,331,331,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,907,0,0,0,0,0,0,0,0,0,772,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,907,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,907,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,907,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,907,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,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,4,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,907,0,0,0,0,0,0,3453,3454,3455,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3566,3567,3568,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,907,0,0,0,0,0,0,3679,3680,3681,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3792,3793,3794,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3905,3906,3907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4018,4019,4020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 218,218,218,218,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,219,219,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,219,219,331,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 331,331,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,907,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,907,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,907,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,2,4,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,4,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0, 0,0,0,0,0,218,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,331,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,218,218,219,0,907,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,219,219,331,0,0,0,0,0,218,218,218,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,331,219,0,0,0,0,0,0,331,219,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,331,0,0,0,0,0,0,0,331,331,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,218,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,331,331,0,0,0,0,0,0,0,0,0,0,907,0,0,907,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0, 0,0,0,907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,907,0,0,0,0,0,0,907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,907,0,0,0,0,0,0,907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,907,0,0,0,0,0,0,0,907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3473,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,218,0,0,0,0,0,0,0,0,0,0,0,0,0,3584,3585,3586,3587,3588,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,218,0,0,0,0,0,0,218,218,0,0,0,0,3697,3698,3699,3700,3701,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,331,331,0,0,0,0,0,0,219,331,0,0,0,0,3810,3811,3812,3813,3814,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,4204,4205,4205,4205,4208,0,0,218,218,218,0,0,331,0,0,0,0,0,3923,3924,3925,3926,3927,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,1901,4317,4318,4318,4318,4321,1902,1903,219,219,331,0,0,0,0,0,0,0,0,4036,4037,4038,4039,4040,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,2014,4430,4431,4431,4431,4434,0,2016,219,219,0,0,0,0,0,0,0,0,0,4149,4150,4151,4152,4153,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,2014,4543,4545,4544,4545,4547,0,2016,219,331,0,0,0,0,0,0,0,0,0,0,4263,4264,4265,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,2014,4656,4658,3640,4658,4660,0,2016,331,0,0,0,0,218,218,218,0,0,0,0,4376,4377,4378,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,2127,1902,1902,0,1902,1902,205,2129,0,0,0,0,218,219,219,219,218,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,218,218,0,0,0,0,0,0,0,0,0,0,331,219,331,219,331,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,331,219,0,0,0,0,0,0,0,218,218,0,0,331,205,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,331,0,0,0,0,0,0,0,331,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,218,0,0,0,0,331,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,218,0,0,0,0,0,0,0,0,0,218,219,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,218,218,0,0,0,0,0,218,218,219,219,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,331,219,219,331,0,0,0,0,0,331,219,219,219,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,0,0,0,1348,1349,1349,0,219,219,219,218,218,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,331,0,218,0,0,0,0,0,331,331,331,219,219,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,659,0,0,0,0,0,0,659,331,331,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,0,0,1348,1349,1349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,0,0,0,0,0,205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,218,218,0,0,0,0,0,218,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,218,0,218,218,218,218,0,219,331,0,0,0,218,218,331,0,0,0,0,0,219,218,218,0,659,0,218,0,0,0,0,0,0,0, 0,0,0,0,0,0,331,0,331,219,331,331,0,331,0,0,0,0,219,331,659,0,0,0,0,659,331,219,331,0,0,0,331,0,0,0,0,0,0,0, 218,218,0,218,0,0,659,0,0,331,0,218,218,0,0,0,0,659,331,0,0,0,0,0,0,0,0,331,0,0,218,0,0,0,0,0,0,0,0,0, 219,219,0,331,0,0,0,0,0,0,0,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,218,0,0,218,0,0,0,0,0, 331,331,0,0,0,0,0,0,218,218,659,331,331,0,0,0,0,0,0,0,0,0,0,0,0,218,218,0,659,0,0,331,0,0,331,0,0,0,0,0, 0,0,0,0,0,218,0,0,331,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,0,0,0,0,0,0,218,0,0,0,0,0,0, 0,218,0,0,0,331,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,331,331,0,218,218,0,0,0,331,0,0,0,0,0,0, 0,331,218,0,0,0,0,0,0,0,218,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,331,0,0,0,0,0,659,0,0,0,0, 0,0,331,0,0,0,1911,0,0,659,331,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,659,331,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,659,2133,1908,1908,1908,1908,1908,1909,0,0,0,0,0,0,0,1907,1908,1908,1908,1908,1908,1908,1908,1908,1908,1908,1908,1908,1908,1908,218,218,218,218,218, 1911,0,0,0,0,0,0,0,0,0,659,0,2022,0,0,0,0,0,0,0,2020,0,659,0,218,218,218,218,218,218,218,218,218,218,218,219,219,219,331,219, 2020,0,0,0,0,0,0,659,0,0,0,659,2022,0,0,0,0,0,0,0,2020,0,0,218,219,219,219,219,219,219,219,219,219,219,219,219,219,331,0,331 ================================================ FILE: maps/hoenn/hoenn-route-112.tmx ================================================ 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 125,125,125,125,125,125,125,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,0,125,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,0,125,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,114,114,114,114,114,114,114,114,114,114,114,114, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,114,114,114,114,114,114,114,114,114,114,116,116, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,114,114,114,114,114,114,116,116, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,114,114,114,114,114,116,116, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,114,114,116,116, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,114,114,116,116, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,114,114,116,116, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,114,114,116,116, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,114,114,116,116, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,114,114,116,116, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,114,114,116,116, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,114,114,116,116, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,114,114,116,116, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,114,114,116,116, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,114,114,116,116, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,114,114,116,116, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,114,114,116,116, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,114,114,114,116,116, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,114,114,114,116,116,116, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,0,0,0,114,114,114,114,116,116,116, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,114,114,114,114,114,114,116,116,116,116, 0,0,0,0,0,0,0,0,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,114,114,114,114,114,114,116,116,116,116, 0,0,0,0,0,0,0,0,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,114,114,114,114,114,114,116,116,116,116, 0,0,0,0,0,0,0,0,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,114,114,114,114,114,114,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,0,0,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,114,114,114,114,114,116,116,116,116, 0,0,0,0,0,114,114,114,114,114,114,114,114,0,0,0,0,125,125,125,125,125,125,125,125,125,125,125,0,0,114,114,114,114,114,114,114,116,116,116, 0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,0,125,125,125,125,125,125,125,125,125,0,114,114,114,114,114,114,114,114,114,114,0,0,0, 0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,125,125,125,125,125,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116, 114,125,125,125,125,125,125,125,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116, 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116 0,0,0,0,0,0,0,0,0,2721,2721,2721,2721,2722,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,2722,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,2721,2722,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 12,12,12,12,12,12,12,12,12,12,12,12,12,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 12,12,12,12,13,0,0,0,0,0,0,0,0,12,12,12,12,12,12,12,12,12,12,13,0,0,2837,2498,2498,2498,2498,2838,0,0,0,95,95,0,0,0, 12,12,12,13,12,12,12,12,12,13,0,0,0,0,0,0,0,0,0,0,0,0,0,126,13,0,1811,1812,1812,1812,1812,1813,0,95,95,95,95,95,0,0, 12,12,13,12,13,0,0,0,0,12,12,12,13,0,0,0,0,0,0,0,0,0,0,126,126,11,13,0,0,0,0,0,95,95,95,95,95,0,0,0, 12,13,12,13,126,13,11,12,12,12,13,0,126,12,12,12,12,13,0,0,350,238,465,239,126,237,239,0,0,0,0,0,0,95,95,0,0,0,0,0, 13,12,13,126,126,126,12,13,0,0,12,13,12,12,12,12,13,126,0,350,239,350,578,238,239,0,0,0,95,95,95,0,0,0,0,0,0,0,0,0, 12,13,126,126,126,12,13,126,13,0,0,126,12,13,0,0,126,126,0,126,350,239,0,0,0,0,0,95,95,95,95,95,95,0,0,0,0,0,0,0, 0,126,126,126,12,13,126,126,126,13,0,12,13,126,0,0,126,126,0,126,126,0,0,0,0,0,95,95,95,95,95,0,0,0,0,0,0,0,0,0, 0,126,126,126,0,126,126,126,126,12,13,0,126,126,12,13,12,12,13,12,12,12,13,0,0,0,11,13,0,0,0,0,0,0,0,0,0,0,0,0, 0,126,126,126,0,126,126,126,12,13,12,13,126,126,0,126,0,0,126,13,0,0,126,12,12,13,237,239,0,0,0,0,0,0,0,0,0,0,0,0, 350,239,126,126,0,126,126,126,0,126,0,126,126,12,13,126,12,13,12,12,12,13,12,12,13,12,12,13,0,0,0,0,0,0,0,0,0,0,0,0, 239,350,239,126,0,126,126,126,0,126,0,126,12,13,126,126,0,126,13,0,0,126,12,13,126,0,0,12,13,0,0,0,0,0,0,0,0,2,3,3, 238,239,350,239,0,126,126,126,0,126,0,126,0,126,126,126,0,126,126,0,0,126,0,126,12,12,13,0,126,12,12,13,0,0,0,0,0,115,0,0, 0,350,239,0,0,126,126,126,0,126,0,126,0,126,126,126,0,126,126,0,0,126,0,12,13,0,126,0,12,12,13,12,13,0,0,0,0,115,2,3, 238,239,0,0,350,239,126,126,0,126,0,126,0,126,126,126,350,239,126,0,350,239,0,0,126,0,12,12,13,0,12,13,12,12,12,13,0,115,115,0, 238,238,238,238,239,350,239,126,350,239,0,126,0,126,126,126,126,350,239,350,239,0,0,0,126,0,0,0,12,12,13,12,12,12,13,12,13,115,115,2, 0,0,350,238,238,239,350,239,126,0,350,239,0,126,126,126,126,126,0,126,0,0,0,350,239,0,0,0,0,0,12,12,12,13,126,0,126,115,115,115, 238,238,239,350,238,238,239,350,239,350,239,0,350,239,126,126,126,126,0,126,0,350,238,239,0,0,0,0,0,0,0,0,0,126,12,13,126,115,115,115, 0,350,238,239,0,350,238,239,0,126,0,350,239,350,239,126,126,126,0,126,0,126,0,0,0,0,0,0,0,0,0,0,0,126,0,126,126,115,115,115, 238,239,350,238,238,239,0,0,350,239,0,126,0,126,350,239,126,126,0,126,0,126,0,0,0,0,0,0,0,0,0,0,0,12,13,126,126,115,115,115, 238,238,239,0,0,0,350,238,239,0,350,239,350,239,126,350,239,126,0,126,0,126,0,0,0,0,0,0,0,0,0,0,0,0,126,126,126,115,115,115, 350,238,238,238,238,238,239,0,0,0,126,0,126,350,239,126,0,126,0,126,350,239,0,0,0,0,0,0,0,0,0,0,0,0,126,126,126,115,115,115, 239,0,0,0,350,238,238,238,238,238,239,0,126,126,350,239,350,239,0,126,126,0,0,0,0,0,0,0,0,0,0,0,0,0,126,126,126,115,115,115, 238,238,238,238,239,0,350,238,238,238,238,238,239,126,126,0,126,0,350,239,126,0,0,0,0,0,0,0,0,0,0,0,0,350,239,126,126,115,115,115, 0,350,238,238,238,238,239,0,0,350,238,238,238,239,126,350,239,0,126,0,126,0,0,0,0,0,0,0,0,0,0,0,0,126,0,126,126,115,115,115, 238,239,350,238,238,238,238,238,238,239,0,0,0,350,239,126,0,0,126,0,126,0,0,0,0,0,0,0,0,0,0,331,331,126,350,239,126,115,115,115, 238,238,239,350,238,238,238,238,238,238,238,238,238,239,350,239,0,0,126,0,126,0,0,0,0,0,0,0,0,0,0,350,238,239,126,0,126,115,115,115, 238,238,238,239,0,0,0,0,0,0,0,350,238,238,239,0,0,0,126,350,239,0,0,0,0,0,0,0,0,331,331,126,0,350,239,331,126,115,115,115, 0,0,0,350,238,238,238,238,238,238,238,239,0,0,350,238,238,238,239,126,0,0,0,0,0,0,0,0,0,350,238,239,331,126,0,350,239,115,115,228, 238,238,238,239,0,0,0,0,0,0,0,0,0,350,239,0,350,238,238,239,0,0,0,0,0,0,0,0,0,126,350,238,238,239,350,239,2,3,115,0, 238,238,238,238,238,238,238,238,238,238,238,465,238,239,350,238,239,0,0,0,0,0,0,0,0,0,0,0,0,126,126,350,238,238,239,0,115,0,115,0, 0,0,0,0,0,0,0,0,350,238,238,578,238,238,239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126,126,126,0,0,0,2,3,0,115,0, 238,238,238,238,238,238,238,238,239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,126,126,126,0,0,0,115,2,3,3,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,350,239,126,126,0,0,0,115,115,0,0,0, 0,0,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,238,239,0,126,126,0,0,0,115,228,342,0,0, 0,0,0,0,0,0,0,0,0,0,238,238,351,0,0,0,0,0,0,0,0,0,0,350,238,238,239,350,238,238,239,126,0,0,0,228,342,115,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,237,238,238,238,238,238,238,238,1348,1349,238,239,350,238,238,239,350,238,238,239,0,0,0,0,115,228,229,229, 0,0,0,0,0,0,0,0,0,0,0,0,1254,1367,238,238,238,238,238,238,1348,1349,238,238,239,350,238,238,239,0,0,0,0,0,0,0,228,229,229,229, 0,0,0,0,0,0,0,0,0,0,0,0,917,917,0,1254,1029,1367,238,238,1348,1349,238,238,238,239,95,95,95,95,95,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,917,917,0,917,0,917,0,0,2491,2493,0,0,0,95,95,95,95,95,95,95,95,95,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,1254,1029,1030,917,0,917,0,917,0,0,2604,2606,0,0,0,95,95,95,95,95,95,95,95,95,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,917,0,0,917,0,917,0,917,0,0,2604,2606,0,11,12,12,12,12,12,12,13,95,95,95,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,917,0,0,917,0,917,0,917,0,0,2604,2606,0,237,238,351,0,0,0,0,12,13,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,917,0,0,917,0,917,0,917,0,0,2604,2606,0,0,0,237,238,238,238,238,351,126,0,0,0,0,0,0,0,0, 2492,2492,2493,0,0,0,0,0,0,0,917,0,0,917,0,917,0,917,0,0,2604,2606,0,0,0,0,0,0,0,0,237,239,0,0,0,2491,2492,2492,2492,2492, 2718,2605,2605,2492,2492,2492,2493,0,0,0,917,0,0,917,0,917,0,917,0,0,2604,2605,2492,2492,2492,2492,2492,2492,2492,2492,2492,2492,2492,2492,2492,2605,2605,2605,2718,2718, 0,2717,2718,2718,2718,2718,2719,0,0,0,917,0,0,917,0,917,0,917,0,0,2717,2718,2718,2718,2718,2718,2718,2718,2718,2718,2718,2718,2718,2718,2718,2718,2718,2719,0,0, 0,0,0,0,0,0,0,0,0,0,917,0,0,917,0,917,0,917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,917,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,3,3,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,2,3, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,2,3,0, 0,0,11,12,12,12,12,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,3,3,3,3,3,2,3,3,0,0, 11,12,12,0,0,0,0,12,12,12,12,12,12,12,13,0,0,0,0,0,0,0,0,0,2,3,3,3,3,0,0,2,3,3,3,3,0,0,0,0, 12,0,0,11,12,12,13,0,0,0,0,0,0,0,12,12,13,0,0,0,0,0,0,2,3,0,0,0,0,2,3,3,0,0,0,0,0,0,0,0 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,331,331,331,331,331,331,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,219,219,219,219,219,331,331,331,219,219,331,331,331,331,331,331,219,219,219,331,331,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,219,0,0,0,0,0,0,331,331,331,0,0,331,331,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,0,0,0,0,0,0,907,0,0,0,0,0,907,331, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,0,0,0, 0,0,0,0,0,0,0,0,0,0,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,907,0,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,219,219,219,219,219,219,219,219,331,331,331, 0,0,0,0,0,0,0,0,0,0,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,331,331,219,219,219,219,219,0,0,0, 0,0,0,0,3580,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,0,0,0,0,0,0,0,0,0,0,0,0,331,219,219,219,219,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,0,0,0,331,0,219,0,0,0,0,331,0,0,0,0,0,331,331,331,219,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,331,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,3579,0,0,0,0,0,0,0,0,331,0,0,0,219,219,219,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,331,331,219,219,0,0,0,0,0,0,0,0,0,0, 331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,331,0,0,331,331,0,0,331,0,0,0,0,0,0,0, 0,0,0,0,0,0,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3462,3463,3463,3459,3460,3347,0,0,0,0,0,0,0, 0,0,0,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,3575,3576,3576,3572,3573,3687,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,331,0,0,0,0,0,0,0,0,331,0,0,0,0,0,3580,0,0,3688,3689,3690,3685,3686,3687,219,0,0,0,0,0,0, 0,331,331,331,0,0,0,0,0,0,0,331,0,0,0,0,0,0,0,0,0,0,331,0,0,0,331,3801,3802,3803,3798,3799,3800,331,0,0,0,0,0,0, 0,0,0,0,0,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,0,219,219,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 331,0,0,0,0,0,0,331,331,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,331,0,0,0,0,0,0,219,219,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,331,331,0,0,0,0,0,0,219,0,219,219,331,1902,1902,0,0,1902,1902,219,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,0,331,0,219,219,0,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0, 0,0,0,0,331,331,0,0,0,331,331,0,0,0,0,0,331,331,0,0,0,219,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 331,331,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,331,331,331,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0, 219,219,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,0,0,0,0,0,0,0,0,0,0,0, 331,331,331,331,331,331,0,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,0,0,0,219,219,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,0,0,0,0,219,0,0,0,0,219,219,219,0,0,0,0,0, 219,219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,331,0,0,0,0,219,219,219,0,0,0,0,0, 219,219,219,219,219,219,219,219,219,219,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,0,0,0,0,0, 219,219,219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,0,0,0,0,0, 219,219,219,219,219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,0,0,0,0,0, 219,219,219,219,219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,331,0,219,219,219,219,0,0,0,0, 219,219,219,219,219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,331,331,219,219,0,219,219,219, 219,219,219,219,219,219,219,219,219,219,331,331,0,0,0,0,0,0,0,205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,331,219,219,219,219, 219,219,219,219,219,219,331,331,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,331,331,331, 331,219,219,219,219,219,0,0,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,331,219,219,219,331,0,0,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,331,331,331,0,0,0,331,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,205,0,0,0,0,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,219,0,1902,1902,1902,1902,1902,1902,1902,1902,1902,1902,1902,1902,1902,1902,1902,1902,1902,0,0,0,0,0, 219,0,0,0,0,0,0,0,0,219,219,219,219,219,219,219,219,219,0,0,0,0,0,0,219,219,219,219,219,219,0,0,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,331,0,0,0,0,0, 219,219,331,219,219,219,219,331,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,331,331,331,331,331,331,0,0,0,0,0,0, 331,331,0,0,0,0,0,0,331,219,219,219,219,331,331,219,219,219,219,219,219,219,219,219,331,331,331,331,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,331,219,219,219,219,219,219,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,218,0,0,0, 0,0,0,0,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,218,0,0,218,218,218, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,0,0,0,0,0,0,0, 3469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,218,218,218,0,0,0,0,0,0,0,0, 3582,3468,3469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,3582,3468,3354,3469,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,3467,3582,3468,3469,0,0,0,0,0,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,3582,3468,3469,0,0,0,0,0,0,218,0,0,0,218,0,218,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,3582,3468,3469,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,3582,3353,3468,3469,0,0,0,0,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,3466,0,3582,3468,3469,0,0,0,0,218,0,0,0,0,218,218,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3582,3468,3469,0,0,0,0,0,0,0,0,0,218,218,0,0,0,0,0,0,0,0,0,0, 218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3582,3468,3469,0,0,0,218,0,0,0,0,0,0,0,218,0,0,0,0,0,0,0, 0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,3582,3468,3469,0,0,0,0,3349,3350,3350,3346,3347,0,0,0,0,0,0,0,0, 0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,0,0,0,3582,3468,3354,3356,3356,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3467,0,0,0,0,0,0,0,0,218,0,0,0,0,0,0, 0,218,218,218,0,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,218,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,0,218,218,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 218,0,0,0,0,0,0,218,218,0,0,0,0,0,0,0,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,218,218,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,218,218,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,218,218,0,0,0,218,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,0,0,0,0,0,218,0,0,0,0, 218,218,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,0,0,0,218,0,0,0,0,0,0,0, 0,0,0,0,218,218,218,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 218,218,218,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,218,218,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,218,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,0,0,0,0,0, 218,218,218,218,218,218,218,218,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,218,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,218,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,218,0,0,0,0,218,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,0,0,0,0,0,218,218,218, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,218,218,218,218,218,218,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 218,0,0,0,0,0,0,0,0,218,0,0,0,0,0,0,0,218,0,0,0,0,0,0,218,218,218,218,218,218,0,0,0,0,0,0,0,0,0,0, 0,218,218,218,218,218,218,218,218,0,0,0,0,0,0,0,0,0,218,218,218,218,218,218,0,0,0,0,0,0,218,218,218,218,218,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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: maps/hoenn/hoenn-route-113.tmx ================================================ 4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,0,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,116,116,116,116,116,116,116,116,116,116, 4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,0,0,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,116,116,116,116,116,116,116,116,116,116,116,116, 4302,4303,4303,4303,4303,4303,4303,4303,4303,4303,4303,4304,0,0,0,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,116,116,116,116,116,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,0,0,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,0,0,0,116,116,116,116,116,116,116,116,116, 4077,4077,4077,4077,4077,4077,4077,4077,4077,4077,4077,4077,4077,4077,4077,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,0,0,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,114,114,114,0,116,116,116,116,116,0,114, 4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,0,0,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,0,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,114,114,114,114,114,114,114,114,114,114,114,114, 4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,0,0,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,0,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,114,114,114,114,114,114,114,114,114,114,114,114,114, 4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,116,116,116,116,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,0,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,116,116,116,116,116,116,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,116,116,116,116,116,116,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116, 4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,0,0,0,0,116,116,116,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,114,114,114,114,116,116,116,116,116,116,116,116,116,116, 4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,116,116,116,0,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,116,116,116,0,2608,2608,2608,2608,2608,2608,2608,116,116,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,116,116,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,116,116,116,116,116,116,116,116,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,116,116,116,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,116,116,116,116,116,116,116,116,116,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,116,116,116,116,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,116,116,116,116,116,116,116,116,116,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,116,116,116,116,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,0,2608,0,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,0,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,2608,114,2608,114,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,337,338,337,338,337,338,337,338,337,338,337,338,337,338,337,338,337,338,337,338,337,338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,135,135,135,793,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4636,4636,4636,2,3,3,3,3,3,3,3,3,3,3,4, 0,0,0,0,0,0,0,0,0,0,0,0,135,135,135,906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,3,0,0,0,0,0,0,0,0,0,0,117, 0,0,0,0,0,0,0,0,0,0,0,0,135,135,135,906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,795,0,0,0,0,0,0,0,0,0,0,0,0,795,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,115,0,0,0,0,0,0,0,0,0,0,0,117, 247,247,247,247,247,247,247,247,247,247,247,247,248,135,135,906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,908,0,0,0,0,0,0,0,0,0,0,0,0,908,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,115,228,229,229,229,229,229,342,0,341,229,229,229,230, 247,247,247,247,247,247,247,247,247,247,247,247,247,248,135,906,0,0,0,0,1132,1020,1020,1020,1020,1020,1246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,3,4,0,0,0,908,0,0,0,0,0,0,0,0,0,0,0,0,908,0,0,0,0,0,0,0,0,0,0,0,795,0,0,0,0,115,228,229,229,229,229,229,342,228,229,230,341,229,229,229, 247,247,247,247,247,247,247,247,247,247,247,247,247,247,248,906,0,0,0,0,0,0,0,0,0,0,906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,116,116,117,0,0,0,908,0,0,0,0,0,0,0,0,0,0,0,0,908,0,0,0,0,0,0,0,0,0,0,0,908,0,0,0,0,228,229,229,229,229,342,0,228,229,229,229,230,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,906,0,0,0,0,0,0,0,0,0,0,906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,116,116,117,0,0,0,908,0,0,0,0,0,0,0,0,0,2,3,4,908,0,0,0,0,0,0,0,0,0,0,0,908,0,0,0,0,0,0,0,0,2722,228,229,342,0,0,0,0,0,341,229, 0,0,0,3282,3283,3283,3284,0,3282,3283,3283,3284,0,0,2494,906,0,0,0,0,0,0,0,0,0,0,906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,116,116,117,0,0,0,908,0,0,0,0,0,0,0,0,0,115,116,117,908,0,0,0,0,0,0,1132,1020,1020,1020,1020,1021,0,0,0,0,0,0,0,2722,0,0,0,228,229,229,229,229,229,230,0, 0,0,0,3395,3396,3396,3397,0,3395,3396,3396,3397,0,2494,0,906,0,0,0,0,0,0,0,0,0,0,1019,1020,1020,1246,0,0,0,0,0,0,0,0,0,2,3,3,3,4,0,0,0,0,228,229,229,230,1132,1020,1020,1021,0,0,0,0,0,0,0,0,0,115,116,117,908,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2722,0,0,0,0,0,0,0,0,0,0,2491,2492, 0,0,0,3508,3509,3509,3510,0,3508,3509,3509,3510,0,2607,0,1019,1020,1020,1133,0,0,0,0,0,0,0,0,0,0,906,0,0,0,0,0,0,0,0,2,3,2,3,4,3,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,229,230,908,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2722,0,0,0,0,0,0,0,0,0,0,0,2717,2718, 0,0,0,0,0,0,0,0,0,0,0,0,0,2607,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1019,1020,1020,1020,1020,1133,0,0,0,115,2,228,229,230,3,4,117,0,0,0,0,0,0,0,0,0,0,0,0,0,1245,1020,1133,0,0,0,1132,1020,1020,1021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2609,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,3282,3283,3283,3284,0,3282,3283,3283,3284,0,2607,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,228,229,229,229,342,117,117,0,0,0,0,0,0,0,0,0,0,0,0,0,908,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2609,0,0,0,0,2,3,3,3,3,3,3,3,3,3, 0,0,0,3395,3396,3396,3397,0,3395,3396,3396,3397,0,2607,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,229,229,229,342,228,230,3,4,2,4,0,0,0,0,0,0,0,0,0,0,908,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,3,3,3,3,3,3,3,3,3,3,3,3,0,0,0,2,3,3,3,3,3, 0,0,0,3508,3509,3509,3510,0,3508,3509,3509,3510,0,2607,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,117,228,230,0,0,0,0,2,3,3,4,2,4,908,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,2,3,3,3,3,3,3,3,3,3,3,4,0,115,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,2607,0,0,0,0,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,342,0,0,117,0,0,0,0,0,0,115,0,0,117,228,230,908,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,3,2,3,3,3,2,3,3,3,3,3,3,4,0,0,117,2,3,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,2607,0,0,0,0,0,0,0,0,0,0,0,0,2,3,3,3,3,3,3,3,4,0,0,0,0,0,0,0,0,228,229,229,230,0,0,0,0,0,0,115,0,0,117,1132,1020,1021,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,2,4,115,0,0,0,115,0,0,0,0,341,229,230,0,0,117,115,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,2607,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,3,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,3,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,228,230,115,0,0,0,228,229,229,229,229,230,0,341,229,229,230,115,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,2607,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,228,229,342,0,0,0,0,0,341,229,229,230,0,0,0,228,229,229,229,229,229,229, 0,0,0,0,0,0,0,0,0,0,0,0,0,2607,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,228,229,229,229,229,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,11,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,228,229,229,229,229,229,229,229,229,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,229,229,229,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2721,228,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,208,208,208,208,208,208,208,208,208,208,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,208,208,208,208,208,208,208,208,208,208,208,208,0,0,0,0,0,0,0,208,208,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,208,208,208,208,208,208,208,208,208,0,0,0,0,208,208,208,0,0,0,0,0,208,208,208,208,208,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,208,208,208,208,208,208,208,208,208,208,0,0,0,0,208,208,208,0,0,0,0,0,208,208,208,208,208,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,208,208,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,208,0,0,0,0,0,0,0,0,0,0,208,208,208,208,208,208,208,208,208,0,0,0,0,0,0,0,0,0,0,0,208,208,208,208,208,208,208,208,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,208,208,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,208,208,208,0,0,0,0,0,0,0,0,0,208,208,208,208,208,208,208,208,0,0,0,0,0,0,0,0,0,0,0,0,0,208,208,208,208,208,208,208,208,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,208,208,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,3849,0,0,3623,0,3849,3849,0,0,0,0,0,0,0,0,0,208,208,208,208,208,208,0,0,0,0,0,0,0,0,0,208,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,208,208,208,208,208,0,0,0,0,0,0,0,0,0,0,0,0,208,208,208,208,208,208,208,208,208,208,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,3623,0,0,0,3623,0,0,0,0,0,0,0,0,0,208,208,208,208,208,208,208,208,208,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,208,208,208,208,208,208,208,208,208,0,0,0,0,0,0,0,0,0,208,208,208,208,208,208,208,208,208,208,208,208,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,208,208,208,208,208,208,208,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,208,208,208,208,208,208,0,0,0,0,0,0,0,0,0,0,0,0,208,208,208,208,208,208,208,208,208,208,208,208,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,3736,0,0,0,0,0,0,0,0,0,0,0,0,208,208,208,208,208,208,208,208,208,208,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,208,208,208,208,0,0,0,0,0,0,0,0,0,0,0,0,208,208,208,208,208,208,208,208,208,208,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,3623,0,3849,3849,0,0,0,3849,3849,0,0,0,0,0,0,0,0,0,0,0,208,208,208,208,208,208,208,208,208,208,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,208,208,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,208,208,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,208,208,208,208,208,208,208,208,208,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,208,208,208,208,208,208,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,450,451,450,451,450,451,450,451,450,451,450,451,450,451,450,451,450,451,450,451,450,451,450,451,450,451,450,451,450,451,450,451,450,451,450,451,450,451,450,451,450,451,450,451,450,451,450,451,450,451,450,451,450,451,450,451,450,451,450,338,337,451,450,451,450,451,450,451,450,338,547,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,337,451,450,338,337,451,450,451,450,451,450,338,337,451,450,451,450,451,450,451,450,451,450,451,450,338,337,338,337,338,337,338,337,338,337,338,337,338,337,338,337,338,337,451,450,451,450,451,450,338,337,338,337,338,337,338,337,451,450,451,225,224,450,338,337,451,450,451,450,338,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,450,451,225,224,450,451,450,451,450,451,225,224,450,451,450,3752,3753,3753,3755,451,450,451,450,451,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,546,547,337,338,337,338,337,338,0,0,0,0,0,547,0,0,337,338,337,338,337,338,547,0,337,451,450,338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,337,451,450,338,337,338,337,338,337,338,337,451,450,451,450,338,3865,3866,3866,3868,337,338,337,338,337,338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,225,224,225,0,0,546,224,450,451,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,450,451,225,0,0,0,0,0,0,0,337,338,337,338,0,3978,3979,3980,3981,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,206,0,0,0,0,0,0,0,0,0,0,0,546,224,225,224,450,338,337,338,0,547,0,337,338,337,338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,337,451,450,338,0,0,0,0,0,0,0,0,0,0,0,205,4091,4092,4093,4094,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,337,338,337,338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,907,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,450,451,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,225,224,225,224,225,0,0,0,0,0,0,0,0,0,0,205,547,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,337,451,450,338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,337,451,450,451,450,338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,337,338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,337,338,337,338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,547,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,547,546,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,225,0,0,0,0,0,0,0,0,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,0,0,547,0,0,0,0,0,0,0,0,224,225,224,225,224,225,224,225,224,225,224,225,224,225,547,546,0,0,907,907,0,0,0,0,0,0,0,0,0,0,0,0,907,0,0,0,0,0,0, 224,225,224,225,224,225,224,225,224,225,224,225,224,225,0,337,451,225,224,225,224,225,224,225,224,225,0,0,0,0,0,0,0,0,0,0,224,225,224,225,546,0,0,0,0,0,0,546,224,225,224,225,546,0,0,0,0,0,0,0,224,450,338,337,451,450,451,450,338,337,451,450,338,337,338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 450,451,450,451,450,338,337,451,450,338,337,451,450,451,225,224,450,451,450,451,450,451,450,451,450,451,0,0,0,0,0,0,0,0,0,546,337,451,450,451,225,547,0,0,0,0,0,224,450,338,337,451,225,0,0,0,0,0,0,0,337,451,225,224,450,451,450,451,450,451,450,451,225,224,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 338,337,451,450,451,225,224,450,451,225,224,450,451,450,451,450,451,450,338,337,451,450,338,337,451,225,0,0,0,0,0,0,0,0,0,0,0,337,338,337,451,225,224,225,224,225,224,225,224,225,224,450,338,0,0,0,0,0,0,0,224,450,451,450,451,450,451,450,451,450,451,450,451,450,338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 225,224,450,451,450,451,450,451,450,451,450,451,450,451,450,451,450,451,225,224,450,451,225,224,450,338,0,0,0,0,0,0,0,0,0,0,0,224,225,224,450,451,450,451,450,451,450,451,450,451,450,451,225,0,0,0,0,0,0,224,450,451,450,451,450,451,450,451,450,451,450,451,450,451,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 451,450,338,337,451,450,451,450,451,450,451,450,451,450,451,450,451,450,451,450,451,450,451,450,451,225,0,0,0,0,0,0,0,0,0,0,0,337,451,450,451,450,451,450,451,450,451,450,451,450,451,450,338,0,0,0,0,0,0,337,451,450,451,450,451,450,451,450,451,450,451,450,451,450,338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 337,338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,450,451,450,451,450,451,450,451,450,451,450,451,450,451,225,0,0,0,218,0,0,224,450,451,450,451,450,451,450,451,450,451,450,451,450,451,225,0,218,218,218,218,0,218,0,0,218,218,218,218,218,218,218,0,0,0,218,218,218,218,218,218 ================================================ FILE: maps/hoenn/hoenn-route-114.tmx ================================================ 4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4189,4190,4190,4528,4303,4303,4303,4303,4303,4303,4303,4303,4303,4303,4303, 4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4191,0,0,0,0,4189,4190,4190,4191,0,0,0,0,0,0,0,0,0,0,0, 4190,4190,4190,4190,4190,4303,4303,4303,4303,4303,4303,4303,4303,4303,4303,4303,4304,0,0,0,0,4302,4303,4303,4304,0,0,0,0,0,0,0,0,0,0,0, 4190,4190,4190,4190,4190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4417,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 4190,4190,4190,4190,4191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4076,4077,4077,4077,4077,4077,4077,4077, 4190,4190,4190,4190,4191,0,0,4076,4077,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4189,4190,4190,4190,4190,4190,4190,4190, 4190,4190,4190,4190,4191,0,0,4189,4190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4076,4077,4077,4077,4077,4642,4190,4190,4190,4190,4190,4190,4190, 4303,4303,4303,4303,4304,0,0,4189,4190,0,0,0,0,0,0,0,0,0,0,0,0,0,4076,4642,0,0,0,0,4190,4190,4190,4190,4190,4190,4190,4190, 0,0,0,0,0,0,0,4189,4190,0,0,0,0,0,0,0,0,0,0,0,0,0,4189,4190,0,0,0,0,4190,4190,4190,4190,4190,4190,4190,4190, 0,0,0,0,0,0,0,4302,4303,0,0,0,0,0,0,0,0,0,0,0,0,0,4189,4190,0,0,0,0,4190,4190,4190,4190,4190,4190,4190,4190, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4076,4077,4077,4077,4642,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4076,4077,4642,4190,4190,4190,4190,4190,4190,0,0,0,4190,4190,4190,4190,4190,4190,4190,4190, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4189,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190, 0,0,4076,4077,4077,4077,4077,4077,4077,0,0,0,0,4077,4077,4077,4642,0,0,0,0,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190, 0,0,4189,4190,4190,4190,4190,4190,4190,0,0,0,0,4190,4190,4190,4190,0,0,0,0,4190,4190,0,0,0,0,0,4190,4190,4190,4190,4190,4190,4190,4190, 0,0,4189,4190,4190,4190,4190,4190,0,0,0,0,0,4190,4190,4190,4190,0,0,0,0,4190,4190,0,0,0,0,0,4190,4190,4190,4190,4190,4190,4190,4190, 0,0,0,0,0,0,0,0,0,0,0,0,0,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,0,0,0,0,0,4190,4190,4190,4190,4190,4190,4190,4190, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4190,4190,4190,4190,4190,4190,4190,0,0,0,0,0,4190,4190,4190,4190,4190,4190,4190,4190, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4190,4190,4190,4190,4190,4190,4190,0,0,0,0,0,4190,4190,4190,4190,4190,4190,4190,4190, 4077,4077,4077,4077,4077,4077,4077,4077,0,0,0,0,0,0,0,0,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190, 4190,4190,4190,4190,4190,4190,4190,4190,0,0,0,0,0,0,0,0,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190,4190, 0,4190,4190,4190,4190,4190,4190,4190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4190,4190,4190,4190,4190,4190, 119,4190,4190,4190,4190,4190,4190,4190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4190,4190,4190,4190,4190,4190, 119,119,4190,4190,4190,4190,4190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4190,4190,4190,4190,4190,4190, 119,119,119,4190,4190,4190,4190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4190,4190,4190,4190,4190,4190, 119,119,119,119,119,119,0,0,0,0,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4190,4190,4190,4190,4190,4190, 119,119,119,119,119,119,0,0,0,0,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4190,4190,4190, 119,119,119,119,119,119,0,0,0,0,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4190,4190,4190, 119,119,119,119,119,119,0,0,0,0,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,119, 119,119,119,119,119,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,119, 119,119,119,119,119,119,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,119, 119,119,119,119,119,119,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,119, 119,119,119,119,119,119,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119,119, 119,119,119,119,119,119,0,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,0,119,119, 119,119,119,119,119,119,119,119,119,119,119,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,119,119, 119,119,119,119,119,119,119,119,119,119,119,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,119,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,119,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,119,119,119,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,119,119,119,119,119,119,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,119,119,119,119,119,119,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,119,119,119,119,119,119,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,119,119,119,119,119,119,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,119,114,114,114,114,114,114,114,114,114,114,114,114,114,114,119,119,119,119,119,119,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,114,114,114,114,114,114,114,114,119,119,119,119,119,119,119,119,119,119,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,114,114,114,114,114,114,114,119,119,119,119,119,119,119,119,119,119,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,114,114,114,114,114,114,119,119,119,119,119,119,119,119,119,119,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,114,114,114,114,114,114,119,119,119,119,119,119,119,119,119,119,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,114,114,114,114,119,119,119,119,119,119,119,119,119,119,119,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,359,247,248,135,0,0,0,0,0,247,247,247,247,247,247,247,247,247,247, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135,359,247,248,0,0,0,0,135,0,247,3756,3757,3757,3760,247,247,247,247, 0,0,0,0,0,359,247,247,247,247,247,247,247,247,247,247,247,248,135,0,359,247,247,247,247,0,135,0,247,247,247,247,247,247,247,247, 0,0,0,0,0,135,359,247,247,247,247,247,247,247,247,247,247,247,248,359,248,359,0,0,0,247,0,135,0,0,0,0,0,0,0,0, 0,0,0,0,0,135,135,0,0,4409,4410,4410,4410,4410,4410,4410,4410,4410,4411,135,359,248,359,0,0,0,247,0,0,0,0,0,3282,3283,3283,3284, 0,0,0,0,0,135,135,0,0,4522,0,0,0,0,0,0,0,0,4524,135,135,359,248,0,0,0,0,0,0,0,0,0,3395,3396,3396,3397, 0,0,0,0,0,135,135,0,0,4522,0,0,0,0,4524,359,247,247,247,248,135,135,0,0,4409,4410,4410,4411,0,3285,3287,0,3395,3396,3396,3397, 247,247,247,247,247,248,135,0,0,4522,0,0,4524,359,247,248,359,247,247,247,248,135,0,0,4522,0,0,4524,0,3398,3400,0,3508,3509,3509,3510, 247,247,247,247,247,247,248,0,0,4522,0,0,4524,135,359,247,248,359,247,247,247,248,0,0,4522,0,0,4524,0,3398,3400,0,0,0,0,0, 247,247,247,247,247,247,247,247,247,2267,2267,2267,2267,248,135,359,247,248,0,0,0,0,0,0,4636,4636,4636,4636,0,3398,3400,0,0,0,0,0, 359,247,247,247,247,247,247,247,247,2267,2267,2267,2267,247,248,135,0,0,0,0,3285,3286,3286,3286,3286,3286,3286,3286,3286,3399,3400,0,3282,3283,3283,3284, 135,359,247,247,247,247,247,247,247,2267,2267,2267,2267,247,247,248,0,0,0,0,3398,3399,3512,3512,3512,3512,3512,3512,3512,3512,3513,0,3395,3396,3396,3397, 135,135,0,0,0,0,0,0,0,4522,0,0,4524,0,0,0,0,4409,4410,4411,3398,3400,0,0,0,0,0,0,0,0,0,0,3395,3396,3396,3397, 248,135,0,0,0,0,0,0,0,4522,0,0,4524,0,0,0,0,4522,0,4524,3398,3400,0,4409,4410,4410,4410,4411,0,0,0,0,3508,3509,3509,3510, 247,248,0,0,0,0,0,0,4409,4635,0,0,4524,0,0,0,0,4522,0,4524,3398,3400,0,4522,0,0,0,4524,0,0,0,0,0,0,0,0, 4410,4410,4410,4410,4410,4410,4410,4410,4635,0,0,0,4524,0,0,0,0,4636,4636,4636,3398,3400,0,4522,0,0,0,4524,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,4637,4410,4410,4411,0,0,0,0,3398,3400,0,4522,0,0,0,4524,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,0,0,0,0,3398,3400,0,4522,0,0,0,4524,0,0,0,0,0,0,0,0, 4636,4636,4636,4636,4636,4636,4636,4636,4522,0,0,0,0,0,0,4524,0,0,0,0,3511,3513,0,4636,4636,4636,4636,4636,0,0,0,0,0,0,0,0, 7,0,0,0,0,0,0,0,4522,0,0,0,0,0,0,4524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 120,0,0,0,0,0,0,0,4522,0,0,0,0,0,0,4637,4410,4410,4410,0,0,0,0,4410,4410,4410,4410,4410,4410,4411,0,0,0,0,0,0, 6,7,0,0,0,0,0,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,0,0,0,0,0,0, 0,6,7,0,0,0,0,4409,4635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,0,0,0,0,0,0, 0,0,6,6,6,6,7,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,0,0,0,0,0,0, 7,0,0,0,0,0,120,4522,0,4524,4636,4636,4636,4636,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,0,0,0,0,0,0, 120,0,0,0,0,0,120,4522,0,4524,0,0,0,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4637,4410,4410,4411,0,0,0, 6,6,7,0,0,0,120,4522,0,4524,0,0,0,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,5,6,6, 0,0,120,0,0,0,120,4522,0,4524,0,0,0,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,118,0,0, 0,0,6,7,0,0,120,4522,0,4637,4410,4410,4410,4410,4635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,118,0,0, 0,0,0,120,0,0,120,4636,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,118,0,0, 0,0,0,120,0,0,120,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,118,0,5, 0,0,0,120,0,0,120,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,118,0,118, 0,0,0,120,0,0,120,0,4636,4636,4636,4636,4636,4636,4522,0,0,0,0,0,0,0,0,4524,4636,927,928,928,928,931,4636,4636,4636,118,0,118, 0,0,0,6,6,7,6,6,6,6,6,7,0,0,4636,4636,4636,4636,4636,4636,0,0,0,4636,0,0,0,0,0,0,0,0,0,118,0,118, 6,6,6,7,0,6,6,6,6,6,7,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,118, 7,0,0,120,7,0,0,0,0,0,120,6,6,7,1248,1023,1023,1023,1136,0,0,0,1135,1023,1249,0,0,0,0,0,0,0,0,118,0,118, 6,6,7,6,6,6,6,7,0,0,120,0,0,120,911,0,0,0,0,0,0,0,0,0,1022,1136,2714,2715,2716,1135,1249,0,0,118,0,118, 0,0,120,0,0,0,0,120,7,0,6,7,0,120,911,0,0,0,0,0,0,0,5,7,0,0,0,0,0,0,909,0,0,118,0,118, 0,0,120,0,0,0,0,120,120,7,0,120,0,120,911,0,0,0,0,0,0,0,231,233,0,0,0,0,0,0,909,0,0,118,0,118, 0,0,120,0,0,0,0,120,120,120,0,120,0,120,911,0,0,0,0,0,0,0,0,5,7,0,0,0,0,0,909,0,0,118,0,118, 0,344,233,0,0,0,0,120,120,120,0,120,0,120,911,0,0,1248,1023,1023,1136,0,0,231,233,0,0,0,0,0,909,0,0,118,0,118, 344,233,0,0,0,0,0,120,120,120,0,120,0,120,911,0,0,911,0,0,0,0,0,0,0,0,0,0,0,0,909,0,0,118,0,118, 120,0,0,0,0,0,344,233,120,120,0,120,0,120,911,0,0,911,0,0,0,0,0,0,0,0,0,0,0,0,909,0,0,118,0,118, 120,0,0,344,232,232,233,0,120,120,0,120,0,6,6,7,0,911,0,0,0,0,0,0,0,0,0,1135,1249,0,909,0,0,118,0,118, 120,0,344,233,344,232,232,232,233,120,0,120,0,0,0,6,7,911,0,0,0,0,0,0,0,0,0,0,909,0,909,0,0,118,0,118, 120,0,120,344,233,344,232,232,232,233,344,233,0,0,0,0,120,911,0,0,0,1135,1023,1023,1023,1023,1249,0,909,0,909,0,0,118,0,118, 6,7,120,120,344,233,0,0,344,232,233,0,0,0,0,0,120,911,0,0,0,0,0,0,0,0,909,0,909,0,909,5,6,6,6,6, 0,120,120,120,120,0,0,344,233,0,0,0,0,0,0,0,120,911,0,0,0,0,0,0,0,0,909,0,5,6,6,6,5,6,6,6, 0,120,120,120,120,344,232,233,0,0,0,0,0,344,232,232,233,0,0,0,5,7,0,0,0,0,909,5,118,5,6,6,6,5,6,6, 0,120,120,120,120,120,0,0,0,0,0,0,0,120,0,0,0,0,0,0,231,233,0,0,0,0,909,118,118,118,0,0,5,6,0,0, 0,120,120,120,120,120,0,0,0,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,909,118,118,231,232,345,118,0,0,0, 0,120,120,120,120,120,0,5,7,0,0,0,0,120,0,0,0,0,0,0,0,0,0,0,0,0,909,118,118,0,0,118,118,0,0,0, 0,120,120,120,120,6,7,231,233,0,0,0,0,6,6,6,7,0,0,0,0,0,0,5,6,6,6,6,118,0,0,118,118,0,0,0, 0,120,120,120,6,7,6,6,6,7,0,0,0,0,0,0,120,0,0,0,0,0,0,118,5,6,6,6,6,0,0,118,231,345,0,0, 0,120,120,6,6,6,6,7,0,6,6,7,0,0,0,0,6,6,7,0,0,0,0,118,118,0,0,0,0,0,0,118,0,118,0,0, 0,120,6,6,6,6,7,6,7,0,0,6,6,7,0,0,0,0,120,0,0,0,0,118,118,0,0,0,0,0,0,118,0,231,345,0, 0,6,6,6,6,7,6,7,6,6,6,7,0,120,0,0,0,0,120,0,0,0,0,118,231,232,232,345,0,0,0,231,232,345,118,0, 0,0,0,0,0,120,0,0,7,0,0,120,7,120,0,0,0,0,6,6,6,6,6,6,0,0,0,118,0,0,0,0,0,118,118,0, 0,0,0,0,0,120,0,0,120,0,0,120,120,120,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0,0,118,118,0, 0,0,0,344,232,233,0,0,120,0,344,233,120,120,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0,0,118,118,0, 0,0,344,233,344,232,232,232,233,344,233,0,120,6,6,6,6,6,6,6,6,7,0,0,0,0,5,6,0,0,0,0,5,6,118,0, 0,0,120,344,233,344,232,232,232,233,344,232,233,0,5,6,6,6,6,6,7,120,5,6,6,6,6,0,0,0,0,0,118,0,118,0, 0,0,120,120,0,120,344,232,232,232,233,0,0,5,118,0,0,0,0,0,6,6,6,6,7,0,5,7,0,0,0,0,118,0,118,0, 0,0,120,120,344,233,120,0,0,0,0,0,5,6,6,6,0,0,0,0,0,0,0,0,120,7,231,233,0,0,0,5,6,0,118,0, 0,0,120,120,120,0,120,0,0,0,0,5,118,0,0,0,0,0,0,0,0,0,0,0,6,6,7,0,0,0,0,118,0,5,6,0, 0,0,120,120,120,344,233,0,0,0,0,118,118,0,0,0,0,0,5,6,6,7,0,0,0,0,120,7,0,0,0,118,0,118,0,0, 0,0,120,120,120,120,5,7,0,0,0,118,231,232,232,232,345,5,6,0,0,120,0,0,0,0,120,120,0,0,0,118,0,118,0,0, 0,0,120,120,120,120,231,233,0,0,0,231,345,0,0,0,118,118,0,0,344,233,0,0,0,0,120,120,0,0,0,118,5,6,0,0, 0,0,120,120,6,6,7,0,0,0,0,0,231,232,232,345,118,231,345,0,120,0,0,344,232,232,233,120,0,0,0,118,118,0,0,5, 0,0,120,6,7,0,120,7,0,0,0,0,0,0,0,118,231,345,231,232,233,0,344,233,0,0,0,120,0,0,0,118,118,0,0,118, 0,0,120,0,120,0,120,120,0,0,0,0,0,0,0,231,345,118,0,0,0,0,120,344,232,232,232,233,0,0,0,118,118,0,0,118, 0,0,120,0,120,0,6,6,7,0,0,0,0,0,0,0,118,118,5,6,6,7,120,120,0,0,0,0,0,0,0,118,118,5,6,6, 0,0,120,0,6,6,7,0,120,7,0,0,0,0,0,5,6,6,118,0,0,120,120,120,0,0,0,0,0,0,5,6,6,118,0,0, 0,0,6,6,7,0,120,0,6,6,6,6,6,6,6,6,5,6,6,0,0,120,6,6,7,0,0,0,0,5,118,0,5,6,0,0, 0,0,0,0,120,0,120,0,0,0,0,0,0,5,6,6,6,0,5,6,7,6,7,0,6,6,6,6,6,6,6,0,118,0,0,5, 0,0,0,0,6,7,6,6,6,6,6,6,6,6,0,5,6,6,6,0,120,0,120,0,0,0,0,0,0,0,0,0,118,0,0,118, 0,0,0,0,0,6,7,0,0,0,0,0,5,6,6,6,0,0,0,0,6,7,6,6,7,0,0,0,0,0,5,6,6,0,0,118, 0,0,0,0,0,0,6,6,6,6,6,6,6,0,0,0,0,0,0,0,0,6,6,7,6,6,6,7,0,0,118,0,0,0,5,6, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,7,0,0,6,6,6,6,0,0,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,359,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,359,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,248,0,359,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,247,247,247,0,248,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,247,247,247,0,248,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3736,0,3849,3849,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3849,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3623,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3623,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3623,0,0,0,0,0,0,0,0,0,0,0,0,0,3849,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3623,0,0,0,0,0,0,0,0,3849,3849,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,3736,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3623,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3623,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3623,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3623,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1350,1351,1351,1352,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1350,1351,1351,1352,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1350,1351,1351,1352,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1350,1351,1351,1352,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1350,1351,1351,1352,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1350,1351,1351,1352,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,659,0,0,659,0,0,0,0,0,1350,1351,1351,1352,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,659,0,0,0,0,0,0,1350,1351,1351,1352,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1350,1351,1351,1352,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1350,1351,1351,1352,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1350,1351,1351,1352,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1350,1351,1351,1352,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1350,1351,1351,1352,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,95,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,95,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,95,95,95,95,95,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,95,95,95,95,0,0,0,0,0,0,2837,2498,2838,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,95,95,95,0,0,0,0,0,0,0,2836,2611,2949,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,95,95,0,0,0,0,0,0,0,0,2836,2611,2949,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,0,0,0,0,0,0,0,0,0,0,1811,1812,1813,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,1348,0,0,0,0,0,0,0,1348,1349,0,95,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,95,95,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,95,95,95,95,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,95,95,95,95,95,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,95,95,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,95,95,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,1348,1349,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,459,0,0,0,0,0,0,0,0,0,0,0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,1348,1349,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,1348,1349,0,0,0,0,0,0,0,0,0,1348,1349,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1348,1349,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 451,450,451,450,451,450,451,450,451,450,451,450,451,450,451,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 450,451,450,338,337,338,337,338,337,338,337,338,337,338,337,338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 451,450,451,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 450,451,450,338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3869,3870,3870,3873,224,225,224,225, 451,450,451,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3982,3983,3984,3986,337,338,337,338, 450,451,450,338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4091,4092,4093,4094,0,0,0,0, 338,337,338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,224,225,224,225,0,0,0,0,0,0,0,0,0,0,337,338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,337,451,450,451,225,0,0,0,0,0,0,224,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,224,450,451,450,338,0,0,0,0,0,224,450,451,225,0,0,0,0,0,0,0,0,0,0,0,224,225,0,0,0,0,0,0, 0,0,0,337,338,337,338,0,0,0,0,0,0,337,338,337,338,0,0,0,0,0,0,0,0,0,0,0,337,451,225,0,0,0,0,0, 0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,337,451,225,224,225,0,0, 0,202,203,0,0,315,316,202,203,0,0,0,0,0,0,0,0,224,225,0,0,0,0,0,0,0,0,0,0,224,450,451,450,451,225,224, 0,315,316,224,225,224,225,315,316,0,0,0,0,0,0,0,224,450,451,225,0,0,0,0,0,0,0,0,0,337,338,337,451,450,451,450, 0,0,224,450,451,450,451,225,0,0,0,0,0,0,0,0,337,451,450,338,0,0,0,0,0,0,0,0,0,224,225,0,337,451,450,451, 0,224,450,451,450,451,450,338,0,0,0,0,0,0,0,0,0,337,338,0,0,0,0,0,0,0,0,546,0,337,451,225,224,450,451,450, 0,337,451,450,451,450,451,225,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,337,451,450,451,450,338, 0,0,337,451,450,451,450,338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,450,451,450,451,225, 0,0,0,337,338,337,338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,337,451,450,338,337,451, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,224,450,451,225,224,450, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,337,338,337,451,450,451, 0,910,0,0,0,0,0,0,0,0,0,216,217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,337,338,337, 0,0,0,0,0,0,0,0,0,0,0,329,330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1040,1041,1041,1041,1044,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1153,1155,1154,1155,1157,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1266,1268,1267,1268,1270,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,910,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,910,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,910,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,910,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,910,0,0,0,0,0,0,0,0,0,0,0,0,910,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,910,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,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: maps/hoenn/hoenn-route-115.tmx ================================================ 0,4978,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 0,4978,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 0,4978,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 0,4978,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 0,4978,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 0,4978,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 0,4978,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 0,4978,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 0,4978,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 0,4978,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 0,4978,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 0,4978,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 0,4978,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 0,4978,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 0,4978,4978,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 0,0,4978,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 0,0,4978,4978,4978,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 0,0,0,0,4978,4978,4978,114,114,114,114,114,114,114,114,114,114,114,114,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 0,0,0,0,0,0,4978,114,114,114,114,114,114,114,114,114,114,114,114,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 0,0,0,0,0,0,4978,114,114,114,114,114,114,114,114,114,114,114,114,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 0,0,0,0,0,0,4978,114,114,114,114,114,114,114,114,114,114,114,114,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 0,0,0,0,0,0,4978,114,114,114,114,114,114,114,114,114,114,114,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 0,0,0,0,0,0,4978,4978,114,114,114,114,114,114,114,114,114,114,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 0,0,0,0,0,0,0,4978,114,114,114,114,114,114,114,114,114,114,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 0,0,0,0,0,0,0,4978,114,114,114,114,114,114,114,114,114,114,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 0,0,0,0,0,0,0,4978,114,114,114,114,114,114,114,114,114,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 0,0,0,0,0,0,0,4978,114,114,114,114,114,114,114,114,114,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 0,0,0,0,0,0,0,4978,114,114,114,114,114,114,114,114,114,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 0,0,0,0,0,0,0,4978,114,114,114,114,114,114,114,114,114,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 0,0,0,0,0,0,0,4978,114,114,114,114,114,114,114,114,114,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 0,0,0,0,0,0,0,4978,4978,114,114,114,114,114,114,114,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 0,0,0,0,0,0,0,4978,4978,4978,4978,114,114,114,114,114,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 0,0,0,0,0,0,0,0,0,0,4978,114,114,114,114,114,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 0,0,0,0,0,0,0,0,0,0,4978,114,114,4978,4978,114,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,114,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,114,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,114,114,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,114,114,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,114,114,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,114,114,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,114,114,114,114,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,114,114,114,114,114,114,114,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,114,114,114,114,114,114,114,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,114,114,114,114,114,114,114,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,114,114,114,114,114,114,114,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,114,114,114,114,114,114,114,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,114,114,114,114,114,114,114,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,114,114,114,114,114,114,119,119,119,119,119,119,119,119,119,119,119,119,119,119,119, 0,0,0,0,0,0,0,0,0,0,0,0,0,2605,2605,2605,2605,4978,4978,114,114,114,114,114,114,114,114,114,114,114,114,114,114,119,119,119,119,119,119,119, 0,0,0,0,0,0,0,0,0,0,0,0,0,2605,2605,2605,2605,4978,4978,114,114,114,114,114,114,114,114,114,114,114,114,114,114,119,119,119,119,119,119,119, 0,0,0,0,0,0,0,0,0,0,0,0,0,2605,2605,2605,2605,4978,4978,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,2605,2605,2605,2605,2605,2605,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,2605,2605,2605,2605,2605,2605,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,2605,2605,2605,2605,2605,2605,2605,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,2605,2605,2605,2605,2605,2605,2605,2605,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2605,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2605,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2605,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2605,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2605,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2605,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,2605,2605,2605,2605,2605,2605,2605,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,2605,2605,2605,2605,2605,2605,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,2605,2605,2605,2605,2605,2605,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,2605,2605,2605,2605,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,2605,2605,2605,2605,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,2605,2605,2605,2605,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,2605,2605,2605,2605,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,2605,2605,2605,2605,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,2605,2605,2605,2605,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,2605,2605,2605,2605,2605,2605,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,2605,2605,2605,2605,2605,2605,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,2605,2605,2605,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114 5429,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,118,118,118,118,0,0,0,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 4977,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,118,118,118,118,0,0,0,231,232,345,0,0,5,6,6,6,7,0,0,0,0,0,0, 4977,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,118,118,118,118,0,0,0,0,0,118,0,0,118,0,0,0,6,6,6,6,7,0,0, 4977,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,118,118,118,118,0,0,0,0,0,118,0,0,118,0,0,0,0,0,0,0,6,6,7, 4977,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,118,118,118,231,232,232,232,232,345,231,232,345,231,232,232,232,232,232,345,0,0,0,120, 4977,115,0,0,0,95,95,95,0,0,0,2837,2498,2498,2498,2838,118,118,118,231,232,232,232,232,345,118,0,0,231,232,232,232,232,232,345,118,0,0,344,233, 4977,115,0,0,95,95,95,95,95,0,0,1811,1812,1812,1812,1813,118,118,231,232,232,232,345,0,118,231,232,232,232,232,232,232,232,345,118,118,0,0,120,0, 4977,115,0,0,95,95,95,95,95,0,0,0,0,0,0,0,118,118,0,0,0,0,118,0,231,232,345,0,0,0,0,0,0,118,118,118,0,0,120,0, 4977,115,0,0,95,95,95,95,95,0,0,0,0,0,0,0,118,118,0,0,0,0,231,232,345,0,231,232,772,232,232,345,0,118,118,231,232,232,233,0, 4977,115,0,0,0,0,95,95,0,0,0,0,0,0,0,0,118,118,0,0,0,0,0,0,231,232,232,232,772,232,345,118,0,118,231,232,232,232,345,0, 4977,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,118,0,0,0,0,0,0,0,0,0,0,0,0,118,118,0,231,232,232,232,345,118,0, 4977,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,118,0,0,0,0,0,0,0,0,0,0,0,0,118,118,0,0,0,0,0,118,118,0, 4977,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,231,1348,1349,232,232,232,232,232,232,232,1348,1349,345,118,118,0,0,0,0,0,118,118,0, 4977,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,231,232,1348,1349,345,0,0,0,0,0,0,0,0,118,118,118,0,0,0,0,0,118,118,0, 4977,228,342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0,5,6,7,0,118,118,118,0,0,0,0,0,118,118,0, 5090,5429,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0,231,232,233,0,118,118,118,0,0,0,0,5,6,118,0, 0,4977,228,229,342,0,0,0,0,0,0,0,0,0,0,0,0,0,5,6,6,0,0,0,0,0,0,0,0,118,118,118,0,0,0,5,6,5,6,0, 0,5090,5091,5429,228,229,342,0,0,0,0,0,0,0,0,0,0,0,118,0,5,6,7,0,0,0,0,5,6,6,118,118,0,0,0,118,0,118,0,0, 0,0,0,5090,5091,5429,115,0,0,0,0,0,0,0,0,0,0,0,118,0,231,232,233,0,0,5,6,6,5,6,6,6,0,0,5,6,0,118,0,0, 0,0,0,0,0,4977,115,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,0,0,0,118,0,5,118,0,0,0,0,0,118,0,0,118,0,0, 0,0,0,0,0,4977,115,0,0,0,0,0,0,0,0,0,0,0,118,0,0,0,5,6,6,6,5,6,6,0,0,0,0,0,118,0,0,118,0,0, 0,5,7,0,0,4977,115,0,0,0,0,0,0,0,0,0,0,5,6,0,0,0,118,0,5,6,118,0,0,0,0,0,0,5,6,0,0,118,0,0, 0,231,233,0,0,4977,228,342,0,0,0,0,0,0,0,0,0,118,5,6,6,6,6,5,6,6,6,0,0,0,5,6,6,6,0,5,6,6,0,0, 0,0,0,0,0,5090,5429,115,0,0,0,0,0,0,0,0,0,118,118,0,0,0,5,118,5,6,7,0,0,0,118,5,6,6,6,6,0,0,0,0, 0,0,0,0,0,0,4977,115,0,0,0,0,0,0,0,0,0,118,118,0,5,6,6,118,231,232,233,0,0,5,6,6,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,4977,115,0,0,0,0,0,0,0,0,5,6,118,0,118,0,5,6,0,0,0,0,5,118,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,4977,115,0,0,0,0,0,0,0,0,118,0,118,5,6,0,118,0,0,0,0,0,118,118,0,0,0,0,0,0,0,0,0,0, 0,0,5,7,0,0,4977,115,0,0,0,0,0,0,0,0,118,0,118,118,0,0,118,0,0,5,6,6,6,6,0,0,0,0,0,0,0,0,0,0, 0,0,231,233,0,0,4977,115,0,0,0,0,0,0,0,0,118,0,118,231,345,0,118,0,5,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,4977,115,0,0,0,0,0,0,0,0,118,0,118,0,118,0,118,0,118,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,4977,228,229,342,0,0,0,0,0,5,6,0,118,0,231,345,231,345,118,231,345,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,5,7,0,0,4977,0,0,228,342,0,0,0,0,118,0,0,231,345,0,118,0,118,231,345,231,345,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,231,233,0,0,5090,5091,5091,5429,115,0,0,0,0,118,0,0,0,118,0,118,0,231,345,231,345,231,345,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,5,7,0,0,0,0,4977,228,1348,1349,229,342,118,0,0,0,118,0,118,0,0,231,345,118,0,231,232,232,232,345,0,0,0,0,0,0,0, 0,0,0,231,233,0,0,0,0,4977,0,0,0,0,115,118,0,0,0,118,0,231,232,345,0,118,231,345,0,0,0,0,231,232,232,232,232,232,345,0, 0,0,0,0,0,0,0,0,0,4977,0,0,0,0,115,118,0,5,7,118,0,0,0,118,0,231,345,231,232,232,232,232,232,232,232,232,232,345,118,0, 0,5,7,0,0,0,0,0,0,5090,5091,5091,5429,0,115,231,345,231,233,231,345,0,0,118,0,0,231,459,232,232,232,232,232,232,232,345,0,118,231,345, 0,231,233,0,0,0,0,0,0,0,0,0,5090,5429,115,0,118,0,0,0,118,0,0,231,232,232,232,572,232,232,232,232,345,0,0,118,0,231,345,118, 0,0,0,0,0,0,0,0,0,0,0,5,7,4977,115,0,118,0,0,0,231,232,232,345,0,0,0,0,0,0,0,0,231,232,345,231,232,345,118,118, 0,0,0,0,0,0,0,0,0,0,0,231,233,4977,228,342,231,345,0,0,0,5,7,118,0,0,0,0,344,232,232,232,232,345,118,0,0,118,118,118, 0,0,0,0,0,0,0,0,0,0,0,0,0,5090,5429,115,0,231,232,345,0,231,233,118,0,0,0,0,120,5,7,0,0,118,118,0,0,118,118,118, 0,5,7,0,0,0,0,0,0,5,7,0,0,0,4977,115,0,0,0,231,232,232,345,118,0,0,0,0,120,231,233,0,0,118,118,0,0,118,118,118, 0,231,233,0,0,0,5,7,0,231,233,0,0,0,4977,115,0,0,0,0,0,0,118,231,1348,1349,232,232,233,0,0,0,0,118,231,345,0,118,118,118, 5,7,0,0,0,0,231,233,0,0,0,0,0,0,4977,115,0,0,0,0,0,0,118,0,0,0,0,0,5,7,0,0,5,6,6,118,0,118,118,231, 231,233,0,0,0,0,0,0,0,0,0,0,0,0,4977,115,0,0,0,0,0,0,118,0,0,0,0,0,231,233,0,5,6,0,0,118,0,118,118,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,4864,5203,115,0,0,0,0,0,0,118,5,7,0,0,0,0,0,0,118,0,0,0,231,345,118,231,345, 0,0,0,0,0,0,0,0,0,0,0,0,4864,5203,0,228,1348,1349,342,0,0,0,118,231,233,0,0,0,0,0,0,231,232,345,0,0,118,231,345,231, 0,5,7,0,0,0,0,0,0,0,0,0,4977,0,0,0,0,0,115,0,0,0,231,232,345,0,0,0,0,0,0,0,0,118,0,0,118,0,231,232, 0,231,233,0,0,0,0,0,0,0,0,0,4977,0,0,0,0,0,115,0,0,0,0,0,231,232,1348,1349,232,232,232,232,345,118,0,0,231,232,232,232, 0,0,5,7,0,0,0,0,5,7,0,0,4977,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,118,231,232,232,232,232,232,232, 0,0,231,233,0,0,0,0,231,233,0,0,4977,0,0,0,0,0,115,0,0,0,0,0,0,0,2491,2493,0,0,0,0,231,232,232,232,232,232,232,232, 0,0,0,0,0,0,0,0,0,0,0,0,4977,0,0,0,0,0,115,0,0,0,0,0,0,0,2604,2606,0,793,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,5090,5429,0,0,0,0,228,342,0,0,0,0,0,0,2604,2606,0,906,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,4977,0,0,0,0,0,228,229,342,0,0,0,0,2604,2606,0,906,0,0,0,0,0,0,0,0,0,0, 0,0,5,7,0,0,0,0,0,0,0,0,0,4977,0,0,0,0,0,0,0,115,0,0,0,0,2604,2606,0,906,0,0,0,0,0,0,0,0,0,0, 5,7,231,233,0,0,0,0,0,0,0,0,0,5090,5091,5091,5091,5091,5091,5091,5429,115,0,0,0,0,2604,2606,0,906,0,0,0,0,0,0,0,0,0,0, 231,233,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4977,115,0,0,0,0,2604,2606,0,906,659,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4977,115,0,0,0,0,2604,2606,0,906,0,0,659,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4977,115,0,0,0,0,2604,2606,0,906,659,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4977,115,0,0,0,0,2604,2606,0,906,0,0,659,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,4864,4865,4865,4865,4865,4865,4865,4865,4865,4865,4865,4865,5203,115,0,0,0,0,2604,2606,0,906,659,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,4864,4865,5203,0,0,0,0,0,2,3,3,3,3,3,3,3,0,0,0,0,2604,2606,0,906,0,0,659,0,0,0,0,0,0,0, 0,0,0,0,0,4864,5203,0,0,0,0,2,3,3,3,0,0,0,0,0,0,659,0,0,0,0,2604,2606,0,906,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,4977,0,0,0,0,0,115,0,0,0,0,0,0,659,0,0,0,793,0,0,0,2604,2606,0,906,1698,1699,1700,0,0,0,0,0,0,0, 0,0,0,0,0,4977,0,0,0,2,3,3,0,0,0,0,0,0,0,0,0,659,906,0,0,0,2604,2606,0,906,2836,2611,2949,0,0,0,0,0,0,0, 2,4,0,0,0,4977,0,0,0,115,0,0,0,0,0,0,0,0,659,0,0,0,906,0,0,0,2604,2606,0,906,2836,2611,2949,0,0,0,0,0,0,0, 228,230,0,0,0,4977,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,659,906,0,0,0,2604,2606,0,906,1811,1812,1813,0,0,0,0,0,0,0, 0,0,0,0,0,4977,0,0,0,115,0,0,0,0,0,0,0,0,0,659,0,0,906,0,0,0,2717,2719,0,1019,1020,1020,1133,0,0,0,0,0,0,0, 0,0,0,0,0,4977,0,0,0,115,0,0,0,0,0,793,0,0,0,0,0,0,906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 2,4,0,0,0,4977,0,0,0,115,0,0,0,0,0,906,0,0,0,0,0,0,1019,1020,1020,1020,1020,1020,1020,1020,1020,1133,0,0,0,0,0,0,0,0, 228,230,0,0,0,4977,0,0,0,228,1461,1462,342,0,0,906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,5090,5429,0,0,0,0,0,115,0,0,1019,1020,1020,1020,1133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,4977,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,1132,1020,1020,1020,1020,1020,1020,1020,1133,0,0,0,0,0,0,0,0, 0,2,4,0,0,0,5090,5429,0,0,0,5430,115,0,0,0,0,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,230,0,0,0,0,5090,5091,5091,5091,5092,115,0,0,0,0,0,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,4,0,0,0,0,0,0,0,0,115,0,0,0,0,1132,1020,1020,1020,1133,0,0,1132,1020,1020,1020,1020,1133,0,0,0,0,0,0,0,0,0,0, 0,0,228,230,0,0,0,0,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,2,4,0,0,0,115,0,0,0,0,0,0,0,0,0,0,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,230,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1810,1810,1810,1810,1810,1810,1810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,1810,1810,1810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,1810,1810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,1810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,1810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,219,219,219,219,219,219,219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,219,219,219,219,219,219,219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,219,219,219,219,219,219,219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,219,219,219,219,219,219,219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,219,219,219,331,331,331,219,219,331,331,331,331,331,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,219,219,331,0,0,0,331,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,219,219,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,219,219,0,0,0,0,0,219,218,218,218,0,218,218,0,0,0,910,0,0,0,0,0,0,0,910,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,219,219,0,0,0,0,0,219,219,219,219,0,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,219,219,218,218,0,0,218,219,219,219,219,0,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,219,219,219,219,218,0,219,219,219,219,219,0,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,219,219,219,219,219,0,331,219,219,331,219,0,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,219,219,219,219,219,218,0,331,331,0,219,0,331,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,331,219,219,219,219,219,218,218,218,0,331,0,0,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,219,219,331,331,331,331,331,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,331,331,218,218,218,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,331,331,219,218,0,0,218,219,0,218,218,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,219,219,218,0,331,331,0,219,219,219,0,0,0,0,0,0,0,0,910,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,331,331,219,218,0,0,218,219,219,219,0,0,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,203,0,0,216,217,219,219,0,218,219,219,219,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,315,316,0,0,329,330,219,219,0,219,219,219,219,0,0,0,910,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,219,219,0,219,219,219,331,218,0,0,0,910,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,331,219,0,331,219,219,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,218,0,219,0,0,331,331,0,219,0,0,0,0,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,203,0,219,0,219,218,0,0,0,218,331,0,0,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,203,315,316,0,219,0,331,219,218,0,218,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,315,316,0,0,0,219,218,0,219,219,0,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,219,219,0,331,219,0,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,219,219,0,0,331,0,219,219,0,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,203,0,0,0,0,0,331,331,0,0,0,0,219,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,315,316,0,0,0,0,0,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,910,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,910,0,0,0,0,0,0,0,0,910,0,0,0,0,0,0,0,0,0,0,0, 315,316,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,315,316,0,0,0,202,203,0,0,0,0,0,0,0,2014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,2014,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,2127,1902,1902,1902,1902,2014,0,0,0,0,0,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,203,315,316,0,0,0,0,0,0,2014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,2014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,202,203,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,2014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,315,316,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,2014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2127,1902,2014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2127,1902,0,0,0,0,1902,1902,1902,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,100,99,100,99,100,99, 0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213,212,213,212,213,212, 0,202,203,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,100,0,0,0,0,0,0,0,0,0,438,439,438,439,438,439,438, 0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213,0,0,0,0,0,0,0,0,0,212,213,212,213,212,213,212, 0,0,0,0,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,438,439,0,0,0,0,0,0,0,0,907,438,439,438,439,438,439,438, 0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,212,213,0,0,0,0,0,0,0,0,0,212,213,212,213,212,213,212, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,438,439,0,0,0,0,0,0,0,0,0,438,439,438,439,438,439,438, 202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213,0,0,0,0,0,0,0,0,0,212,213,212,213,212,213,212, 315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,438,439,0,0,0,0,0,0,0,0,0,438,439,438,439,438,439,438, 0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213,0,0,0,0,0,0,0,0,0,212,213,212,213,212,213,212, 0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,438,439,0,0,0,0,0,0,0,0,0,438,439,438,439,438,439,438, 0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213,0,0,0,0,0,0,0,0,0,212,213,212,213,212,213,212, 0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,100,0,325,326,0,0,0,0,0,0,907,0,0,438,439,438,439,438,439,438, 202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213,0,0,0,0,0,0,0,0,0,0,0,0,212,213,212,213,212,213,212, 315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,0,0,438,439,0,0,0,0,0,0,0,0,0,0,0,0,438,439,438,439,438,439,438, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213,0,0,0,0,0,0,0,0,0,0,0,0,212,213,212,213,212,213,212, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,325,326,0,0,0,0,0,0,0,0,0,0,0,0,438,439,438,439,438,439,438, 0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213,212,213,212,213,212, 0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,551,552,551,552,551,326,325, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213,212,213,212,213,99,100, 0,0,0,0,0,0,0,0,0,0,0,0,0,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,438,439,438,439,438,439,212,213, 202,203,0,0,0,0,0,0,0,0,0,0,0,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213,212,213,212,213,438,439, 315,316,0,0,0,0,0,0,0,0,0,0,0,438,439,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,438,439,438,439,438,439,212,213, 0,0,0,0,0,0,0,0,0,0,0,0,0,212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213,212,213,212,213,438,439, 0,0,0,0,0,0,0,0,0,0,0,0,0,438,439,438,439,0,0,0,0,0,0,0,0,0,0,0,0,0,99,100,438,439,438,439,438,439,212,213, 0,0,0,0,0,0,0,0,0,0,0,0,0,212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213,212,213,212,213,212,213,438,439, 0,0,0,0,202,203,0,0,0,202,203,0,0,438,439,438,439,0,0,0,0,0,0,0,0,0,99,100,99,100,438,439,438,439,438,439,438,439,212,213, 0,0,0,0,315,316,0,0,0,315,316,0,0,212,213,212,213,0,0,0,0,0,0,0,0,0,212,213,212,213,212,213,212,213,212,213,212,213,438,439, 0,0,0,0,0,0,0,0,202,203,0,0,0,438,439,438,439,0,0,0,0,0,0,0,99,100,438,439,438,439,438,439,438,439,438,439,438,439,212,213, 0,0,0,0,0,0,0,0,315,316,0,99,100,212,213,212,213,99,100,0,0,0,0,0,212,213,212,213,212,213,212,213,212,213,212,213,212,213,438,439 ================================================ FILE: maps/hoenn/hoenn-route-116.tmx ================================================ 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,114,114,116,116,116,116,116,116,116,116,116,116,114,114 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,115,0,115,0,0,115,0,0,115,0,0,0,0,0,0,0,0,0,0,0,341,229,229,230,0,0,0,0,0,0,2,3,3,3,3,3,3,3,3,4,0,115,0,0,115,0,0,0,341,230,0,117,0,117,117,0,0,117, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,115,0,228,342,0,228,342,0,228,342,0,0,0,0,0,0,0,0,0,341,230,0,0,0,0,0,0,0,0,0,228,229,229,229,229,342,0,0,0,3,4,115,0,0,228,342,0,0,117,0,0,117,0,117,117,0,0,117, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,793,2837,2498,2498,2498,2498,2838,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,228,342,0,115,0,0,115,0,0,228,229,342,0,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,341,229,229,229,229,342,0,115,0,0,0,341,230,228,342,0,0,228,342,0,117,0,0,117,341,230,117,0,0,117, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,906,1811,1812,1812,1812,1812,1813,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,115,0,115,0,0,228,229,229,229,342,228,229,342,0,341,229,229,229,230,0,0,0,0,0,0,0,341,230,0,0,0,0,228,342,228,342,0,0,117,0,0,228,342,0,0,228,342,117,0,341,230,117,341,230,0,341,230, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,115,0,228,342,0,0,0,0,0,228,229,342,228,229,230,0,0,0,0,0,0,0,0,0,0,341,230,341,229,229,229,342,0,228,342,228,229,229,230,0,0,0,115,0,0,0,115,117,0,117,0,117,117,0,0,117,0, 0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,906,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,342,228,229,342,115,0,0,0,0,0,0,0,228,229,229,229,342,0,0,0,0,0,0,0,341,229,230,0,117,0,0,0,228,229,342,228,229,229,229,229,229,342,0,115,0,0,0,115,117,0,117,0,117,117,0,0,117,0, 0,0,0,0,0,0,0,0,0,95,0,95,0,95,0,0,906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,115,228,229,229,229,229,229,229,229,229,229,229,342,115,0,0,0,0,0,341,229,230,0,341,229,230,0,0,0,0,0,228,229,229,229,229,229,342,115,0,228,342,0,0,228,230,0,117,0,117,117,0,0,117,0, 0,0,0,0,0,0,0,0,95,0,95,95,95,95,95,95,1019,1020,1020,1020,1020,1246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,342,0,228,229,456,229,229,229,342,0,0,0,0,0,115,115,0,341,229,229,229,230,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,115,228,342,0,228,342,0,0,0,0,117,341,230,117,0,341,230,0, 0,0,0,0,0,0,0,0,0,0,95,95,95,95,95,95,95,95,0,0,0,906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,229,229,229,569,229,229,342,228,229,1348,229,229,342,115,115,0,117,341,229,229,229,229,229,229,230,341,229,229,1348,229,229,342,0,0,0,0,0,0,115,0,115,0,0,115,0,0,0,341,230,117,341,230,0,117,0,0, 0,0,0,0,0,0,0,0,0,0,95,95,95,95,95,95,95,0,95,0,0,906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1924,1924,1924,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,115,115,115,0,117,117,341,229,229,229,229,229,229,230,0,0,0,2,4,228,229,229,342,0,0,0,115,0,115,0,0,115,0,0,0,117,341,230,117,0,0,117,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,95,95,95,95,0,95,0,0,0,906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1924,1924,1924,0,0,0,0,0,0,0,0,0,0,228,342,0,0,0,0,115,115,115,0,117,117,117,341,229,229,229,229,342,0,0,0,0,228,230,0,0,0,228,229,229,342,115,0,228,342,0,228,342,0,341,230,117,0,117,0,0,117,0,341, 0,0,0,0,0,0,0,0,0,0,0,0,95,95,95,0,95,0,0,0,0,906,0,0,0,0,0,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,1348,229,342,0,115,115,228,229,230,117,117,117,0,0,0,0,228,229,229,229,1348,229,229,229,229,229,229,229,342,115,115,0,0,228,342,0,228,229,230,0,117,0,117,0,0,117,0,117, 0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1019,1020,1020,1020,1020,1020,1020,1020,1020,1020,1020,1020,1020,1020,1133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,115,228,229,229,229,230,117,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,115,115,0,0,0,115,0,0,0,0,0,117,0,117,0,0,117,0,117, 0,0,0,0,95,0,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,95,95,95,95,95,95,95,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,228,229,229,229,342,0,117,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,115,115,0,0,0,115,0,0,0,341,229,230,0,117,0,0,117,0,117, 0,0,0,0,0,95,95,95,95,95,95,95,95,95,0,0,0,0,0,0,0,0,0,95,0,95,95,95,0,0,95,95,95,95,95,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,228,229,230,117,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,3,116,115,115,0,0,0,228,342,0,341,230,0,0,0,117,0,0,117,0,117, 0,0,0,0,95,0,95,95,95,95,95,95,95,95,0,0,0,0,0,0,0,0,0,0,95,95,95,95,0,95,95,95,95,95,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,229,342,0,0,0,0,341,229,230,0,0,0,0,0,0,0,0,2,3,3,3,3,116,2,3,3,3,115,0,0,0,0,228,229,230,0,341,229,229,230,0,0,117,0,117, 0,0,0,0,0,95,95,95,95,95,95,95,95,0,0,0,0,0,0,0,0,0,0,95,95,95,95,95,95,95,95,95,0,0,95,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,115,0,0,2,3,3,3,0,2,3,3,0,0,0,0,0,0,0,0,117,0,0,0,0,0,3,4,117, 0,0,0,0,95,95,95,95,95,95,0,95,0,95,0,0,0,0,0,0,0,0,95,0,95,0,0,95,95,95,95,0,0,95,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,229,229,229,229,230,0,0,0,0,0,0,0,0,0,0,115,0,2,3,0,2,3,3,3,0,0,0,0,0,0,0,0,341,229,230,0,0,0,0,0,0,117,117, 0,0,0,0,0,0,0,0,0,0,0,0,95,0,95,0,0,0,0,0,0,0,0,95,95,95,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,115,2,3,3,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,117,117, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,95,95,95,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,342,115,115,0,0,0,0,0,0,341,229,229,229,229,229,229,230,0,0,0,0,0,0,0,0,117,117 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 438,439,438,439,438,439,438,439,438,439,438,439,438,439,325,326,325,326,325,326,325,326,325,552,551,552,551,552,551,552,551,552,551,552,551,552,551,552,551,552,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 212,213,212,213,212,213,212,213,212,213,212,213,212,213,0,0,0,0,0,0,0,0,0,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 438,439,438,439,438,439,325,326,325,326,325,326,325,326,0,0,0,0,0,0,0,0,0,325,326,325,326,325,326,325,326,438,439,325,326,438,439,438,439,438,439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 212,213,212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,218,0,0,0,0,218,219,219,0,218,218,0,218,0,212,213,331,219,212,213,212,213,212,213,0,907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 438,439,325,326,325,326,0,0,0,0,0,0,0,0,0,0,0,331,218,0,218,0,331,331,331,0,331,331,0,331,0,325,326,0,331,325,927,928,928,928,931,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,0,331,0,0,0,0,218,0,0,0,218,0,331,331,0,0,219,1040,1041,1041,1041,1044,0,0,907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 325,326,0,0,0,0,0,0,99,100,0,0,0,0,0,0,0,0,0,0,0,0,218,0,0,219,218,218,0,219,0,0,0,0,0,219,1153,1155,1154,1155,1157,0,0,0,0,0,0,0,0,0,0,0,907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,99,100,212,213,0,0,0,0,0,0,0,0,0,0,0,0,331,218,0,331,331,331,218,331,0,218,218,218,218,331,1266,1268,1267,1268,1270,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,212,213,438,439,99,100,0,0,0,0,0,0,0,0,0,0,0,219,0,218,0,0,219,0,0,331,331,331,331,0,0,0,0,0,205,0,0,0,0,0,0,0,0,205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,456,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,205,438,439,212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,331,0,331,218,0,331,206,0,218,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,569,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,212,213,438,439,438,439,99,100,99,100,0,0,0,0,0,0,0,0,0,0,331,0,0,0,0,331,0,0,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,325,326,212,213,212,213,212,213,212,213,206,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 99,100,0,0,0,0,0,0,325,326,325,326,325,326,438,439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,100,99,100,99,100,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,100,99,100,99,100,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 212,213,0,0,0,0,0,0,0,0,0,0,0,0,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213,212,213,212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213,212,213,212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 438,439,99,100,0,0,0,0,0,0,0,0,0,0,325,326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,100,438,439,438,439,438,439,438,439,99,100,0,0,0,0,0,0,0,0,0,0,99,100,438,439,438,439,438,439,438,439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213,212,213,212,213,212,213,212,213,212,213,0,0,0,0,0,0,0,0,0,0,212,213,212,213,212,213,212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 438,439,438,439,99,100,99,100,99,100,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,100,99,100,99,100,99,100,99,100,99,100,438,439,438,439,438,439,438,439,438,439,438,439,99,100,99,100,99,100,99,100,99,0,438,439,438,439,438,439,438,439,438,439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 212,213,212,213,212,213,212,213,212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 438,439,438,439,438,439,438,439,438,439,438,439,99,100,99,100,99,100,99,100,99,100,99,100,99,100,99,100,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,218,0,0,0,0,0,0,0,0,218,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,218,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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: maps/hoenn/hoenn-route-117.tmx ================================================ 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,4184,4184,4184,4184,4184,4184,4184,114,114,114,114,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,4184,4184,4184,4184,4184,4184,4184,4184,114,114,114,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,4184,4184,4184,4184,4184,4184,4184,4184,4184,114,114,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,4184,4184,4184,4184,4184,4184,4184,4184,4184,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,4184,4184,4184,4184,4184,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,4184,4184,4184,4184,4184,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,4184,4184,4184,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,4184,4184,4184,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,4184,4184,4184,4184,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,4184,4184,4184,4184,4184,4184,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,4184,4184,4184,4184,4184,4184,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,4184,4184,4184,4184,4184,4184,4184,4184,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,4184,4184,4184,4184,4184,4184,4184,4184,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,4184,4184,4184,4184,4184,4184,4184,4184,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,4184,4184,4184,4184,4184,4184,4184,4184,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,775,95,0,0,4183,4184,4184,4185,0,0,95,95,775,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,95,95,0,0,0,0,0,0,0,0,0,0,4409,4410,4410,4410,4410,4410,4411,0,0,0,2,115,0,117,3,4,0,0,0,775,95,4183,4184,4184,4185,0,0,95,95,95,95,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,95,95,95,95,95,95,95,0,0,0,0,0,0,0,4522,0,0,0,0,0,4637,4411,0,0,115,228,229,230,0,117,0,0,95,95,0,4183,4184,4297,4298,95,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,0,0,0,0,0,4637,4411,0,115,0,0,341,229,230,0,95,95,0,4070,4184,4185,95,775,0,0,775,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,662,662,662,662,662,662,0,0,0,0,0,0,0,662,4522,0,0,0,0,0,0,0,4524,0,228,229,229,230,0,0,95,0,95,0,4296,4297,4298,0,0,0,775,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,662,662,662,662,662,662,0,0,0,0,0,0,0,0,4636,4636,4636,4636,4522,0,0,0,4524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 2037,0,0,0,0,0,0,0,662,662,662,662,662,662,0,0,0,0,0,0,0,0,0,0,0,662,4522,0,0,0,4524,0,662,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 2037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2491,2492,2492,2492,2492,2492,2493,0,0,0,4636,4636,4522,0,4524,662,0,0,0,2491,2492,2492,2492,2492,2492,2492,2492,2492,2492,2492,2492,2492,2492,2493,0,0,0,0,0,0,0,0,0,0, 2037,2037,0,2037,0,2037,0,2037,0,0,0,0,0,0,0,0,2604,2605,2718,2718,2718,2718,2719,0,0,0,0,0,4636,4636,4636,0,0,2491,2492,2605,2605,2605,2718,2718,2718,2718,2718,2718,2718,2718,2718,2605,2605,2605,2492,2493,0,0,0,0,0,0,0,0, 2037,2037,0,0,2037,0,2037,0,2491,2492,2492,2492,2492,2492,2492,2492,2605,2606,0,0,0,0,0,0,0,0,0,0,2491,2492,2492,2492,2492,2605,2605,2605,2605,2719,0,0,0,0,0,0,0,0,0,2717,2718,2605,2605,2605,2492,2492,2493,0,0,0,0,0, 2037,2037,0,2037,0,2037,0,2037,2604,2605,2605,2605,2605,2605,2605,2605,2605,2606,0,0,4409,4410,4411,662,0,0,0,0,2717,2718,2605,2605,2605,2605,2605,2605,2719,0,0,0,0,0,0,0,0,0,0,0,0,2717,2605,2605,2605,2718,2719,0,0,0,0,0, 2037,2037,2037,0,0,0,0,0,2717,2718,2718,2718,2718,2718,2718,2718,2718,2719,0,0,4522,0,4637,4411,662,0,0,0,0,0,2717,2718,2605,2605,2605,2606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2604,2605,2719,0,0,0,0,0,0,0, 2037,0,2037,0,2037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,0,4637,4410,4411,0,0,0,0,0,0,2717,2605,2605,2606,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2604,2606,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,4522,0,0,0,0,4524,0,662,0,0,0,0,0,2604,2605,2605,2493,0,0,0,0,0,0,0,0,0,0,0,0,2491,2605,2606,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,662,662,662,662,662,662,662,0,95,95,95,4522,0,0,0,0,4637,4410,4411,0,95,95,95,0,2717,2605,2605,2606,0,0,0,0,0,0,0,0,0,0,0,0,2604,2605,2719,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,662,662,662,662,662,662,662,0,95,95,95,4522,0,0,0,0,0,0,4524,95,95,95,95,95,0,2604,2605,2605,2493,0,0,0,0,0,0,0,0,0,0,2491,2605,2606,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,662,662,662,662,662,662,662,0,95,95,95,4522,0,0,0,0,0,0,4524,95,95,95,95,95,95,2717,2605,2605,2605,2492,2492,2492,2492,2492,2492,2492,2492,2492,2492,2605,2605,2719,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,0,0,0,0,0,4524,95,95,95,95,95,95,95,2717,2718,2718,2718,2718,2718,2718,2718,2718,2718,2718,2718,2718,2718,2719,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4636,4636,4636,4636,4636,4636,4636,4636,0,0,95,95,95,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 219,219,219,219,219,219,219,219,331,331,331,331,219,219,219,219,219,219,0,0,331,331,331,331,331,331,331,331,331,219,219,331,331,331,331,331,331,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,219,0,0,0,0,331,331,331,331,331,331,0,0,0,0,0,0,0,0,0,0,0,331,219,1911,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,0,0,0,0,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,2020,0,0,0,0,0,0,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,1901,1902,1902,1902,1902,1902,1902,1903,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1040,1041,1041,1044,0,0,331,0,0,0, 219,219,219,219,219,219,219,2014,0,0,0,0,0,0,2016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2020,0,0,0,0,0,0,0,0,0,331,0,0,0,0,0,0,0,0,1153,1154,1155,1157,0,0,0,0,0,0, 331,219,219,219,219,219,331,2014,0,0,0,0,0,0,2016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2133,1908,1908,1908,1908,1908,1908,1908,1908,1908,1908,1908,1908,1908,1908,1908,0,1908,205,1266,1267,1268,1270,1908,1908,1908,1908,1908,1908, 0,331,331,331,331,331,0,2014,0,0,0,0,0,0,2016,0,205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1902,1902,1902,1902,1902,1902,1902,2127,1902,0,0,0,0,1902,2129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213,212,213,212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,551,552,551,552,551,552,551,552,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213,212,213,212,213,212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,438,439,325,326,325,326,325,552,551,326,0,205,0,0,0,0,0,0,0,0,0,0, 1902,1902,1902,1902,1902,1902,1902,1902,1901,1902,1902,0,0,0,1902,1902,1903,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213,0,0,0,0,0,212,213,0,0,0,0,0,0,0,0,0,0,0,219,219, 0,0,219,219,219,219,0,0,2014,0,0,0,0,0,0,0,2016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,325,326,0,0,0,0,0,325,326,0,0,0,0,0,0,0,0,219,219,219,219,219, 0,219,219,219,219,219,219,0,2014,0,0,0,0,0,0,0,2016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,0,2014,0,0,0,0,0,0,0,2016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,219, 219,219,219,331,331,331,331,331,2127,0,1902,1902,1902,1902,1902,1902,2129,1902,1902,1902,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,219,219, 219,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,0,219,219,219,219,219,219,0,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,219,219,219, 219,219,219,219,0,219,219,219,219,219,0,219,219,219,219,219,0,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,0,0,0,0,0,219,219,219,219,219,219,219,219,219,219,219,0,0,219,219,219,219,219,219,219,219,219,219 0,0,0,0,0,0,0,0,0,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,3,4,0,0,0,0,0,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,927,928,928,931,0,0,218,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,100,99,100,99,100,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,0,0,0,0,0,0,0,0,100,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,218, 0,0,218,218,218,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,218,218,0,0, 0,218,0,0,0,0,218,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,218,0,0,0,0,0, 218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,218,218,0,218,218,218,218,218,218,0,218,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0, 0,0,0,218,0,218,218,218,218,218,0,218,218,218,218,218,0,0,0,0,218,0,0,0,0,0,0,218,0,0,218,218,0,0,0,0,0,218,218,218,218,218,218,218,218,218,218,218,0,0,218,0,0,0,0,0,0,0,0,0, 0,0,0,0,218,0,0,0,0,0,218,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,218,218,0,0,0,0,0,0,0,0,0,0,0,0,0,218,218,0,0,0,0,0,0,0,0,0,0 ================================================ FILE: maps/hoenn/hoenn-route-118.tmx ================================================ 114,114,114,114,114,114,114,116,116,116,116,116,116,114,114,114,114,114,114,114,114,4978,0,0,0,0,0,4978,4978,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114, 114,114,114,114,114,114,114,116,116,116,116,116,116,114,114,114,114,114,114,114,114,4978,0,0,0,0,0,4978,4978,114,114,114,114,114,114,114,114,114,114,0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114, 114,114,114,114,114,114,114,116,116,116,116,116,116,114,114,114,114,114,114,114,114,4978,0,0,0,0,0,4978,4978,114,114,114,114,114,114,114,114,114,114,0,116,116,116,116,116,0,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114, 114,114,114,114,114,114,114,116,116,116,116,116,116,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,4978,4978,4978,114,114,114,114,114,114,114,114,114,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114, 114,114,114,114,114,114,114,116,116,116,116,116,116,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,4978,4978,4978,114,114,114,114,114,114,114,114,114,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,114,114,114, 114,114,114,114,114,114,114,116,116,116,116,116,114,114,114,114,114,4978,4978,4978,0,0,0,0,0,0,0,0,4978,4978,4978,114,114,114,114,114,114,114,114,114,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,4978,4978,116,4978,0,0,0,0,0,0,0,0,4978,4978,4978,4978,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,4978,4978,4978,4978,4978,0,0,0,0,0,0,0,0,4978,4978,4978,4978,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,4978,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,4978,4978,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,4978,4978,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,4978,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,4978,4978,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114 0,0,0,0,0,908,115,115,115,0,0,117,117,117,0,0,0,0,0,0,908,0,4979,0,0,0,4977,0,0,906,0,0,0,0,0,0,0,0,0,2,115,2,3,3,3,0,0,0,341,229,229,230,0,0,117,117,0,2604,2605,2606,0,115,115,115,0,0,0,0,0,0,0,0,0,0,0,0,0,117,117,117, 0,0,0,0,0,908,115,115,115,0,0,117,117,117,0,0,0,0,0,0,908,0,4979,0,0,0,4977,0,0,906,0,0,0,0,0,0,0,0,0,115,115,115,0,341,229,229,229,229,230,0,0,0,0,0,117,117,0,2604,2605,2606,0,115,115,115,0,0,0,0,0,0,0,0,0,0,0,0,0,117,117,117, 0,0,0,0,0,908,115,115,115,0,0,117,117,117,0,0,0,0,0,1245,1021,0,4979,0,0,0,4977,0,0,1019,1020,1246,0,0,0,0,0,0,0,115,115,115,0,117,341,229,229,229,229,229,229,229,229,229,230,117,0,2604,2605,2606,0,115,115,228,229,229,229,229,342,0,0,0,0,0,0,341,229,230,117,117, 0,0,0,0,0,908,115,115,115,0,341,230,117,117,0,0,0,0,0,908,5430,5091,5092,0,0,0,5090,5429,2,3,4,906,0,0,0,0,0,0,0,115,115,115,0,117,117,341,229,229,229,229,229,229,229,229,229,230,0,2604,2605,2606,0,115,228,229,229,229,229,342,115,0,0,0,0,341,229,230,341,229,230,117, 0,0,0,0,0,908,115,115,228,229,230,341,230,117,0,0,1245,1020,1020,1021,4979,0,0,0,0,0,0,4977,115,116,117,906,0,0,0,0,0,0,0,115,115,228,229,230,117,117,0,0,0,0,0,0,0,0,0,95,0,2604,2605,2606,0,228,229,229,229,229,342,115,228,229,229,229,229,230,0,0,117,341,229,230, 0,0,0,0,0,0,115,228,229,229,229,230,341,230,0,1245,1021,2,3,4,4979,0,0,0,0,0,0,4977,228,229,230,1019,1246,0,2837,2498,2498,2498,2838,115,228,229,229,229,230,117,0,0,0,0,0,95,95,95,95,95,0,2717,2718,2719,0,95,95,95,95,0,115,228,229,229,229,342,0,0,341,229,230,117,0,0, 0,0,0,0,0,0,228,229,229,229,229,229,230,0,1132,1021,0,115,0,117,4979,0,0,0,0,0,0,4977,0,0,0,0,906,0,1811,3062,3062,3062,1813,228,229,229,229,229,229,230,0,0,0,0,0,95,95,95,95,95,0,0,0,0,95,95,95,95,95,95,228,229,229,229,342,228,229,229,230,341,229,230,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,2491,0,0,228,229,230,4979,0,0,0,0,0,0,4977,0,0,0,0,1019,1020,1020,1246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,95,95,0,0,0,0,95,95,95,95,95,95,0,0,0,0,228,229,229,229,229,230,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,2491,0,0,0,0,5430,5091,5092,0,0,0,0,0,0,4977,0,0,0,0,0,0,0,906,0,0,0,1132,1020,1020,1020,1020,1020,1020,1020,1020,1020,1020,1020,1020,1020,1020,1020,1133,0,0,0,0,1132,1020,1020,1020,1020,1020,1020,1020,1020,1020,1020,1020,1020,1020,1020,1020,1133,0,0,0, 0,0,0,0,659,795,659,0,659,0,0,0,2491,0,0,0,0,0,4979,0,0,0,0,0,0,0,0,4977,0,0,0,0,0,0,0,906,0,0,0,0,0,0,0,0,0,0,0,0,95,95,95,95,95,95,0,0,0,0,0,0,0,0,0,95,95,95,95,95,95,95,95,95,95,95,0,0,0,0,0,0, 0,0,0,659,0,908,0,659,0,0,0,0,2604,0,0,0,0,0,4979,0,0,0,0,0,0,0,0,5090,5091,5091,5429,0,0,0,0,1019,1246,0,0,0,0,0,0,0,0,0,0,0,95,95,95,95,95,95,95,95,0,0,0,0,0,0,0,0,0,95,95,95,95,95,95,95,95,0,0,0,0,0,0,0, 0,0,0,0,0,908,659,0,659,795,0,2491,0,0,0,0,0,0,4979,0,0,0,0,0,0,0,0,0,0,0,4977,0,0,0,0,0,1019,1246,0,0,0,0,0,0,0,0,0,0,0,95,95,95,95,95,95,95,95,0,0,0,0,0,0,0,0,95,95,95,95,95,95,95,95,0,0,0,0,0,0,0, 0,0,0,0,0,908,0,0,0,908,0,2604,0,0,0,0,5430,5091,5092,0,0,0,0,0,0,0,0,0,0,0,4977,0,0,0,0,0,0,1019,1020,1020,1020,1020,1133,0,0,0,2,3,4,0,0,0,95,95,95,95,95,0,0,0,0,0,0,0,0,0,95,95,95,95,95,95,0,0,0,0,0,0,0,0, 0,0,0,0,0,908,0,0,0,908,2491,0,0,0,0,0,4979,0,0,0,0,0,0,0,0,0,0,0,0,0,4977,0,0,0,0,0,0,0,0,0,0,2492,2492,2492,2492,2492,2492,116,117,793,0,0,0,0,95,95,95,0,0,0,0,0,0,0,0,0,0,95,95,95,95,95,0,0,0,0,0,0,0,0, 0,0,0,0,1020,1021,0,0,1245,1021,0,0,0,0,0,0,4979,0,0,0,0,0,0,0,0,0,0,0,0,0,5090,5091,5091,5429,0,0,0,0,0,0,0,0,0,0,0,0,228,229,230,906,0,0,0,0,0,0,0,0,0,0,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,1020,1020,1020,1021,0,0,0,0,5430,5091,5091,5092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5090,5091,5091,5091,5091,5429,0,0,0,0,0,0,0,0,0,0,906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,4522,5090,5091,5091,5091,5091,5091,5091,5091,5092,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5090,5091,5091,5091,5091,5091,5091,5091,5091,5091,5429,906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4977,1019,1020,1020,1020,1020,1020,1020,1246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 4410,4410,4410,4410,4635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5090,5091,5091,5091,5091,5091,5091,5429,1019,1246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5090,5429,906,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 219,219,219,219,219,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,219,219,219,219,0,0,0,0,0,0,0,0,0,219,219,219,219,219,331,0,0,0,0,0,0,0,0,0,0,331,331,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,219,219,219,219,0,0,0,0,0,0,0,0,0,219,219,219,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,219,219,219,219,0,0,0,0,0,0,0,0,0,219,219,331,331,331,0,0,0,0,0,202,203,0,0,0,0,0,0,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0,0,218,218,218,218,218,218,218,0,331,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,219,219,331,331,0,0,0,0,0,0,0,0,0,219,331,0,0,0,0,0,0,202,203,315,316,202,203,0,0,0,0,331,219,331,331,331,331,331,0,0,0,0,0,0,0,216,217,219,219,219,331,331,331,331,0,0,0,0,0,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,331,331,0,0,0,0,0,0,0,0,0,0,0,331,0,0,0,0,0,202,203,315,316,0,0,315,316,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,329,330,331,331,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 331,0,0,0,0,0,0,0,0,0,0,0,0,205,0,0,907,0,0,0,315,316,0,0,0,0,0,0,0,0,0,907,0,331,907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,907,0,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,331, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,218,218,218,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 218,219,219,219,219,0,0,218,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,218,0,0,0,0,0,0,0,0,218,218,218,218,0,0,0,0,0,0,0,0,0,0,0,0,218,218,218,218, 219,219,219,219,331,0,218,219,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,218,218,0,0,0,218,218,218,219,219,219,219,218,0,0,0,0,0,0,0,218,218,218,218,219,219,219,219, 3300,3301,3301,3305,0,0,331,331,0,0,0,0,907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,907,0,0,0,0,219,219,219,219,218,218,218,219,219,219,219,219,219,219,219,218,218,218,218,218,218,218,219,219,219,219,219,219,219,219, 3413,3414,3414,3418,0,0,0,0,0,0,907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,907,0,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 3526,3529,3530,3531,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,202,203,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,203,0,0,331,331,331,331,331,331,331,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 3639,3642,3643,3644,0,0,0,0,0,315,316,202,203,0,0,0,0,0,0,202,203,315,316,0,202,203,315,316,202,203,0,0,202,203,0,0,202,203,0,0,0,0,202,203,202,203,315,316,0,0,0,0,0,0,0,0,0,331,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,315,316,202,203,202,203,202,203,315,316,0,202,203,315,316,0,0,315,316,202,203,315,316,202,203,315,316,202,203,202,203,315,316,315,316,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,315,316,315,316,0,0,0,315,316,0,0,0,0,0,0,315,316,0,0,315,316,0,0,315,316,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219 ================================================ FILE: maps/hoenn/hoenn-route-119.tmx ================================================ 114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,116,0,0,0,114,114,114,114,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,114,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,116,0,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,0,0,0,0,0,116,116,0,114,114,114,114,0,0,0,116,116,116,116,0,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,0,0,0,0,0,0,0,0,0,116,116,116,0,116,116,0,0,116,116,116,116,116,116,116,116,114,114,114,114,114,116,0,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,116,116,116,114,0,116,116,116,0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,114,114,116,116,116,116,116,116,116,114,114,114,114,114,114,114,0,116,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,114,114,0,0,0,114,114,116,116,114,114,114,114,114,114,114,0,116,0,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,114,114,0,0,0,114,114,116,116,114,114,114,114,114,114,114,0,116,116,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,114,114,0,0,0,114,114,116,114,114,114,114,114,114,114,114,116,116,116,0,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,114,0,0,0,0,0,114,116,114,114,114,114,114,114,114,114,116,116,116,116,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,114,0,0,0,0,0,114,116,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,114,0,0,0,0,0,114,116,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,114,0,0,0,0,0,114,116,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,114,0,0,0,0,0,114,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,116,116,116,114,114,114,114,114,114,114,114,114,114,0,114,0,0,0,0,0,114,114,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,116,116,116,116,114,114,114,114,114,114,114,114,114,0,114,0,0,0,0,0,114,0,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,0,0,116,116,116,114,114,114,114,114,114,114,114,0,114,0,0,0,0,0,0,0,116,114,114,114,114,114,114,114,114,0,114,114,114,114,114,114,114, 114,114,114,116,116,116,114,114,114,114,114,114,114,114,0,114,0,0,0,0,0,0,0,116,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,114, 114,114,114,114,116,116,114,114,114,114,114,114,114,114,0,114,0,0,0,0,0,0,0,116,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,114,0,0,0,0,0,0,0,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,114,0,0,0,0,0,0,0,0,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,0,0,114, 0,0,0,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114, 114,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114, 114,114,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114, 114,114,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114, 114,114,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,0,114,114,0,0,0,0,0,114,114,114,114,114, 114,114,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,0,114,114,114,0,0,0,0,0,114,114,114,114, 114,114,0,0,0,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,0,114,114,114,114,114,0,0,0,0,0,114,114,114,114, 114,114,0,0,0,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,0,114,114,114,114,114,114,0,0,0,0,0,114,114,114,114, 114,114,114,114,0,114,114,114,114,114,0,0,0,0,0,116,116,116,116,116,116,116,0,0,114,114,114,114,114,114,114,0,0,0,0,0,114,114,114,114, 114,114,114,114,0,114,114,114,114,0,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,114,114,114,114, 114,114,114,114,0,0,0,0,0,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,114,114,114,114, 114,114,114,114,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,116,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,116,116,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,116,116,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,116,116,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,116,116,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,116,116,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,116,116,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,116,116,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,116,116,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,116,116,116,114,114,114,114,114,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114, 0,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,114,114,114,114,114,114, 0,116,116,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,114,114,114,114,114, 0,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,114,114,114,114,114,114,114,114,116,116,116,116,116,114,114, 0,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,114,114,114,114,114,114,114,114,116,116,116,116,116,114,114, 0,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,114,114,114,114,114,114,114,114,116,116,116,116,116,114,114, 114,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,114,114,114,114,114,114,114,114,116,116,116,116,116,116,114, 114,114,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,114,114,114,114,114,114,114,114,116,116,116,116,114,116,114, 114,114,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,114,114,114,114,114,114,114,114,116,116,116,116,114,116,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,114,114,114,114,114,114,114,114,116,116,116,116,116,116,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,114,114,114,114,114,114,114,114,116,116,116,116,116,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,116,116,116,116,116,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,114,114,114,114,114,114,114,116,116,116,116,116,116,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,114,114,114,114,114,116,116,116,116,116,116,116,116,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,114,114,114,114,114,116,116,116,116,116,116,116,116,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,114,114,114,114,114,116,116,116,116,116,116,116,116,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,114,114,114,114,114,116,116,116,0,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,114,114,114,114,114,116,116,116,0,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,4978,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,0,4978,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,116,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114,114,114,114, 114,114,116,116,116,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114, 114,0,116,116,116,116,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,341,229,229,230,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,341,229,229,229,230,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,2497,2498,2498,2499,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,3176,3062,3062,3177,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,341,229,229,229,230,0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,2491,2492,2492,2492,2492,2492,2493,0,0, 0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,2491,2605,2605,2605,2718,2718,2718,2719,0,0, 0,0,0,341,230,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,2604,2605,2605,2606,0,0,0,0,0,0, 0,341,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,2604,2605,2605,2719,0,0,0,0,0,0, 0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,2604,2605,2606,0,0,0,0,0,0,0, 0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,2604,2605,2606,0,0,0,0,0,0,0, 0,3,3,3,3,3,3,4,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,2604,2605,2606,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,228,342,0,0,0,0,0,0,0,0,0,2491,2605,2605,2719,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,2604,2605,2606,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,3,3,3,3,3,3,3,3,4,0,0,0,115,0,0,0,0,0,0,0,0,0,2604,2605,2606,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,115,0,0,0,0,0,0,0,0,0,2604,2605,2606,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,228,342,0,0,0,0,0,0,0,0,2604,2605,2719,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,1132,1020,1020,1133,0,0,0,0,117,0,0,0,0,115,0,0,0,0,0,0,0,0,2604,2606,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,4636,4522,0,0,115,0,0,0,0,0,0,0,2491,2605,2606,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,4522,0,0,115,0,0,0,0,0,0,0,2604,2605,2606,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,1698,1699,1699,1700,0,341,1348,1349,230,0,4522,0,0,115,0,0,0,0,0,0,0,2604,2605,2719,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,2950,2724,2724,2951,0,117,0,0,0,0,4522,0,0,115,0,0,0,0,0,0,2491,2605,2606,0,0,0,207,207,207,0,0,0,0, 229,229,229,229,229,229,229,229,229,229,229,229,230,0,0,0,0,4522,0,0,228,229,229,229,229,342,0,2604,2605,2606,0,0,0,0,0,0,0,0,0,0, 229,229,229,229,229,229,229,229,229,229,342,0,341,229,229,229,229,2267,2267,2267,229,229,229,229,342,115,0,2604,2605,2719,0,207,207,0,0,0,207,0,0,0, 229,229,229,229,229,229,229,229,229,342,228,229,230,341,229,229,229,2267,2267,2267,229,229,229,342,115,228,229,1348,1349,229,229,229,342,207,207,207,0,0,0,0, 0,0,0,0,0,0,0,0,0,228,229,229,229,230,341,229,229,2267,2267,2267,229,229,342,115,228,229,229,1348,1349,229,229,342,115,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,341,229,2267,2267,2267,229,342,115,115,0,0,2491,2605,2606,0,0,115,115,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,117,0,4409,4410,4411,0,115,115,115,0,2491,2605,2605,2719,0,0,115,228,342,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,117,0,4522,0,4524,0,115,115,115,0,2717,2718,2719,0,0,0,115,0,115,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,117,4409,4635,0,4637,4411,115,115,228,229,1348,1349,229,229,229,342,228,342,228,342,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,117,4522,0,0,0,4524,115,115,0,2491,2492,2493,0,0,0,115,0,228,342,115,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,117,4522,0,0,0,4524,115,115,0,2604,2605,2605,2493,0,0,228,229,342,115,228,229,229,229,229,229, 0,0,0,0,0,2491,2492,2493,0,0,0,0,0,0,117,117,4522,0,0,0,4524,115,115,0,2717,2605,2605,2606,0,0,0,0,115,228,229,229,229,229,229,229, 2,3,3,3,4,2604,2605,2605,2493,0,0,0,0,0,117,117,4522,0,0,0,4524,115,115,0,0,2717,2718,2719,0,0,0,0,228,229,229,229,229,229,229,229, 115,0,0,0,117,2717,2605,2605,2719,0,0,0,0,0,117,117,4522,0,0,0,4524,115,228,229,1348,1349,229,229,229,342,0,0,0,0,0,0,0,0,0,0, 115,0,0,0,3,4,2717,2719,0,0,0,0,0,0,117,117,4522,0,0,0,4524,228,229,342,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0, 228,229,342,0,0,3,4,0,0,0,0,0,0,0,117,117,4522,0,0,0,4637,4410,4411,115,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0, 0,0,115,0,0,0,117,0,0,0,0,0,0,0,117,117,4522,0,0,0,0,0,4524,115,0,0,0,0,0,228,342,0,0,0,0,0,0,0,0,0, 0,0,228,342,0,0,117,0,0,0,0,207,0,0,117,117,4522,0,0,0,0,0,4524,115,0,0,0,0,0,0,228,229,229,229,229,229,229,229,229,229, 0,0,0,228,229,229,230,0,0,0,0,0,207,207,117,117,4522,0,0,0,0,0,4524,228,229,1348,229,229,229,229,229,229,229,229,229,229,229,229,229,229, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,117,4522,0,0,0,0,0,4637,4411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,117,4522,0,0,0,0,0,0,4637,4410,4410,4410,4410,4410,4410,4411,0,0,0,0,0,0,0,0,0, 229,229,342,0,0,0,0,0,0,0,0,0,0,0,3,3,3,3,3,4,0,0,0,0,0,0,0,0,0,0,4637,4410,4411,0,0,0,0,0,0,0, 229,342,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,4524,0,0,0,0,0,0,0, 0,115,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,4,0,0,0,0,0,0,0,0,4637,4410,4411,0,0,0,0,0, 0,115,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,3,3,3,4,0,0,0,0,0,0,4524,0,0,0,0,0, 0,115,115,0,0,0,0,0,0,0,0,0,0,207,207,207,0,0,341,229,229,1348,1349,230,0,0,0,117,4636,4636,4522,0,0,0,4524,0,0,0,0,0, 0,115,115,0,0,0,0,0,0,0,207,207,207,0,0,0,0,0,117,0,0,0,0,0,0,0,0,117,0,0,4636,4522,0,0,4637,4411,0,0,0,0, 0,115,228,229,342,0,0,207,207,207,0,0,0,0,0,341,229,229,230,0,0,0,0,0,0,341,229,230,0,0,0,4522,0,0,0,4524,0,0,0,0, 0,228,229,342,115,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,341,230,0,0,0,0,0,4522,0,0,0,4524,0,0,0,0, 0,0,0,115,115,0,0,0,0,0,341,229,229,229,229,230,0,0,0,0,0,0,341,229,230,0,0,0,0,0,0,4522,0,0,0,4524,0,0,0,0, 0,0,0,115,115,0,0,0,0,341,230,0,0,341,229,229,229,229,229,1348,1349,229,230,0,0,0,0,0,0,0,0,4522,0,0,0,4524,0,0,0,0, 0,0,0,115,228,229,772,229,229,230,0,341,229,230,0,0,0,0,0,0,0,0,0,0,0,207,0,0,0,0,0,4522,0,0,0,4524,0,0,0,0, 0,0,0,228,229,229,772,229,229,229,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,207,207,0,0,4522,0,0,0,4524,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,0,0,4524,0,0,0,0, 0,0,0,0,0,4070,4072,0,0,0,0,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,0,0,4524,0,0,0,0, 0,0,0,0,4070,4184,4298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4409,4635,0,0,0,4524,0,0,0,0, 0,0,0,0,4296,4298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4409,4410,4410,4635,0,0,0,4524,4636,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,0,0,0,0,0,0,0,0,4409,4635,0,0,0,0,0,4524,4636,0,0,0,0,0, 0,0,0,0,0,0,4070,4072,0,0,0,0,207,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,0,0,0,0,0,4524,0,0,0,0,0,0, 0,0,0,0,0,0,4296,4298,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,0,0,0,0,0,4524,0,0,0,0,207,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,0,0,0,0,0,0,0,0,0,4522,0,0,0,0,0,4524,4636,0,0,207,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4409,4410,4635,0,0,4524,4636,4636,4636,0,0,0,0,207,207,207, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,0,0,4524,4636,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,0,0,0,0,0,0,4409,4410,4635,0,0,0,4524,0,0,0,0,0,207,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,4070,4072,207,207,0,0,0,0,0,0,0,4522,0,0,0,0,0,4524,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,4296,4298,0,0,0,0,0,0,0,0,0,4522,0,0,0,4524,4636,4636,0,0,0,0,207,0,0,0,0,0,0, 229,229,342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4409,4410,4635,0,0,0,4524,0,0,0,0,0,0,0,0,0,0,0,0,0, 229,342,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,0,0,0,4524,4636,0,0,0,0,0,0,0,0,0,0,0,0,0, 342,115,228,342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,0,0,0,4524,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 115,115,0,115,0,0,0,0,0,0,0,0,0,207,0,0,0,0,0,0,4522,0,0,0,0,4524,0,0,0,0,207,207,207,0,0,0,0,0,0,0, 115,115,0,115,0,0,0,0,207,0,0,0,0,0,0,0,0,0,0,0,4522,0,0,4524,4636,4636,0,0,0,207,0,0,0,0,0,0,0,0,0,0, 115,115,0,115,0,0,0,0,0,207,0,0,207,0,0,0,0,0,0,0,4636,4522,0,4524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 115,228,342,115,0,0,0,0,0,0,207,207,0,0,0,0,0,0,0,0,0,4522,0,4524,0,0,0,0,0,0,0,0,0,0,0,0,0,341,229,229, 115,0,115,115,0,0,0,4070,4072,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,4524,0,0,0,0,0,0,0,0,0,0,0,0,0,117,341,229, 115,0,115,115,0,0,0,4296,4298,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,4524,0,0,0,0,0,0,0,0,0,0,0,0,0,117,117,341, 115,0,115,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,4524,0,0,0,0,0,0,0,0,0,0,0,0,0,117,117,117, 115,0,115,115,0,0,0,0,0,341,229,229,229,229,229,229,229,229,229,229,229,2267,2267,2267,229,229,229,229,229,229,229,229,229,342,0,0,0,117,117,117, 115,0,115,228,229,1348,1349,229,229,230,341,229,229,229,229,229,229,229,229,229,229,2267,2267,2267,229,229,229,229,229,229,342,0,0,228,342,0,0,117,117,117, 115,0,115,0,0,0,0,341,229,229,230,0,341,229,229,229,229,229,229,229,229,2267,2267,2267,229,229,229,229,229,342,228,229,229,342,115,0,0,117,117,117, 115,0,115,0,0,0,0,117,0,341,229,229,230,0,0,0,0,659,0,0,341,2267,2267,2267,342,0,0,0,0,228,229,229,342,115,228,229,229,230,117,117, 115,0,115,0,0,0,0,117,0,117,0,0,0,0,0,0,0,0,0,0,117,0,0,0,115,0,0,0,0,0,0,0,115,115,0,0,0,0,117,117, 115,0,115,0,0,0,0,117,0,117,0,0,0,0,0,0,0,0,0,0,117,0,0,0,115,0,0,0,0,0,0,0,115,115,0,0,0,0,117,117, 228,342,115,0,0,0,0,117,0,117,0,0,0,0,0,0,0,0,0,0,117,0,0,0,115,0,0,0,0,0,0,0,115,115,0,0,0,0,117,117, 0,115,228,229,229,229,229,230,0,117,0,0,0,0,0,0,0,0,0,0,117,0,0,0,115,0,0,0,0,0,0,0,115,115,0,0,0,341,230,117, 0,228,229,229,229,229,229,229,229,230,0,0,0,0,0,0,0,0,0,0,117,0,0,0,115,0,0,0,0,0,0,0,115,115,0,0,0,117,0,117, 0,0,0,0,0,0,0,0,0,0,0,4070,4072,0,0,0,0,0,0,0,117,0,0,0,115,0,0,0,0,0,0,0,115,228,342,0,0,117,0,117, 0,0,0,0,0,0,0,0,0,0,0,4296,4184,4072,0,0,0,0,0,0,117,0,0,0,115,0,0,0,1698,1699,1699,1700,115,0,228,1348,1349,230,341,230, 0,0,0,0,0,0,0,0,0,0,0,0,4296,4298,0,0,0,0,341,229,230,0,0,0,115,0,0,0,2950,2724,2724,2951,115,0,0,0,0,0,117,0, 0,0,0,0,207,207,207,207,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0,0,115,0,0,0,0,2,3,3,3,0,0,0,0,0,117,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0,0,115,0,0,0,0,115,0,0,0,0,0,0,0,0,117,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0,0,115,0,0,0,0,115,0,0,0,0,0,0,0,0,117,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,229,230,0,0,0,0,0,115,0,0,0,0,115,0,0,0,0,0,0,0,0,117,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0,0,0,0,115,0,0,0,0,115,0,0,0,341,229,229,229,229,230,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0,0,0,0,115,0,0,0,0,115,0,0,0,117,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,341,229,229,230,0,0,0,0,0,0,0,228,342,0,0,0,228,1348,1349,229,230,0,0,0,0,0,0, 0,0,207,207,0,0,0,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,2491,2493,0,0,0,0,0,0,0,0, 0,0,0,0,207,0,0,0,0,0,0,207,0,117,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,2604,2606,0,0,0,0,0,0,0,0, 0,0,0,0,0,207,207,207,207,207,207,0,0,117,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,207,2604,2606,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,115,0,0,207,0,2604,2606,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,117,4866,0,0,0,0,0,0,0,0,0,0,115,207,207,0,0,2604,2606,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,341,1348,1349,230,4979,0,0,0,0,0,0,0,0,0,0,228,229,229,229,229,1348,1349,229,229,229,229,229,229,229,229, 0,0,0,0,0,0,0,0,0,0,117,0,0,0,4979,0,0,0,0,0,0,0,0,0,0,4524,0,0,0,0,2604,2606,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,341,229,230,0,0,0,4979,0,0,0,0,0,0,0,0,0,0,4524,0,0,0,0,2604,2606,0,0,0,0,0,0,0,0, 0,0,0,341,229,229,229,229,230,5091,5091,5091,5091,5091,5092,0,0,0,0,0,0,0,0,0,0,4524,0,0,0,0,2604,2606,0,0,0,0,0,0,0,0, 0,0,341,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,0,0,0,2491,2605,2606,0,0,0,0,0,0,0,0, 0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,0,0,2491,2605,2605,2606,0,0,0,0,0,0,0,0, 0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,4636,4636,0,2491,2605,2605,2605,2719,0,0,0,0,0,0,0,0, 0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,4636,4636,4636,4636,0,0,2491,2605,2605,2605,2719,0,0,0,0,0,0,0,0,0, 229,229,230,0,0,0,0,0,0,4636,4636,4636,4636,4636,4636,4636,4636,4636,4636,4636,0,0,0,0,2491,2492,2605,2605,2605,2606,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,4636,4636,0,0,0,0,0,0,0,0,0,0,0,2491,2492,2492,2492,2605,2605,2605,2605,2718,2719,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2491,2492,2605,2605,2605,2718,2718,2718,2718,2719,0,0,0,0,0,0,0,0,0,0,0,0, 4636,4636,4636,4636,4636,4636,4636,0,0,0,0,0,0,0,0,0,0,0,2717,2718,2718,2718,2719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,207,207,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,207,207,0,0,0,207,207,207,207,207,0,0,0,0,207,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,0,0,0,0,0,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,207,207,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,207,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,0,0,207,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,0,0,0,0,0,0,207, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,0, 0,0,0,0,0,0,207,207,0,0,0,0,0,0,0,0,0,0,0,0,207,207,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,0,0, 0,0,207,207,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,207,207,0,0,0, 0,0,0,0,0,207,207,207,207,207,207,207,207,207,0,0,0,0,0,0,0,0,0,0,0,0,207,207,207,207,207,207,207,207,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,207,207,207,207,207,207,207,207,207,207,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2491,2492,2493,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,2,3,3,3,3,3,3,3,3,4,0,0,0,0,0,2604,2605,2606,0,2,3,3,3,3,3,3,3,3,3,3,3,3,3,4,0,0,0,0, 0,2,115,0,2,3,3,3,3,3,4,3,3,3,4,0,0,2604,2605,2606,0,115,2,3,3,3,3,3,3,3,3,3,3,3,4,3,3,3,3,4, 0,115,115,0,115,0,0,0,0,0,3,4,0,0,117,4,0,2604,2605,2606,0,115,115,2,3,3,3,3,3,3,3,3,3,4,3,3,3,3,4,117, 2,3,3,0,115,0,0,0,0,0,0,117,0,0,117,117,0,2604,2605,2606,0,115,115,115,0,0,0,0,0,0,0,0,0,3,3,3,3,4,117,117 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,1810,1810,1810,1810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,1810,1810,1810,1810,1810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1810,1810,1810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 219,219,219,219,219,219,219,219,219,219,219,219,331,331,331,0,0,0,0,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,209,210,210,211,331,331,331,331,0,0,0,0,0,0,0,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,218,218,218,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,331,0,0,0,0,0,0,0,0,0,0,0,0,331,219,219,219,331,331,331,331,331,219,219,219,219,219,219,219,331,331,219,219,219, 219,219,219,219,219,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,0,0,0,0,0,219,331,219,331,219,331,331,0,0,331,331,331, 219,219,219,219,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,218,0,0,0,0,331,0,331,0,331,0,0,0,0,0,0,0, 219,219,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,218,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,219,219,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,218,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,331,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,219,219,219,219,219,219,218,206,0,0,0,0,0,0,0,0,0,0,0, 219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,219,0,0,0,0,0,0,94,218,218,218,218,218, 219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,219,0,0,0,0,0,218,94,219,219,219,219,219, 219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,219,218,0,0,0,0,219,94,219,219,219,219,219, 219,218,218,218,218,218,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,219,331,0,0,0,0,219,94,219,219,219,219,219, 219,219,219,219,219,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,331,331,331,331,0,0,0,0,0,219,94,219,219,219,219,219, 219,219,219,209,210,210,211,0,0,0,0,218,218,218,218,0,0,0,0,0,0,219,219,219,218,218,218,218,0,0,0,0,218,219,94,219,219,219,219,219, 219,219,219,218,218,218,0,0,0,0,0,219,219,219,219,0,0,0,0,0,0,219,219,219,219,219,219,219,0,0,0,0,219,219,94,331,219,219,219,219, 219,219,219,219,219,219,218,0,0,0,0,219,219,331,331,0,0,0,0,0,0,219,219,219,219,219,219,219,0,0,0,0,219,219,94,94,219,219,219,219, 219,219,219,219,219,219,219,0,0,0,0,219,331,0,0,0,0,0,0,0,0,219,219,219,219,219,219,331,0,0,0,0,219,219,94,94,219,219,219,219, 219,219,219,219,219,219,219,0,0,0,0,331,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,205,0,0,0,0,331,219,94,94,219,219,219,219, 219,219,219,219,219,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,0,0,0,0,0,0,331,94,94,219,219,219,219, 219,219,219,219,219,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,331,0,0,0,0,0,94,94,94,94,219,219,219,219, 219,219,219,219,219,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,0,0,0,0,0,0,94,94,94,94,331,219,219,219, 331,331,331,331,331,331,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,331,331,331,331,0,0,0,0,0,94,94,96,97,98,94,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,94,209,210,211,94,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,94,94,0,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,219,219,219, 219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,218,218,219,219,219,219, 219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,219,219,219,219,219,219, 219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219, 219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,219,219,219,219,219, 219,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219, 219,219,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,331,331,331,331, 219,219,219,0,0,0,0,0,0,205,0,0,0,0,1240,1240,1240,1240,1240,1240,1240,1240,1240,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 331,331,331,0,0,0,0,0,0,0,0,0,0,0,1353,1353,1353,1353,1353,1353,1353,1353,1353,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,218,218,218,218,218,218, 0,0,0,0,0,0,0,0,0,0,0,94,94,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,94,94,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,219,219,219,219,219,219,219,219, 218,218,0,0,0,0,0,0,0,0,0,94,94,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,219,219,219, 219,219,0,0,0,0,0,0,0,0,0,94,94,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,331,331,331,331,331,331,331,331, 219,219,218,0,0,0,0,0,0,0,0,0,94,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,219,219,218,218,218,218,94,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,218,218,218,218,218,218,218,218,218,218,218,218,218, 219,219,219,219,219,219,219,94,94,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,331,331,331,331,219,219,219,219,219,219,219,219,219, 331,331,331,219,219,219,219,94,94,94,94,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,331,219,219,219,219,219,219,219, 0,0,0,219,219,219,219,94,94,94,94,94,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,219, 218,0,0,219,219,219,219,94,94,94,94,94,94,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,331,219,219,219,219,219, 219,0,0,219,219,219,219,94,94,94,94,94,94,94,94,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,219,219,219,219, 219,0,0,219,219,219,219,94,94,94,94,94,94,94,94,94,0,0,0,0,0,0,0,0,0,0,0,0,218,218,0,0,0,0,0,0,219,219,219,219, 219,0,0,219,219,219,219,94,94,94,94,94,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,218,0,0,0,0,0,219,219,219,219, 219,0,0,331,331,219,219,94,94,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,0,0,0,0,0,331,219,219,219, 219,0,0,0,0,331,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,0,0,0,202,203,0,219,219,219, 219,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,94,331,219,219,0,0,0,315,316,0,219,219,219, 219,218,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,94,94,94,331,219,0,0,0,0,0,0,219,219,219, 219,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,94,94,94,0,219,0,0,0,0,0,218,219,219,219, 219,219,219,0,0,0,0,0,0,0,0,0,0,0,94,94,94,0,0,0,218,218,218,218,218,0,94,94,94,218,219,202,203,0,0,0,219,219,219,219, 219,219,219,0,0,0,0,0,0,0,0,0,94,94,94,94,94,94,0,218,219,219,219,219,219,218,0,0,0,219,219,315,316,0,0,0,219,219,219,219, 219,219,219,0,0,0,0,0,218,218,218,94,94,94,94,94,94,94,0,219,219,219,219,219,219,219,218,218,218,219,219,0,0,0,0,0,219,219,219,219, 219,219,219,218,0,0,0,0,219,219,219,0,94,94,94,94,94,94,218,219,219,219,219,219,219,219,219,219,219,219,331,0,0,0,0,0,219,219,219,219, 219,219,219,219,0,0,0,0,219,219,219,218,94,94,94,94,94,94,219,219,219,219,219,219,219,219,219,331,331,331,0,0,0,0,0,0,331,219,219,219, 219,219,219,219,0,0,0,0,219,219,219,219,94,94,94,94,94,94,219,219,219,219,219,219,219,219,331,0,0,0,0,0,0,0,0,0,0,331,331,219, 219,219,219,219,218,0,0,0,219,219,219,219,94,94,94,94,94,0,219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0,0,218,94,94,94,331, 219,219,219,219,219,0,0,0,219,219,219,219,0,94,94,94,94,218,219,219,219,219,219,219,219,219,0,0,0,0,0,0,202,203,218,219,94,94,94,94, 219,219,219,219,219,218,0,0,331,331,219,219,218,94,94,94,94,219,219,219,219,219,219,219,219,219,0,0,0,0,0,0,315,316,219,219,94,94,0,94, 219,219,219,219,219,219,218,0,0,0,219,219,219,94,94,94,0,219,219,219,219,219,219,219,331,331,0,0,0,0,0,0,0,0,219,219,0,94,94,94, 219,219,219,219,219,219,219,0,0,0,219,219,331,94,94,94,218,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0,0,94,331,219,218,0,0,0, 219,219,219,219,219,219,219,0,0,0,331,331,0,94,94,94,219,219,219,219,219,219,331,331,0,0,0,0,0,0,0,94,94,94,94,219,219,218,218,218, 219,219,219,219,219,219,219,0,0,0,0,0,0,94,94,0,219,219,219,219,219,219,0,0,0,0,0,0,0,0,218,94,94,94,0,219,219,219,219,219, 219,219,219,219,219,219,219,0,94,94,0,0,0,0,0,218,219,219,219,219,219,219,0,0,0,0,0,0,0,218,219,94,94,94,218,219,219,219,219,219, 331,331,331,219,219,219,219,218,94,94,0,0,0,0,0,219,219,219,219,219,331,331,0,0,0,0,0,0,0,219,219,94,94,0,219,219,219,219,219,219, 0,0,0,219,219,219,219,219,94,94,0,0,0,0,218,219,219,219,219,219,0,0,0,0,0,0,0,0,218,219,331,94,94,218,219,219,219,219,219,219, 0,0,0,331,219,219,219,219,94,94,94,94,94,94,219,219,219,219,219,219,0,0,0,0,0,0,0,218,219,331,94,94,94,219,219,219,219,219,219,219, 0,0,0,0,219,219,219,219,94,94,94,94,94,94,219,219,219,219,219,219,0,0,0,0,0,0,0,219,219,94,94,94,94,219,219,219,219,219,219,219, 0,0,0,0,219,219,219,331,94,94,94,94,94,0,219,219,219,219,219,219,0,0,0,0,0,0,218,219,219,94,96,97,98,219,219,219,219,219,219,219, 0,0,0,0,219,219,219,0,0,94,94,94,94,218,219,219,219,219,219,219,0,0,0,0,0,0,219,219,219,0,209,210,211,219,219,219,219,219,219,219, 0,0,0,0,219,219,219,0,0,0,94,94,0,219,219,219,219,219,331,331,0,0,202,203,0,0,219,219,219,218,218,218,218,219,219,219,219,331,331,331, 0,0,0,0,219,219,331,0,0,0,0,0,218,219,219,219,219,219,216,217,0,0,315,316,218,0,219,219,219,219,219,219,219,219,219,219,219,0,0,0, 0,0,0,0,219,331,0,0,0,0,0,0,219,219,219,219,219,219,329,330,0,202,203,0,219,0,219,219,219,219,219,219,219,219,219,219,219,0,0,0, 0,0,0,0,331,0,0,0,0,0,0,0,219,219,219,219,219,219,218,218,218,315,316,0,219,218,219,219,219,219,219,219,219,219,219,219,219,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,331,331,331,331,331,331,331,331,331,0,0,0,331,331,331,331,331,331,331,331,331,331,219,219,219,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,219,219,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,218,0,0,0,0,0,0,0,0,218,0,0,0,0,0,0,331,331,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,0,0,0,0,0,0,0,0,219,218,218,218,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,218,218,218,0,218,218,218,218,219,219,0,0,0,0,0,218,0,0,219,219,219,219,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,1240,1240,1240,1240,1240,1240,1240,1240,1240,1240,1240,1240,1240,1240,1240,1240,1240,1240,1240,1240,1240,1240,1240,1240,1240,1240,1240,0,0,0,0,0,0, 0,0,0,0,0,0,0,1353,1353,1353,1353,1353,1353,1353,1353,1353,1353,1353,1353,1353,1353,1353,1353,1353,1353,1353,1353,1353,1353,1353,1353,1353,1353,1353,0,0,0,0,0,0, 218,0,0,0,0,0,0,0,0,0,219,219,219,0,219,219,219,219,219,219,0,0,0,0,0,219,0,0,331,219,219,219,0,0,0,0,0,0,0,0, 219,0,218,218,218,218,0,0,0,0,331,331,331,0,331,219,219,219,219,219,0,0,0,0,0,219,218,0,0,331,331,331,0,0,0,0,0,0,0,0, 219,218,219,219,219,219,94,94,0,0,0,0,0,0,0,331,219,219,219,219,0,0,0,0,0,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,219,219,209,210,211,94,94,0,0,0,0,0,0,0,0,331,331,331,331,0,0,0,0,0,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,219,219,218,94,94,94,94,218,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,331,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,219,219,219,0,0,0,0,219,219,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,0,0,0,0,0,0,0,0,0,0,0,0,0,218, 219,219,219,219,218,218,218,218,219,219,219,218,218,0,0,218,218,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,218,218,219,331,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219, 219,219,219,219,331,331,331,331,331,331,331,219,219,219,219,219,0,0,0,0,0,0,0,0,0,0,0,94,94,0,0,0,0,0,218,218,218,218,218,219, 219,219,331,331,0,0,94,94,94,94,94,331,219,331,331,331,0,0,0,0,0,0,0,0,0,0,94,94,94,0,0,0,0,0,219,219,219,219,219,219, 219,219,94,94,94,94,94,94,94,94,94,94,331,0,0,0,0,0,0,0,0,0,0,0,0,0,94,94,94,0,0,0,0,218,219,219,219,219,219,219, 219,219,0,0,94,94,94,94,94,94,94,94,0,0,0,202,203,0,0,202,203,0,0,202,203,0,94,94,94,94,0,0,218,219,219,219,219,219,219,219, 219,219,218,218,0,94,94,94,94,94,94,0,0,0,0,315,316,202,203,315,316,202,203,315,316,0,94,94,94,94,0,0,219,219,219,219,219,219,219,219, 219,219,219,219,218,0,96,97,98,0,0,0,0,0,0,0,0,315,316,0,0,315,316,0,0,0,94,94,94,0,0,0,331,219,219,219,219,219,219,219, 219,219,219,219,219,218,209,210,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,94,0,0,0,0,0,219,219,219,219,219,219,219, 219,219,219,219,219,219,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,331,331,331,331,331,331, 219,219,219,219,219,219,219,218,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,218,0,0,0,0,0,218,218,218,218,218,218,218, 219,219,219,219,219,219,219,219,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,0,0,0,0,218,219,219,219,219,219,219,219, 219,219,219,331,331,331,331,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,331,0,0,0,0,219,219,219,219,219,219,219,219, 219,219,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,203,0,0,0,331,0,0,0,0,0,927,928,928,931,219,219,219,219, 219,219,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,1040,1041,1041,1044,219,219,219,219, 219,219,0,0,0,315,316,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1153,1154,1155,1157,219,219,219,219, 219,219,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1266,1267,1268,1270,219,219,219,219, 331,331,0,0,0,0,202,203,0,0,0,0,0,218,218,218,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,219,219,219, 0,0,0,0,0,0,315,316,0,218,218,218,218,219,219,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,219,219, 0,0,0,0,0,202,203,218,218,219,219,219,219,219,219,219,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,94,94,94,94,219,219, 0,0,0,0,0,315,316,219,219,219,219,219,219,219,219,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,94,94,94,94,94,94,94,219,219, 218,218,218,218,218,218,218,219,219,219,219,219,219,219,331,0,0,0,0,0,0,0,0,0,94,94,94,94,94,94,94,94,94,94,94,94,94,94,219,219, 219,219,219,219,219,219,219,219,219,219,219,331,331,331,0,0,0,0,0,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,219,219, 219,219,219,219,219,219,219,219,219,219,331,0,0,0,0,0,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,0,94,94,94,94,331,219, 219,219,219,219,219,219,219,219,219,331,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,0,94,94,94,94,94,219, 219,219,219,219,219,219,219,219,219,94,94,94,94,94,94,94,94,94,94,0,0,0,0,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,219, 219,219,219,219,219,219,219,331,331,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,219, 219,219,219,219,219,219,331,94,94,94,94,94,0,0,94,94,94,0,0,0,0,0,94,94,94,94,0,94,94,94,94,94,94,94,94,94,94,94,94,331, 219,219,219,219,219,331,94,94,94,94,94,94,0,0,94,94,0,218,218,218,218,0,0,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94, 219,219,219,219,331,94,94,94,94,94,94,94,94,94,94,94,0,219,219,219,219,218,0,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94, 219,219,219,219,94,94,94,94,94,94,94,94,94,94,94,94,0,219,219,219,219,219,0,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94, 219,219,219,219,94,94,94,94,0,0,0,94,94,94,94,94,94,331,331,219,219,219,0,94,94,94,94,94,94,0,0,94,94,94,94,94,94,94,94,94, 219,219,219,331,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,331,331,331,94,94,94,94,94,94,0,218,218,0,94,94,94,94,94,94,94,94, 219,219,219,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,0,219,219,218,0,94,94,94,94,94,94,0, 219,219,219,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,0,219,219,219,0,94,94,94,94,94,94,218, 219,219,331,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,331,331,331,0,94,94,94,94,94,0,219, 219,219,94,94,94,94,0,0,94,94,94,94,94,94,94,94,94,94,94,94,0,0,0,94,94,94,94,94,94,94,94,94,94,94,94,94,94,0,218,219, 219,219,0,0,0,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,0,0,0,218,219,219, 219,219,218,218,218,0,0,0,0,0,0,0,0,0,94,94,94,94,94,94,94,94,94,94,94,94,0,0,0,0,0,0,0,0,0,218,218,219,219,219, 219,219,219,219,219,218,218,218,218,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,218,218,218,218,218,218,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,218,218,218,218,218,0,0,0,0,0,0,0,218,218,218,218,218,218,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,218,0,0,0,0,0,218,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,331,331,219,219,219,219,219,219,331,331,219,219,219,219,0,0,0,0,0,331,331,219,219,219,219,219,219,219,219,219,331,331,331,331,219,219,219,219, 219,331,0,0,0,0,0,0,0,0,0,0,331,219,331,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,331,331,331, 219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,0,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,96,97,97,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,96,97,97,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,96,97,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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: maps/hoenn/hoenn-route-120.tmx ================================================ 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,116,116,0,0,0,0,0,0,0,114,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,116,116,4184,4184,4184,4184,4184,4184,4184,114,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,116,116,4184,4184,4184,4184,4184,4184,4184,114,114,114,114,114,114,114,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,116,116,4184,4184,4184,4184,4184,4184,4184,114,114,114,114,114,114,114,114,114,114,116,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,116,116,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,116,116,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,116,116,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,116,116,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,116,116,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,116,116,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,116,116,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,116,116,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,116,116,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,116,116,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,116,116,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,116,116,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,116,116,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,116,116,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,4184,4184,4184,4184,4184,4184,4184,116,116,116,4184,4184,4184,4184,4184,116,116,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,0,4184,4184,4184,4184,4184,4184,116,116,116,4184,4184,4184,114,114,116,116,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,0,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,116,114,114,114,0,4184,4184,4184,4184,4184,4184,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,2602,2602,114,114,114,114,114,114,114,114,114,114,114,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,2602,2602,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,2602,2602,2602,2602,2602,2602,2602,2602,114,114,2602,2602,2602,2602,2602,2602,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,2602,2602,2602,2602,2602,2602,2602,2602,2602,2602,2602,2602,2602,2602,2602,2602,2602,2602,2602,2602,2602,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,2602,2602,2602,2602,2602,2602,2602,2602,2602,2602,2602,2602,2602,2602,2602,2602,2602,2602,2602,2602,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,2602,2602,2602,2602,2602,2602,2602,2602,2602,2602,2602,2602,2602,2602,2602,2602,2602,2602,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,2602,2602,2602,2602,2602,2602,2602,2602,2602,2602,2602,2602,2602,2602,2602,2602,2602,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,2602,2602,2602,2602,2602,114,2602,2602,2602,2602,2602,2602,2602,2602,2602,2602,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,2602,2602,2602,2602,2602,2602,2602,2602,2602,2602,2602,2602,2602,2602,2602,2602,2602,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,2602,2602,2602,2602,2602,2602,2602,2602,2602,2602,2602,2602,2602,2602,2602,2602,2602,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,2602,2602,2602,2602,2602,2602,2602,2602,114,2602,2602,2602,2602,2602,114,2602,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,2602,2602,2602,2602,2602,2602,2602,2602,2602,2602,2602,2602,2602,2602,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,2602,2602,2602,2602,2602,114,114,114,2602,2602,2602,2602,2602,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,2602,2602,2602,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,116,116,116,114,114,114,114,114,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,116,116,116,114,114,114,114,114,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,114,114,114,114,114,114,114,4184,4184,4184,4184,4184,4184,4184,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,116,116,114,114,114,114,116,114,114,114,114,114,114,114,4184,4184,4184,4184,4184,4184,4184,4184,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,116,114,114,114,114,114,116,114,114,114,114,114,114,114,4184,4184,4184,4184,4184,4184,4184,4184,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,116,114,114,114,114,114,116,114,114,114,114,114,114,114,4184,4184,4184,4184,4184,4184,4184,4184,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,116,114,114,114,114,114,116,114,114,114,114,114,114,114,4184,4184,4184,4184,4184,4184,4184,4184,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,116,116,116,114,114,114,114,114,116,114,114,114,114,114,114,114,4184,4184,4184,4184,4184,4184,4184,4184,114,114,114,114,114,114,114,114, 114,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,116,114,114,114,114,114,114,114,4184,4184,4184,4184,4184,4184,4184,4184,114,114,114,114,114,114,114,114, 116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,114,114,114,114,114,114,114,4184,4184,4184,4184,4184,4184,4184,4184,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,4184,4184,4184,4184,4184,4184,4184,4184,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,4184,4184,4184,4184,4184,4184,4184,4184,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,4184,4184,4184,4184,4184,4184,4184,4184,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,114,114,114,114,114,114,114,114,4184,4184,4184,4184,4184,4184,4184,4184,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,114,114,114,114,114,114,114,114,114,114,4184,4184,4184,4184,4184,4184,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,114,114,114,114,114,114,114,114,114,114,4184,4184,4184,4184,4184,116,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,114,114,114,114,114,114,114,114, 4184,4184,4184,4184,4184,4184,4184,4184,4184,114,114,114,114,114,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,114,114,114,114,114,114,114,114, 4184,4184,4184,4184,4184,4184,4184,4184,4184,114,114,114,114,114,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,114,114,114,114,114,114,114,114, 4184,4184,4184,4184,4184,4184,4184,4184,4184,114,114,114,114,114,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,114,114,114,114,114,114,114, 4184,4184,4184,4184,4184,4184,4184,4184,4184,114,114,114,114,114,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,114,114,114,114,114,114,114, 4184,4184,4184,4184,4184,4184,4184,4184,4184,114,114,114,114,114,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,114,114,114,114, 4184,4184,4184,4184,4184,4184,4184,4184,4184,114,114,114,114,114,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,4184,4184,4184,4184,4184,4184,4184,114,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,4184,4184,4184,4184,4184,114,116,114,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,116,116,116,116,116,114,114,114, 114,114,114,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,116,4184,4184,4184,4184,116,116,116,116, 116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,4184,4184,4184,4184,4184,4184,4184,4184,4184, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184, 114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184, 114,114,114,114,114,114,114,114,114,114,114,116,116,116,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184, 114,114,114,114,114,114,114,114,114,114,114,116,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,114 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2491,2492,2492,2492,2492,2492,2492,2492,2492,2492,2492,2492,2492,2493,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,2491,2492,2492,2492,2605,2605,2605,2605,2718,2718,2718,2718,2718,2718,2718,2718,2718,2719,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,2491,2492,2492,2492,2492,2492,2492,2492,2605,2605,2605,2605,2718,2718,2718,2719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,2717,2718,2718,2718,2718,2718,2718,2718,2718,2718,2718,2719,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,207,207,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,341,229,229,229,229,229,229,229,229,229,342,0,207,207,207,207,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,117,341,229,229,229,229,229,229,229,342,228,229,229,229,229,229,342,0,0,0,0,0,0,0,0,0,0,0,0,207,0,0, 0,0,0,0,0,0,0,0,117,117,4409,4410,4410,4410,4410,4410,4411,228,229,229,229,229,229,342,228,229,229,342,0,0,0,0,0,0,0,0,207,0,0,0, 0,0,0,0,0,0,0,0,117,117,4522,0,0,0,0,0,4524,0,0,0,0,0,0,228,229,229,342,115,207,0,0,0,207,207,207,207,0,0,0,0, 0,0,0,0,0,0,0,0,117,117,4522,0,0,0,0,0,4637,4410,4410,4410,4410,4410,4410,4410,4410,4411,115,115,0,207,207,207,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,117,117,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,115,115,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,117,117,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,115,115,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,117,117,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,115,115,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,117,117,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,115,115,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,117,117,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,115,115,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,117,117,4522,0,0,0,0,0,0,0,2,3,4,0,0,0,0,4524,115,115,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,3,3,3,4,0,0,0,0,0,2,115,0,117,4,0,0,0,4524,115,115,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,117,4522,0,0,0,0,115,228,456,230,117,0,2,3,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,4070,4072,0,0,0,0,0,117,4522,0,0,0,0,228,229,569,229,230,2,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,4296,4298,0,0,0,0,0,3,3,3,3,4,0,0,0,0,0,4524,115,115,0,0,0,0,0,0,0,0,0,2837,2498,2498,2498,2838,0,0, 0,0,0,0,0,0,0,0,2488,0,0,0,0,0,0,3,3,3,3,3,3,3,3,3,0,0,0,0,0,0,0,0,0,1811,1812,1812,1812,1813,0,0, 0,0,0,0,0,0,0,0,2601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,2601,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,4070,4072,0,0,0,2601,4070,4072,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,4296,4298,0,0,0,2714,4296,4298,0,0,0,0,0,0,0,0,0,4070,4072,0,0,0,0,0,0,0,2603,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,2714,2715,0,0,0,0,0,0,0,0,0,4296,4298,0,0,0,0,0,0,0,2603,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,4070,4072,0,2714,0,0,0,0,0,4070,4072,0,0,0,0,4070,4072,0,0,0,0,2603,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,4296,4184,4072,0,2601,0,0,0,4070,4184,4298,0,0,0,4070,4184,4298,0,0,0,0,2603,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,4296,4298,0,2714,0,0,0,4296,4298,0,0,0,0,4183,4185,0,0,0,0,0,4070,4072,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,2601,0,0,0,0,0,0,0,0,4296,4184,4072,0,0,0,4070,4184,4298,2490,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,2714,0,0,0,0,0,0,4070,4072,0,4183,4185,0,0,4070,4184,4185,0,2603,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4070,4184,4298,0,4296,4298,0,0,4296,4297,4298,0,2603,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4296,4298,0,0,2715,2715,2715,0,0,0,0,0,2716,0,0,0,0,0,0,0,0, 3,3,3,3,3,3,3,3,3,3,3,3,4,207,207,0,0,0,0,2715,2715,2715,2716,0,0,0,2714,0,0,0,2716,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,3,3,4,207,0,0,0,0,0,0,0,0,0,0,0,2714,2715,2716,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,117,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 3,3,3,3,3,3,3,4,0,0,0,0,0,0,3,3,4,207,0,0,0,0,0,0,207,207,207,207,0,207,207,207,207,207,207,0,0,0,0,0, 0,0,0,0,0,0,0,117,3,3,3,3,3,4,0,0,117,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,4,0,0,117,0,0,117,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,117,0,0,117,0,0,117,117,207,207,207,207,207,207,207,207,207,207,0,207,207,207,207,207,0,207,207,0,0,0, 0,0,0,0,0,0,0,0,0,0,117,0,0,3,3,4,117,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,3,3,3,3,4,117,117,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,117,117,117,0,0,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,0,0,0, 0,0,0,0,0,0,0,0,4070,4072,0,0,0,0,117,117,117,117,0,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,4,0,0,0,4296,4298,2,4,0,0,117,117,117,117,0,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,230,0,0,0,0,0,228,230,0,0,117,117,117,117,0,0,207,207,207,207,207,207,207,207,0,0,207,207,207,207,207,207,0,0,0,0, 0,0,0,0,0,0,2,3,4,0,0,0,0,0,117,117,117,117,0,0,0,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,115,0,117,4,0,0,0,0,117,117,117,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207,207,207, 0,2,4,0,0,115,228,229,230,117,0,0,2,4,117,117,117,117,0,207,207,207,207,207,207,207,207,207,207,207,0,207,207,207,207,207,207,0,0,0, 0,228,230,0,0,228,229,229,229,230,0,0,228,230,117,117,117,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,117,117,117,207,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 4070,4072,0,0,0,0,4070,4071,4072,0,0,0,0,0,117,117,117,117,0,0,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,0,0,0,0, 4296,4298,0,2,4,0,4183,4184,4185,0,2,4,0,0,117,117,117,117,0,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,230,4070,4184,4297,4298,0,228,230,0,0,117,117,117,117,0,0,0,1245,1020,1133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,4296,4298,0,0,0,0,0,0,0,117,117,117,117,0,0,0,908,0,0,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207,207, 0,0,4070,4072,0,0,0,0,4070,4072,0,4070,4072,0,117,117,117,117,0,0,0,908,0,0,0,0,0,0,0,0,0,0,0,0,1132,1020,1020,1020,1133,0, 0,0,4296,4298,0,4070,4072,0,4296,4298,0,4296,4298,0,117,117,117,117,0,0,0,908,0,341,229,229,229,229,229,229,229,342,0,0,0,0,0,0,0,0, 0,0,0,0,0,4296,4184,4072,0,0,0,0,0,0,117,117,117,117,0,0,1132,1021,0,117,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,4296,4298,0,0,0,0,0,0,117,117,117,117,0,0,0,0,0,117,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,341,229,1348,229,230,117,117,117,0,0,0,0,0,117,4409,4410,4410,4410,4410,4410,4411,228,342,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,117,341,1348,229,229,230,117,117,0,0,0,0,0,117,4522,0,0,0,0,0,4637,4411,115,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,117,117,0,0,0,0,117,117,4070,4072,0,0,0,1240,1240,1240,1240,1240,1240,1240,1240,1240,1240,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,117,117,0,0,0,0,117,117,4296,4298,0,0,0,1353,1353,1353,1353,1353,1353,1353,1353,1353,1353,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,117,117,0,0,0,0,117,117,0,0,0,0,0,117,4522,0,0,0,0,0,0,4524,115,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,341,229,230,117,0,0,0,0,117,117,0,0,0,0,0,117,4522,0,0,0,0,0,0,4524,115,0,0,0,0,0,0,0, 229,229,229,229,229,229,229,229,230,341,229,230,0,0,0,207,117,117,0,0,0,0,0,117,4522,0,0,0,0,0,0,4524,115,0,0,0,0,0,0,0, 229,229,229,229,229,229,229,229,229,230,0,0,0,0,0,341,230,117,0,0,4070,4072,0,117,4522,0,0,0,0,0,0,4524,115,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,341,230,0,0,4183,4184,4072,117,4522,0,0,0,0,0,0,4524,115,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,207,0,0,0,117,117,0,0,0,4296,4297,4298,117,4522,0,0,0,0,0,0,4524,115,0,0,0,0,0,0,0, 0,0,0,0,331,331,331,0,0,0,0,0,0,0,207,117,117,0,4070,4072,0,0,0,117,4522,0,0,0,0,0,0,4524,115,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,230,117,0,4296,4298,0,341,1348,230,4522,0,0,0,0,0,0,4524,115,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,4070,4072,0,207,207,117,341,230,0,0,0,0,117,0,0,4636,4522,0,0,0,0,2,3,3,3,3,3,3,3,3,3, 0,0,0,1698,1699,1699,1699,1699,1700,4296,4298,0,0,0,117,117,0,0,0,4070,4072,117,0,0,0,4522,0,0,0,2,115,2,3,3,3,3,3,3,3,3, 0,0,0,2950,2724,2724,2724,2724,2951,0,0,0,0,0,117,117,0,0,0,4296,4298,117,0,0,0,4636,4636,4636,4636,115,115,115,0,0,0,0,0,0,0,0, 4409,4410,4410,4410,4410,4410,4410,4410,4411,0,0,0,4070,4072,117,117,0,0,0,0,0,117,0,0,0,0,0,0,0,115,115,115,0,0,0,0,0,0,0,0, 4522,0,0,0,0,0,0,0,4524,0,0,0,4296,4298,117,117,0,4070,4072,0,0,117,0,0,0,0,0,0,0,115,115,115,0,0,0,0,0,0,0,0, 4522,0,0,0,0,0,0,0,4524,0,0,0,0,0,117,117,4070,4184,4298,0,0,3,3,3,3,3,3,3,3,3,115,228,342,0,0,0,0,0,0,0, 4522,0,0,0,0,0,0,0,4524,0,0,0,0,0,117,117,4296,4298,0,0,0,0,0,0,0,0,0,0,0,0,228,342,115,0,0,0,0,0,0,0, 4522,0,0,0,0,0,0,0,4524,0,0,0,0,0,117,117,0,2491,2493,0,0,0,0,0,0,0,0,0,0,0,0,115,228,229,229,229,229,229,229,229, 4522,0,0,0,0,0,0,0,4524,0,0,0,0,0,117,117,0,2604,2606,207,0,0,0,0,0,0,0,0,0,0,0,228,229,229,229,229,229,229,229,229, 4636,4636,4522,0,0,0,0,0,4524,0,341,229,1348,229,230,117,0,2604,2605,2493,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,4636,4636,4522,0,0,0,4524,0,117,341,1348,229,229,230,0,2604,2605,2606,0,207,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,4636,4636,4636,4636,4636,0,117,117,0,0,0,0,0,2717,2605,2605,2493,659,0,207,207,207,207,207,207,207,207,207,0,659,0,0,659,0,0,0, 0,0,0,0,0,0,0,0,0,0,117,117,0,4070,4072,0,0,0,2717,2605,2605,2492,2492,2492,2492,2492,2492,2492,2492,2492,2492,2492,2492,2492,2492,2493,0,0,0,659, 0,0,0,0,0,0,341,229,229,229,230,117,0,4296,4298,0,0,4070,4072,2717,2718,2718,2718,2718,2718,2718,2718,2718,2718,2718,2718,2718,2718,2605,2605,2605,2492,2492,2492,2492, 0,0,0,0,0,0,117,341,229,229,229,230,0,0,659,0,0,4296,4184,4072,0,0,0,4070,4072,0,659,0,0,0,0,0,0,2717,2718,2718,2718,2718,2718,2718, 0,0,0,0,0,0,117,117,2837,2498,2498,2498,2838,0,0,0,0,0,4296,4298,0,0,0,4296,4298,0,0,0,0,0,0,0,0,0,0,0,0,0,659,0, 0,0,0,0,0,0,117,117,1811,1812,1812,1812,1813,0,0,0,0,0,0,659,0,0,0,0,0,0,0,0,0,0,0,341,229,229,229,229,342,0,0,0, 0,0,341,229,229,229,230,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,230,4409,4410,4410,4411,228,229,229,229, 229,229,230,341,229,229,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0,341,229,229,229,229,229,229,229,229,230,4409,4635,0,0,4637,4410,4410,4410,4411, 229,229,229,230,0,0,0,0,0,0,0,0,0,0,0,341,229,229,229,229,229,230,4409,4410,4410,4410,4410,4410,4410,4410,4410,4635,0,0,0,0,0,0,0,4524, 0,0,0,0,0,0,0,0,0,0,0,0,0,341,229,230,4409,4410,4410,4410,4410,4410,4635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524, 0,0,0,0,0,0,0,0,0,0,0,341,229,230,4409,4410,4635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524, 0,0,0,0,0,0,0,0,0,0,341,230,4409,4410,4635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,4636 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1810,1810,1810,1810,1810,1810,1810,1810,1810,1810,1810,1810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,1810,1810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1810,1810,1810,1810,1810,1810,1810,0,0,0,0,0,0,0,1810,1810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,1810,1810,1810,1810,1810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,1810,1810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,1810,1810,1810,1810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1810,1810,1810,1810,1810,1810,1810,1810,1810, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1810,1810,1810,1810,1810,1810,1810,1810, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1810,1810,1810,1810,1810,1810,1810,1810,1810,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 219,219,219,219,219,219,219,219,219,331,331,331,219,219,219,331,331,331,331,331,331,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,218,218,0,331,331,331,0,218,218,218,218,0,331,331,331,331,331,331,331,331,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,218,218,218,218,218,219,219,219,331,0,0,0,0,0,0,0,0,0,331,331,331,331,219,219,219,219,219,219,219, 219,219,219,219,331,331,219,219,219,219,219,219,219,219,219,219,331,331,331,0,0,0,0,0,0,0,0,205,0,0,0,0,0,331,331,331,219,219,219,219, 219,331,331,331,0,0,331,331,331,331,331,331,331,331,331,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,331,219,219, 219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,219, 331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,94,94,94,94,94,94,94,94,94,94,0,0,0,0,0,0,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,0,0,0,331, 0,0,0,0,218,218,218,0,0,0,0,0,0,0,0,0,0,0,0,218,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,0,0,0, 0,218,218,218,219,219,219,218,0,0,0,0,0,0,0,0,0,0,0,219,94,94,94,94,94,96,97,98,94,94,94,94,94,94,94,94,94,94,0,218, 218,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0,0,0,0,331,0,0,0,0,0,209,210,211,94,94,94,94,94,94,94,94,94,94,218,219, 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,94,94,94,94,94,94,94,94,0,219,219, 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,94,94,94,94,94,94,94,0,218,219,219, 219,219,219,219,219,219,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,94,94,0,0,0,0,0,219,219,219, 219,219,219,219,219,331,331,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,219,219,219, 219,219,219,219,331,0,0,0,1240,1240,1240,1240,1240,1240,1240,1240,1240,1240,1240,1240,1240,1240,1240,1240,1240,1240,1240,1240,0,0,0,0,0,0,218,218,219,219,219,219, 219,219,219,219,0,0,0,0,1353,1353,1353,1353,1353,1353,1353,1353,1353,1353,1353,1353,1353,1353,1353,1353,1353,1353,1353,1353,0,0,0,0,0,218,219,219,219,219,219,219, 219,219,219,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,218,218,218,219,219,219,219,219,219,219, 219,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,219,0,0,0,0,0,218,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,331,0,0,0,0,0,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,219,219,219,219,219,219, 219,219,0,0,0,0,0,0,219,219,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,218,218,219,219,96,97,98,219,219,219,219,219,219,219, 219,331,0,0,0,0,0,0,219,219,219,0,0,218,218,218,0,0,0,0,0,0,0,0,218,219,219,219,219,219,209,210,211,331,331,331,331,331,219,219, 219,0,0,0,0,0,0,0,331,219,219,218,218,219,219,219,218,218,218,218,218,0,0,0,219,219,219,219,219,219,218,0,0,0,0,0,0,0,219,219, 331,0,0,0,0,0,0,0,0,331,219,219,219,219,219,219,219,219,219,219,219,218,218,218,219,219,219,219,219,219,219,0,0,0,0,0,0,0,219,219, 0,0,0,0,0,0,0,0,0,0,331,331,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,218,0,0,0,0,0,218,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,331,331,219,219,219,219,219,331,331,331,331,331,219,219,219,219,219,219,219,219,0,0,0,0,218,219,219,219, 218,0,0,0,0,0,0,0,0,0,0,0,0,0,331,331,331,331,331,0,0,0,0,0,331,331,331,331,331,331,219,219,218,218,0,0,219,219,219,219, 219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,219,219,219,218,0,219,219,219,219, 219,218,0,0,0,0,0,0,0,0,0,0,0,218,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,219,219,219,0,219,219,219,219, 219,219,218,218,218,0,0,0,0,0,0,0,0,219,219,0,0,0,0,0,218,0,0,0,0,0,218,218,0,0,0,0,331,219,219,0,219,219,219,219, 219,219,219,219,219,218,218,0,0,0,0,0,0,331,331,0,0,0,0,218,219,218,0,0,0,218,219,219,0,0,0,0,0,331,331,0,219,219,219,219, 219,219,219,219,219,219,219,218,0,0,0,0,0,0,0,0,0,0,0,219,331,331,0,0,0,219,219,331,0,0,0,0,0,0,0,0,219,219,219,219, 219,219,219,219,219,219,219,219,218,218,0,0,0,0,218,218,0,0,0,331,0,0,0,0,0,331,331,0,0,0,0,0,0,0,0,0,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,218,218,218,0,219,219,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,94,331,331,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,331,94,94,94,331,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219, 218,218,218,218,218,218,0,0,218,218,218,218,0,0,0,94,94,331,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219, 219,219,219,219,219,219,218,218,219,219,219,219,218,218,0,0,94,94,219,218,218,218,218,218,0,0,0,0,0,0,0,0,0,0,0,331,331,219,219,219, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,0,0,94,94,219,219,219,219,219,219,94,94,94,94,0,94,94,94,94,94,94,94,94,219,219,219, 219,219,219,219,219,219,219,331,219,219,219,219,219,219,0,0,0,94,331,219,219,219,219,219,94,94,94,94,0,94,94,94,94,94,94,94,94,219,219,219, 218,218,218,218,218,218,218,0,331,331,331,331,331,331,218,0,0,0,94,331,331,331,331,331,0,0,0,0,0,0,0,0,0,0,0,94,94,331,219,219, 219,219,219,219,219,219,219,0,0,0,0,218,0,0,219,218,0,0,94,94,94,94,94,94,94,94,94,94,0,94,94,94,94,94,0,94,94,94,219,219, 219,219,219,219,219,219,219,218,218,218,0,219,218,0,219,219,0,0,94,94,94,94,94,94,94,94,94,94,0,94,94,94,94,94,0,94,94,94,219,219, 219,219,219,219,219,219,219,219,219,219,0,219,219,0,331,331,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,219,219, 219,219,219,219,219,219,219,219,219,331,0,331,331,0,0,0,0,0,94,0,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,219,219, 219,219,219,219,219,219,331,331,331,0,0,0,218,218,0,0,0,0,94,0,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,331,219, 219,219,219,331,331,331,0,0,0,0,0,0,331,219,0,0,0,0,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,94,219, 219,219,331,0,0,0,0,0,0,0,0,0,0,331,0,0,0,0,94,0,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,0,94,94,219, 219,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,0,94,94,219, 219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,0,0,0,0,0,0,0,0,0,94,94,0,0,0,0,0,0,0,94,94,331, 219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,94,94,94,94,94,94,94,94,94,94,94,0,94,94,94,94,94,94,94,94,94, 331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,94,94,94,94,94,94,94,94,94,94,94,0,94,94,94,94,94,94,96,97,98, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209,210,211, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,94,0,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,0,94,94,94, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,0,94,94,94, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94,94,94, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,218,0,0,0,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,0,0,0,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94,94, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,331,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,0,0,0,0,0,0,0,0,0,0,0,0,0,218,218,0,0,0,0,0,218, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,218,0,0,0,0,219, 218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,0,219,219,219,218,0,0,0,219, 219,218,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,219,0,0,0,0,0,0,0,0,0,331,219,219,219,0,0,0,219, 219,219,219,218,218,218,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,0,0,0,0,0,0,0,0,0,0,219,219,219,0,0,0,219, 219,219,219,219,219,219,219,218,0,0,0,0,0,0,0,0,0,0,0,0,0,331,331,0,0,0,0,0,0,0,0,0,0,331,331,331,0,0,0,219, 219,219,219,219,219,219,219,219,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219, 219,219,219,219,219,219,219,219,219,218,0,0,0,94,94,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,219, 219,219,219,219,219,219,219,219,331,331,0,0,94,94,94,94,0,0,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,219,219, 331,331,331,331,331,331,331,331,0,0,0,0,94,94,94,94,0,0,219,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,94,94,94,0,0,0,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,218,218,218,219,219,219,219, 218,218,218,218,218,218,218,218,218,0,0,94,94,94,94,0,0,0,219,331,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,218,0,94,94,94,94,0,0,0,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,219, 219,219,219,219,219,219,219,219,219,331,0,0,94,94,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,219, 219,219,219,219,96,97,98,219,331,0,0,0,94,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,219, 219,219,219,219,209,210,211,331,0,0,0,0,94,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,219, 219,219,219,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,219,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,218,218,218,218, 331,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,218,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,218,218,0,0,0,0,0,0,0,0,0,94,0,0,0,218,218,218,218,218,0,0,0,0,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,219,219,0,0,0,0,0,0,0,0,94,94,0,0,0,331,331,219,219,219,218,0,0,0,331,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,219,219,0,0,0,0,0,0,0,0,94,94,94,94,94,94,94,331,331,219,219,0,0,0,0,331,331,331,331,331,331, 0,0,0,0,0,0,0,0,0,219,219,0,0,0,0,0,0,0,0,94,94,94,94,94,94,94,94,94,96,97,98,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,219,331,0,0,0,0,0,0,0,0,0,94,94,94,94,94,94,94,94,209,210,211,0,218,218,218,218,218,218,218,0, 0,0,0,0,0,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0,0,94,94,94,94,94,94,94,94,94,94,94,219,219,331,331,331,331,331,0, 218,218,0,0,0,0,0,0,0,331,0,0,0,0,0,0,0,0,0,0,0,0,0,94,94,94,94,94,94,94,94,94,331,331,0,0,0,0,0,0, 219,219,218,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,0, 219,219,219,219,218,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,218,218,218,0,0,0,0,0,0,0, 219,219,219,219,219,219,0,0,0,0,0,0,0,0,0,0,218,218,0,0,0,0,0,0,0,218,218,218,218,219,219,331,331,0,0,0,0,0,0,0, 219,219,331,331,331,331,0,0,0,0,0,0,0,218,218,218,219,219,218,0,0,0,0,218,218,219,219,219,219,219,331,0,0,0,0,0,0,0,0,0, 331,331,0,0,0,0,0,0,218,218,218,218,218,219,219,219,219,219,219,218,218,0,0,331,331,331,331,331,331,331,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,218,218,0,219,219,219,219,219,219,219,331,331,331,331,331,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 218,218,0,0,218,219,219,218,219,219,219,219,219,331,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,219,218,218,219,219,219,219,219,219,219,331,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,219,219,219,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,219,219,219,219,219,219,219,219,331,0,0,0,0,0,0,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: maps/hoenn/hoenn-route-121.tmx ================================================ 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,114,114,114,114,114,114,0,0,0,0,0,3402,3402,3402,3402,3402,3402,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3402,3402,3402,3402,3402,3402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,3402,3402,3402,3402,3402,3402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,0,0,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3402,3402,3402,3402,3402,3402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3402,3402,3402,3402,3402,3402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,117,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,117,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,117,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,117,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 229,229,229,229,230,117,0,0,0,0,0,0,0,0,95,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 229,229,229,229,229,230,0,0,0,0,0,0,0,0,95,95,95,95,0,0,0,0,0,95,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,229,229,230,117,0,0,0,0,0,0,0,0,95,95,95,95,95,0,0,0,0,0,0,0,0,0,95,95,95,95,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,95,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,341,230,0,0,0,0,0,0,0,0,0,95,95,95,95,95,95,95,0,0,0,0,0,95,95,95,95,95,95,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,95,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,659,2491,2492,2492,2492,2492,2492,2492,2493,0,0,0,0,0,0,0,0,95,95,95,95,95,95,95,0,0,0,0,0,0,0,0,341,229,229,229,229,230,0,0,117,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,0,95,95,95,0,0,0,0,0,0,0,0, 0,659,0,2491,2492,2605,2605,2718,2718,2718,2718,2718,2719,0,95,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0,0,0,0,117,95,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,95,95,95,95,0,0,0,0,0,0,0,0, 2492,2492,2492,2605,2605,2605,2719,0,0,0,0,0,95,95,95,95,95,95,95,95,95,95,95,0,341,229,229,229,229,229,229,229,229,229,229,229,230,0,0,0,0,0,0,0,117,95,95,95,95,95,95,95,0,0,0,0,0,95,95,0,0,0,0,0,0,0,95,95,95,95,95,95,0,0,0,0,0,0,0,0, 2718,2718,2718,2718,2718,2719,0,0,0,0,0,95,95,95,95,95,95,95,95,95,341,229,229,229,230,341,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,230,0,0,0,0,0,0,0,0,0,0,0,0,95,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,659,0,0,659,0,0,0,0,0,0,0,0,0,0,341,229,229,229,230,341,229,229,229,230,0,0,0,0,0,0,0,0,0,0,0,0,95,95,95,95,95,0,0,0,0,0,0,0,0,0,0,0,0,95,95,95,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,229, 659,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,341,229,229,229,230,0,0,0,0,0,341,229,229,229,229,229,229,342,0,0,0,0,95,95,95,95,95,95,95,0,0,0,0,0,0,0,0,0,95,95,95,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,229,229,229,230,4409, 229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,230,117,0,0,0,0,0,341,229,229,229,230,0,0,0,0,0,0,228,229,229,229,229,342,95,95,95,95,95,95,95,0,0,0,0,0,0,0,95,95,95,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,4409,4410,4410,4410,4635, 0,0,0,0,0,0,0,0,341,229,229,229,229,229,229,229,229,230,341,229,229,229,229,230,4409,4410,4410,4411,0,0,0,0,0,0,4409,4410,4410,4410,4411,228,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,230,4522,0,0,0,0, 0,0,0,0,0,341,229,229,230,0,0,0,0,0,0,341,229,229,230,4409,4410,4410,4410,4410,4635,0,0,4524,0,0,0,0,0,0,4522,0,0,0,4637,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4635,0,0,0,0, 0,0,0,341,229,230,341,229,229,229,229,229,229,229,229,230,4409,4410,4410,4635,0,0,0,0,0,0,0,4524,0,0,0,0,0,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,341,230,0,0,117,4409,4410,4410,4410,4410,4410,4410,4410,4410,4635,0,0,0,0,0,0,0,0,0,0,4524,0,0,0,0,0,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,341,230,0,341,229,230,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4637,4410,4410,4410,4410,4410,4410,4635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 219,219,219,219,0,0,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,1562,212,213,212,213,212,213,212,213,2891,2892,2892,2892,2896,212,213,0,0,0,0,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 219,219,219,219,0,0,438,439,438,439,438,439,438,439,325,326,325,326,438,439,438,439,438,439,438,439,1562,325,326,325,326,325,326,325,326,2891,2892,2892,2892,2896,325,326,0,0,0,0,325,326,325,326,325,326,325,326,438,439,438,439,325,326,325,326,325,326,325,326,325,326,438,439,438,439,438,439,438,439,438,439,438,439, 219,219,331,331,0,0,212,213,212,213,212,213,212,213,0,0,0,0,212,213,212,213,212,213,212,213,1562,0,0,0,0,0,0,0,0,2891,2892,2892,2892,2896,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213,212,213,0,0,0,0,0,0,0,0,0,0,212,213,212,213,212,213,212,213,212,213,212,213, 331,331,0,0,0,0,438,439,438,439,438,439,438,439,0,0,0,0,325,326,325,326,325,326,325,326,1562,0,0,0,0,0,0,0,0,3004,3005,3005,3005,3009,0,0,0,0,0,0,0,0,0,0,0,0,0,0,325,326,325,326,0,0,0,0,0,0,0,0,0,0,325,326,325,326,325,326,325,326,325,326,325,326, 0,0,0,0,0,0,212,213,212,213,212,213,212,213,0,0,0,1449,1450,1450,1450,1450,1450,1450,1450,1450,1450,1450,1450,1450,1450,1450,1450,1450,1450,3117,3118,3119,3120,3122,0,0,0,0,0,0,1449,1450,1450,1450,1450,1450,1450,1450,1450,1450,1450,1450,1450,1450,1450,1450,1450,1450,1451,0,1449,1450,1450,1450,1450,1450,1450,1678,1450,1450,1450,1450,1450,1451, 0,0,0,0,0,0,325,326,325,326,325,326,325,326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,100,0,3230,3231,3232,3233,3235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1564,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213,0,0,0,0,0,205,0,0,216,217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1564,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,438,439,99,100,0,0,0,0,0,0,329,330,0,1449,1450,1450,1450,1450,1451,0,0,1449,1450,1450,1451,0,0,1449,1450,1451,0,0,1449,1450,1450,1450,1450,1450,1450,1450,1450,1451,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1564,0,0,0,0,1564,0,0,1562,0,0,0,0,0,0,0,0,1564,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1449,1450,1450,1450,1450,1450,1450,1450,1450,1450,1450,1450,1451,0,0,325,326,325,326,0,0,0,0,0,0,0,0,0,0,0,0,1449,1450,1450,1450,1450,1451,0,1449,1451,0,0,0,0,1564,0,0,1562,0,0,0,0,0,0,0,0,1564,0,0,0,0,99,100, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1564,0,0,0,0,1564,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,100,212,213, 0,0,0,0,0,0,0,0,99,100,99,100,99,100,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1449,1450,1450,1450,1450,1450,1450,1450,1450,1450,1450,1451,0,0,0,0,1564,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213,325,326, 0,0,0,0,0,0,0,0,212,213,212,213,212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1564,1449,1450,1450,1450,1450,1450,1450,1450,1450,1451,0,0,0,0,325,326,0,0, 0,0,0,0,0,0,0,0,325,326,325,326,325,326,325,326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1564,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3410,0,0,0,205,3412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1449,1450,1451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3410,0,0,0,0,3412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 99,100,0,325,326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,203,3410,0,0,0,0,3412,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,3410,0,0,0,0,3412,315,316,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 325,326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,203,0,3523,0,0,0,0,3525,0,0,315,316,202,203,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,315,316,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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: maps/hoenn/hoenn-route-122.tmx ================================================ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116, 0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,116,116,116,116,116,116,116,116,0,0,0,0,0,0, 116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0, 116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0, 116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,0 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0, 116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0, 116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0, 116,116,116,116,116,116,116,116,116,114,0,0,0,0,0,0, 116,116,116,116,114,114,114,114,114,114,0,0,0,0,0,0, 0,0,0,0,114,114,114,114,114,0,0,0,0,0,0,0 116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,114,114,114,114,0,0,0,0,0,0,0,0,0,0, 0,0,114,114,114,114,0,0,0,0,0,0,0,0,0,0, 0,0,114,114,114,114,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,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,4,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0, 0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0, 0,0,202,203,2,4,0,0,0,0,0,0,0,0,0,0, 0,0,315,316,228,230,0,0,0,0,0,0,0,0,0,2, 0,202,203,0,0,0,0,0,0,0,0,0,0,0,2,115, 0,315,316,0,0,0,0,0,0,0,2,3,3,3,3,3, 0,2,4,0,0,0,0,0,0,2,115,0,2,3,3,3, 0,228,230,0,0,0,0,0,2,3,3,0,115,0,2,3, 0,2,4,0,0,0,0,2,115,2,3,3,3,0,115,0, 0,228,230,0,0,0,2,3,115,115,2,3,3,3,3,2, 2,4,0,0,0,4524,115,2,3,115,115,0,2,3,3,3, 228,230,0,0,0,4524,115,115,2,3,115,2,115,0,2,3 0,0,0,0,0,202,203,2,4,2,4,0,0,0,0,0, 0,0,0,0,0,315,316,228,230,228,230,202,203,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,315,316,2,4,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,2, 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, 3,3,3,3,3,3,3,3,3,3,4,0,0,0,0,0, 2,3,3,3,3,3,3,3,4,0,3,4,0,0,0,0, 115,2,3,3,3,3,4,0,117,0,0,117,4,0,0,0, 3,115,0,0,0,0,117,0,3,3,4,3,3,4,0,0, 3,3,2,3,3,4,3,3,3,4,3,4,0,3,4,0, 2,3,3,0,0,3,4,0,0,117,0,3,3,4,3,4, 115,0,0,0,0,0,3,3,4,3,3,4,0,3,4,117, 3,2,3,3,3,3,4,0,117,4,0,117,0,0,117,117, 3,3,0,0,0,0,117,4,117,117,0,117,0,0,117,117 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 4,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0, 230,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,228,230,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,228,230,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0, 4,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0, 117,4522,0,0,0,315,316,0,0,0,0,0,0,0,0,0, 117,4522,0,0,0,0,2,4,0,0,0,0,0,0,0,0 202,203,0,0,0,4524,115,115,115,2,3,115,115,2,115,0, 315,316,0,0,0,4524,115,115,115,115,0,115,115,115,115,0, 202,203,0,0,0,4524,115,115,115,115,0,115,115,115,228,229, 315,316,0,0,0,4524,115,115,115,115,0,115,115,228,229,342, 2,4,0,0,0,4524,115,115,115,115,0,115,228,229,342,115, 228,230,0,0,0,4524,115,115,115,228,342,228,342,0,115,228, 202,203,0,0,0,4524,115,115,115,0,228,342,228,342,228,342, 315,316,0,0,0,4524,115,115,228,342,0,228,342,115,0,228, 2,4,0,0,0,4524,115,228,342,115,0,0,115,228,229,342, 228,230,0,0,0,4524,228,342,115,228,229,342,228,229,342,228, 2,4,0,0,0,4637,4411,115,228,342,0,115,0,0,228,229, 228,230,0,0,0,0,4524,228,342,228,342,228,229,342,0,0, 0,202,203,0,0,0,4637,4411,115,0,115,0,0,228,229,229, 0,315,316,0,0,0,0,4524,115,0,228,229,229,229,229,229, 0,202,203,0,0,0,0,4524,228,342,0,0,0,0,341,229, 0,315,316,0,0,0,0,4637,4411,228,229,229,229,229,230,4409 0,0,0,0,0,0,117,117,117,117,0,117,0,0,117,117, 0,0,0,0,0,0,117,117,117,117,341,230,0,341,230,117, 342,0,0,341,229,229,230,117,117,117,117,0,0,117,0,117, 115,0,0,117,0,341,229,230,117,117,117,341,229,230,0,117, 228,229,229,230,0,117,0,341,230,117,117,117,0,0,341,230, 229,229,229,229,229,230,341,230,341,230,117,117,0,0,117,0, 0,0,0,0,341,229,230,341,230,341,230,117,341,229,230,341, 229,229,229,229,230,341,229,230,0,117,0,117,117,0,0,117, 0,0,0,0,0,117,341,229,229,230,341,230,117,0,0,117, 229,229,229,229,229,230,117,341,229,229,230,0,117,0,0,117, 229,229,229,229,229,229,230,117,341,229,229,229,230,341,229,230, 0,341,229,229,229,229,229,230,117,341,229,229,229,230,4409,4410, 229,230,0,341,229,229,456,229,230,117,4409,4410,4410,4410,4635,0, 229,229,229,230,341,229,569,229,229,230,4522,0,0,0,0,0, 229,229,229,229,230,0,0,0,0,0,4522,0,0,0,0,0, 4410,4410,4410,4411,0,0,0,0,0,4409,4635,0,0,0,0,0 117,4522,0,0,0,0,228,230,0,0,0,0,0,0,0,0, 117,4522,0,0,0,0,202,203,0,0,0,0,0,0,0,0, 117,4522,0,0,0,0,315,316,0,0,0,0,0,0,0,0, 117,4522,0,0,0,0,2,4,0,0,0,0,0,0,0,0, 117,4522,0,0,0,0,228,230,0,0,0,0,0,0,0,0, 117,4522,0,0,0,0,202,203,0,0,0,0,0,0,0,0, 230,4522,0,0,0,0,315,316,0,0,0,0,0,0,0,0, 4409,4635,0,0,0,0,2,4,0,0,0,0,0,0,0,0, 4522,0,0,0,0,0,228,230,0,0,0,0,0,0,0,0, 4522,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0, 4522,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0, 4635,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0, 0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0 0,0,2,4,0,0,0,0,4637,4410,4410,4410,4410,4410,4410,4635, 0,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,315,316,2,4,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,228,230,2,4,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,228,230,202,203,0,0,2,4,202,203, 0,0,0,0,0,0,0,0,315,316,202,203,228,230,315,316, 0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,4637,4410,4410,4410,4410,4410,4635,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,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,4,0,0,2,4, 0,4524,4636,4636,4636,4636,4522,0,202,203,228,230,2,4,228,230, 202,4524,0,0,0,0,4522,203,315,316,0,0,228,230,0,0, 315,4524,3410,0,0,3412,4522,316,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,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,4,228,230,0,0,0,0,0,0,0,0,0, 0,0,0,228,230,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0, 0,202,203,228,230,0,0,0,0,0,0,0,0,0,0,0, 0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0, 202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,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: maps/hoenn/hoenn-route-123.tmx ================================================ 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,4184,4184,4184,4184,4184,4184,4184,4184,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,4184,4184,4184,4184,4184,4184,4184,4184,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,4184,4184,4184,4184,4184,4184,4184,4184,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,4184,4184,4184,4184,4184,4184,4184,4184,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,4184,4184,4184,4184,4184,4184,4184,4184,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114 219,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,95,95,0,0,0,95,0,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,95,95,95,95,0,0,95,95,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,95,95,95,95,0,0,95,95,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,95,95,95,95,95,0,95,95,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,0,0,0,95,95,0,0,0,0,0,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,95,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,95,95,95,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,95,95,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,95,95,95,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,331,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,95,95,95,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,95,0,0,0,0,0,0,0,0,0,0,0,0,95,95,95,0,0,0,0,0,0,0,0,0,0,0,0,95,95,95,95,95,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,95,95,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 218,218,218,0,0,0,0,0,0,0,0,0,0,659,0,0,659,0,0,659,0,0,0,0,659,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,659,0,0,659,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,95,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,219,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,95,95,95,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,219,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,95,95,95,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,219,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95,95,95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,219,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,219,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,219,219,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,219,219,219,219,219,219,331,219,219,331,331,331,331,331,331,331,331,331,219,219,219,219,219,331,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,331,331,331,331,331,331,331,331,331,331,331,331,331,331,331,331,219,219,219,219,219,219,219,331,331,331,331,219,219,219,331,331,331,331,331,331,331,331,331,331,331,219,219,219,219,219,219,219,219,219,219,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,3410,0,0,3412,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,219,219,219,219,219,219,2014,331,331,0,0,0,0,0,0,0,0,0,219,219,219,219,219,2014,219,219,219,219,219,219,219,219,219,219,219,219,219,219,331,331,331,0,0,2,3,3,3,3,3,3,3,3,3,3,3,3,4,219,219,219,219,219,331,331,0,0,0,0,331,219,219,0,0,0,0,793,907,2837,2498,2498,2498,2838,219,219,219,219,219,219,219,219,219,219,4522,0,218,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,3410,0,0,3412,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,219,219,219,219,219,219,2014,1901,1902,1902,1902,1902,1902,1902,1902,1902,1903,0,331,331,331,331,331,2014,219,219,219,219,219,219,219,219,219,219,219,331,331,331,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,117,219,219,219,219,331,0,0,0,0,0,0,0,219,219,0,0,0,0,906,0,1811,1812,1812,1812,1813,219,219,219,219,219,219,219,219,219,219,218,218,219,219,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,3410,0,0,3412,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,219,219,219,219,219,219,2014,2014,2497,2499,0,2497,2499,0,2497,2499,2016,0,927,928,928,931,0,2014,219,219,219,219,219,219,219,331,331,331,331,0,0,0,0,0,0,907,0,228,229,229,229,229,229,229,342,0,0,0,0,0,117,219,219,219,331,0,0,0,0,0,0,0,0,331,219,0,0,0,0,906,0,0,0,0,0,0,331,219,219,219,219,219,219,219,219,219,219,219,219,219,219,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,3410,0,0,3412,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,219,219,219,219,219,219,2014,2014,3176,3177,0,3176,3177,0,3176,3177,2016,0,1040,1041,1041,1044,0,2014,219,219,219,219,219,219,219,4409,4410,4410,4410,4410,4410,4410,4411,0,0,0,0,0,0,793,0,0,0,0,228,342,0,0,0,0,117,219,219,219,0,0,0,0,0,0,0,0,0,0,331,0,0,0,0,906,0,0,0,0,0,0,0,331,331,331,331,331,331,331,219,219,219,219,219,219,219,219,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,3410,0,0,3412,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,219,219,219,219,219,331,2014,2014,2497,2499,0,2497,2499,0,2497,2499,2016,0,1153,1154,1155,1157,0,2014,219,219,219,219,219,331,331,4522,0,0,0,0,0,0,4524,0,0,0,0,0,0,906,0,0,0,0,0,228,229,229,229,218,218,219,219,219,1132,1020,1020,1020,1020,1020,1133,218,0,0,0,0,0,0,0,906,0,0,0,0,0,0,0,0,218,218,218,218,218,0,219,219,219,219,219,219,219,219,219,218,218,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,3410,0,0,3412,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,219,219,219,331,331,0,2014,2014,3176,3177,0,3176,3177,0,3176,3177,2016,0,1266,1267,1268,1270,0,2014,219,331,331,331,331,0,0,4522,0,0,0,0,0,0,4524,0,0,0,0,0,0,906,0,0,0,0,0,1132,1246,0,0,331,219,219,219,331,0,0,0,0,0,0,218,219,0,0,0,0,0,0,0,906,0,0,0,0,0,0,0,0,331,219,219,219,219,0,219,219,219,219,219,219,219,219,219,219,219,218,218,0,0,0,0,0,0,0,0,0,0,0,4524,3410,0,0,3412,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,218,218, 0,0,0,219,331,331,0,0,0,2014,2127,1902,1902,0,0,0,0,1902,1902,2129,205,0,0,0,0,0,2014,331,0,793,907,0,0,0,4522,0,0,0,0,0,0,4524,0,0,0,0,0,0,906,0,0,0,0,0,0,906,0,0,0,219,219,331,0,0,0,0,0,0,0,219,219,218,0,0,0,0,0,0,1584,218,218,0,0,0,0,0,0,0,219,219,219,219,0,219,219,219,219,219,219,219,219,219,219,219,219,219,218,0,0,0,0,0,0,0,0,0,0,4524,3410,0,0,3412,4522,0,0,0,0,0,0,0,0,0,0,0,0,218,218,219,219,219, 0,0,0,331,0,0,0,0,0,2014,218,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2014,0,0,906,0,0,0,0,4522,0,0,0,0,0,0,4524,0,0,0,0,0,0,1584,218,218,0,0,0,0,906,0,0,0,219,331,0,0,0,0,0,0,0,0,331,219,219,218,0,0,0,0,0,218,219,219,218,0,0,0,0,0,0,331,219,219,219,0,219,219,219,219,219,219,219,219,219,219,219,219,219,219,218,218,0,0,0,0,0,0,0,0,4524,3410,0,0,3412,4522,0,0,0,0,0,0,0,0,0,218,218,218,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,2014,219,331,0,0,0,0,0,0,0,0,0,2488,2490,0,0,0,2014,0,0,906,0,0,0,0,4636,4636,4636,4636,4636,4636,4636,4636,0,0,0,907,0,218,218,219,219,218,0,0,0,906,0,218,0,331,1132,1020,1020,1020,1020,1133,218,0,0,0,219,219,219,218,0,0,0,0,219,219,219,219,218,0,0,0,0,0,0,219,219,219,0,331,331,331,331,331,331,331,331,331,219,219,219,219,219,219,219,218,218,218,218,218,0,0,0,4524,3410,0,0,3412,4522,0,0,218,218,218,218,218,218,218,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,2014,331,0,0,0,0,0,0,0,0,0,0,2601,2603,0,0,0,2014,0,0,906,0,0,218,218,218,0,0,0,0,0,0,0,0,0,0,0,218,219,219,219,219,219,0,0,0,906,218,219,0,0,0,0,0,0,0,0,219,218,0,0,331,331,219,219,0,0,0,0,331,219,219,219,219,218,0,0,0,0,0,331,219,219,0,218,218,218,218,218,218,218,218,0,219,219,219,219,219,219,219,219,219,219,219,219,3298,3298,3298,205,0,0,0,0,3298,3298,3298,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219, 0,0,0,0,0,0,0,0,0,2127,1902,1902,1902,1902,1902,1902,1902,1902,1902,1902,0,2601,2603,0,1902,1902,2018,0,0,1019,1020,1020,219,219,219,218,1020,1020,1020,1020,1020,1020,1246,218,218,218,219,219,219,219,219,219,0,0,0,906,219,219,0,0,0,0,0,0,0,218,219,219,0,0,0,0,331,331,1132,1020,1020,1020,1133,219,219,219,219,331,0,0,0,0,0,0,331,331,0,331,331,331,331,331,219,219,219,0,219,219,219,219,219,219,219,219,219,219,219,331,0,907,0,0,0,2491,2493,0,0,907,0,331,219,219,219,331,331,331,331,331,331,331,331,331,331,219, 0,0,0,218,0,0,0,0,0,0,205,0,0,0,0,0,0,0,0,0,0,2601,2603,0,0,0,0,0,0,0,0,0,331,219,219,219,0,0,0,0,0,0,906,219,219,219,219,219,219,219,219,331,0,0,0,218,219,331,0,0,0,0,0,0,218,219,219,219,218,0,0,0,0,0,0,0,0,0,0,331,331,331,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,0,219,219,219,219,219,219,331,331,331,331,331,0,0,0,0,0,2491,2605,2606,0,0,0,0,0,219,219,219,0,218,218,218,218,218,218,218,218,218,219, 0,0,0,219,218,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2601,2603,0,0,0,0,0,0,0,0,0,0,331,331,331,0,0,0,0,0,0,906,331,219,219,219,219,219,219,331,0,0,0,0,331,331,1132,1020,1020,1020,1020,1020,1133,219,219,219,219,219,218,218,0,0,0,0,0,0,0,0,0,0,793,0,0,907,0,0,0,0,0,0,0,0,0,0,0,0,0,331,331,331,0,331,219,219,219,219,331,2837,2498,2498,2498,2838,0,0,2491,2492,2492,2605,2605,2719,0,0,0,0,0,331,331,331,0,219,219,219,219,219,219,219,219,331,219, 0,0,0,219,219,219,218,0,2488,2489,2489,2489,2489,2489,2489,2489,2489,2489,2489,2489,2489,2602,2602,2489,2489,2489,2489,2489,2489,2489,2489,2489,2489,2489,2489,2489,2489,2489,2489,2490,0,0,906,0,331,331,219,219,219,219,1020,1020,1020,1020,1020,1020,1246,0,0,0,0,0,0,0,331,331,219,219,219,219,331,0,0,0,0,0,2491,2492,2492,2493,0,906,2491,2492,2492,2492,2493,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,331,331,331,0,1811,1812,1812,1812,1813,2491,2492,2605,2605,2605,2605,2719,0,0,0,0,218,218,218,218,218,0,331,331,331,331,331,331,331,331,0,331, 0,0,0,219,219,219,219,218,2714,2715,2715,2715,2715,2715,2715,2715,2715,2715,2715,2715,2715,2715,2715,2715,2715,2715,2715,2715,2715,2715,2715,2715,2715,2715,2715,2715,2715,2715,2715,2716,0,0,906,0,0,0,331,331,331,331,0,0,0,0,0,0,906,0,2491,2492,2492,2492,2492,2492,2493,0,331,331,331,331,0,793,0,2491,2492,2492,2605,2605,2718,2719,0,906,2717,2718,2718,2605,2605,2492,2492,2492,2493,907,0,0,0,0,0,0,0,0,0,0,2491,2492,2492,2492,2492,2492,2492,2492,2492,2492,2492,2605,2605,2605,2718,2718,2719,0,0,907,218,218,219,219,219,219,219,0,218,218,218,218,218,218,218,218,0,218, 0,0,0,219,219,219,219,219,218,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,218,218,218,0,0,0,0,0,906,0,0,2491,2492,2492,2492,2492,2492,2492,2493,0,0,0,906,0,2717,2718,2718,2718,2718,2605,2605,2492,2492,2492,2492,2493,0,906,0,2717,2718,2718,2718,2719,0,0,0,906,0,0,0,2717,2718,2718,2718,2718,2719,218,218,218,218,0,0,0,0,0,0,0,2717,2718,2718,2718,2718,2718,2718,2718,2718,2718,2718,2718,2718,2719,0,0,0,0,218,218,219,219,219,219,219,219,219,0,219,219,219,219,219,219,219,219,218,219, 0,0,0,219,219,219,219,219,219,219,218,1902,0,1902,1902,1902,1902,1902,1902,1902,1902,1902,1902,1902,218,218,1902,1902,1902,1902,1902,0,218,219,219,219,219,218,218,218,0,0,906,218,0,2717,2718,2718,2718,2718,2718,2718,2719,0,0,0,1584,218,218,0,0,0,0,2717,2718,2718,2718,2718,2718,2719,0,906,0,0,0,0,0,0,0,0,0,1584,218,218,0,0,0,218,218,218,218,219,219,219,219,218,218,218,218,0,0,0,0,0,0,0,0,0,907,0,0,0,0,0,218,218,218,218,218,218,219,219,219,219,219,219,219,219,219,0,331,331,331,331,331,331,331,331,331,219, 0,0,0,219,219,219,219,219,219,219,219,218,218,218,218,218,218,218,218,218,218,218,218,218,218,219,218,0,218,218,218,218,219,219,219,219,219,219,219,219,218,218,1584,219,218,218,0,0,0,0,907,0,218,218,218,218,218,219,219,218,218,218,218,0,0,0,0,907,0,0,0,1584,218,218,218,0,0,0,218,218,218,218,219,219,218,218,218,219,219,219,219,219,219,219,219,219,219,219,219,218,218,907,0,0,0,0,0,0,0,218,218,218,218,218,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,218,218,218,218,218,218,218,218,218,218,219, 0,0,0,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,218,219,219,219,219,219,219,219,219,219,219,219,219,219,219,218,219,219,219,218,218,218,218,218,218,219,219,219,219,219,219,219,219,219,219,219,218,218,218,218,218,218,218,218,218,219,219,219,218,218,218,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,218,218,218,218,218,218,218,218,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219 ================================================ FILE: maps/hoenn/hoenn-route-124.tmx ================================================ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,0,0,0,0,0,0,0,0,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0, 0,0,0,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4862,0,0,4862,0,0,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,4862,0,0,0,4862,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,116,116,4975,0,0,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,4975,116,116,116,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,116,116,4975,0,0,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,4975,116,116,116,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,0,116,4975,0,0,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,4975,116,116,116,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,0,4975,0,0,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,4975,4975,116,116,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,0,0,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,116,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,116,116,0,0,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,0,0,0,0,116,116,116,116,116,116,0,0,0,0,116,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,116,0,0,0,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,0,116, 0,0,0,0,0,0,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,116,116,116,116,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,0, 0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4978,4978,4978,4978,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4978,4978,4978,4978,4978,4975,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4978,4978,4978,4978,4978,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4978,4978,4978,4978,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4978,4978,4978,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,0,0,0,0,0,0,0,4975,0,0,0,4975,4975,5314,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,0,0,0,0,4975,4975,4976,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4978,4978,0,4978,4978,4975,5314,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4978,4978,4978,4978,4978,4975,4975,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4978,4978,4978,4978,4975,4975,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4978,4978,4978,4975,4975,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,116,116,116,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,4975,4975,4975,0,0,0,0,0,0,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,0,0,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,0,0,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,0,0,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,0,0,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116, 0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116, 0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116, 0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116, 0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116, 0,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,116 0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,2,3,4,0,0,228,230,0,0,0,0,0,0,0,0,0,0,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,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,2,3,3,3,4,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,2,3,3,0,117,0,0,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,3,3,3,4,0,2,4,0,0,0,0,228,230,0,0,228,230,2,4,2,3,3,3,4,0,0,2,4,0,115,0,2,4,3,4,0,0,0,0,0,0,0,0,0,0,0, 0,0,115,2,3,4,117,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,0,0,3,4,228,230,0,0,0,0,0,0,0,0,0,0,228,230,115,0,0,0,117,2,4,228,230,0,228,342,228,230,0,117,0,0,0,0,0,0,0,0,0,0,0, 0,0,115,115,0,117,117,0,0,0,0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0,2,4,0,0,0,2,3,2,3,3,4,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,229,342,0,117,228,230,0,0,0,0,228,229,229,229,230,2,3,4,0,0,0,0,0,0,0,0, 0,0,115,115,0,117,3,4,0,0,0,0,0,0,0,0,0,2,3,4,2,4,0,0,2,4,228,230,2,4,0,115,0,115,0,0,3,4,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,228,229,230,0,0,0,0,0,0,0,2,4,0,0,115,0,117,0,0,0,0,0,0,0,0, 0,0,115,115,0,3,4,117,0,0,0,0,0,0,0,0,0,115,341,230,228,230,0,0,228,230,0,0,228,230,0,115,2,3,2,3,4,117,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0,0,228,230,0,0,228,229,230,0,0,0,0,0,0,0,0, 0,0,115,115,0,0,117,117,0,0,0,0,0,0,0,0,0,228,230,0,0,0,0,0,0,4861,2,3,3,4,4863,115,115,2,3,0,117,3,4,117,0,0,0,0,0,0,0,0,0,0,4861,2,3,3,3,4,4863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0, 0,0,115,228,342,0,117,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4974,115,0,0,117,4976,115,115,115,0,0,117,0,117,3,4,0,0,0,0,0,0,0,0,0,4974,115,2,3,4,117,5314,4862,4862,4863,0,0,0,0,0,0,0,0,0,0,0,228,230,0,0,0,0,0,0,0, 0,0,228,342,115,0,117,3,4,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,4974,115,0,0,117,4976,115,115,115,0,0,117,0,117,0,117,0,0,0,0,0,0,0,0,0,4974,115,115,0,117,117,0,0,0,5314,4863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,115,228,342,117,0,117,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,4974,228,342,0,117,4976,115,115,228,229,229,230,341,230,0,117,0,0,0,0,0,0,0,0,0,4974,115,228,342,117,117,0,0,0,0,4976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,228,342,228,230,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4974,0,228,229,230,4976,115,228,342,0,0,341,230,2,4,117,2,4,0,0,0,0,0,0,0,4974,228,342,228,230,117,0,0,0,0,4976,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0, 0,0,0,0,228,342,0,0,0,117,2,3,4,0,0,0,0,0,0,0,0,0,0,0,0,4974,0,0,0,0,4976,115,0,228,229,229,230,0,228,230,117,228,230,2,3,4,0,0,0,0,5087,5426,228,342,0,117,0,0,0,0,4976,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,0,0,0, 0,0,0,0,0,228,342,0,0,117,115,0,3,4,0,0,0,0,0,0,0,0,0,0,0,5087,5426,0,0,0,4976,228,229,342,0,0,0,0,0,0,117,0,0,115,0,117,0,2,4,0,0,5087,5426,228,229,230,0,0,0,0,4976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2, 0,0,0,0,0,0,115,0,341,230,115,0,0,117,0,2,3,4,0,0,0,0,0,0,0,0,5087,5088,5088,5088,5089,0,0,228,342,0,0,0,341,229,230,0,0,228,229,230,0,228,230,0,0,0,5087,5088,5088,5426,0,0,0,5427,5089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228, 0,0,0,0,2,4,228,229,230,0,228,229,229,230,0,115,0,117,0,0,0,0,0,0,0,0,2,3,4,0,0,0,0,0,228,229,229,229,230,0,0,0,0,0,2,4,0,0,2,3,3,3,4,0,0,5087,5088,5088,5088,5089,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,230,0,0,0,0,2,4,0,0,0,228,229,230,2,4,0,0,0,0,0,0,115,0,117,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,228,230,0,2,3,2,3,4,3,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,228,230,0,0,0,0,0,0,228,230,0,0,0,0,0,0,228,229,230,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0,0,2,3,3,2,3,0,3,3,4,3,3,4,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,2, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,4,115,2,4,115,0,2,4,0,117,2,4,117,0,0,0,0,2,4,0,0,0,0,228,230,0,2,3,4,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,2,4,0,0,0,0,115,0,117,115,228,230,228,342,228,230,341,230,228,230,117,2,4,0,0,228,230,0,0,0,0,0,0,2,3,0,117,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,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,230,0,0,0,0,228,229,230,228,229,342,0,228,229,229,230,0,0,0,117,228,230,0,0,0,0,0,0,0,0,0,0,115,0,0,3,4,0,0,0,0,0,2, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,229,342,0,0,0,0,341,229,230,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,3,3,4,0,0,0,115, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,229,229,229,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,117,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,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,2,3,4,0,3,4,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,2,3,0,3,3,4,3,4,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,3,3,0,115,0,0,0,0,117,0,3,3,3, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,115,0,0,2,3,3,0,0,0,0,3,3,4,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,0,0,115,0,0,115,0,0,0,0,0,0,0,0,3,4,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,229,342,115,0,0,0,0,0,0,0,0,0,117,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,228,229,342,0,0,0,0,0,0,0,3,4, 0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,229,342,115,0,0,0,0,0,0,0,0,117, 0,0,0,0,2,4,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,228,229,342,0,0,0,0,0,0,117, 0,0,0,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,229,342,115,0,0,0,0,0,0,117, 0,0,0,0,0,2,3,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,115,115,0,0,0,0,0,0,117, 0,0,0,0,0,115,2,4,3,3,3,4,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,115,115,0,0,0,0,0,0,117, 0,0,0,0,0,115,228,230,0,0,0,117,0,0,0,0,2,4,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,228,229,342,0,0,0,0,117, 0,0,0,0,0,228,229,342,0,0,0,3,3,3,3,3,3,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,229,342,228,229,342,0,341,230, 0,0,0,0,0,0,0,228,342,0,2,4,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4861,4862,4862,4862,4862,4862,4862,4863,0,0,0,0,0,0,0,0,0,228,229,342,115,0,117,341, 0,0,0,0,0,0,0,0,228,342,228,230,0,0,0,0,341,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4974,4867,4868,4868,4868,4868,4869,5314,4863,0,0,0,0,0,0,0,0,2,4,115,115,0,117,117, 0,0,0,0,0,0,2,4,0,228,229,229,229,229,229,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4861,5313,4980,0,0,0,0,5317,4869,4976,0,0,0,0,0,0,0,0,228,230,115,115,0,117,117, 0,0,0,0,0,0,228,230,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4974,0,4980,0,0,0,0,0,4982,5314,4863,0,0,0,0,0,0,2,4,0,115,228,229,230,117, 0,0,0,0,0,0,0,0,0,2,4,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4974,0,4980,0,0,0,0,0,4982,0,4976,0,0,0,0,0,0,228,230,0,228,229,229,229,230, 0,0,0,0,0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4974,0,5093,5429,0,0,0,0,4982,0,4976,0,0,0,0,0,0,0,0,0,0,2,4,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5087,5426,0,4980,0,0,0,5430,5095,5427,5089,0,0,0,0,0,0,0,0,0,0,228,230,2,4, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5087,5426,5093,5094,5094,5094,5095,5427,5089,0,0,4861,4862,4862,4862,4862,4862,4862,4863,0,0,0,228,230, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5087,5426,0,0,5427,5088,5089,0,0,0,4974,4867,0,0,0,0,0,4862,4863,0,0,0,0, 0,0,0,0,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,3,3,3,3,3,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5087,5088,5088,5089,0,0,0,0,4861,5313,4980,0,0,0,0,4868,4869,0,0,0,0,0, 0,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,3,4,115,0,0,2,3,3,4,3,3,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4974,0,4980,0,0,0,0,0,4982,4862,4863,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,117,115,0,0,115,0,0,3,3,3,4,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4974,0,4980,0,0,0,0,0,4982,0,4976,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,2,4,2,3,4,0,0,0,0,0,0,0,0,228,229,230,228,229,342,228,229,229,342,0,0,117,3,4,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4974,0,5093,5429,0,0,0,0,4982,0,4976,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,228,230,115,0,3,4,2,4,0,2,3,3,3,4,0,0,0,0,228,229,229,342,228,229,229,230,0,117,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5087,5426,0,4980,0,0,0,5430,5095,5427,5089,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,117,228,230,0,115,2,3,4,117,0,0,0,0,0,0,0,228,229,342,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5087,5426,5093,5094,5094,5094,5095,5427,5089,0,0,0,0, 0,0,0,0,0,0,0,2,4,0,0,0,0,0,228,342,0,117,0,0,0,115,228,342,117,117,0,0,4861,4862,4862,4862,4863,0,0,228,229,342,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5087,5426,0,0,5427,5088,5089,0,0,0,0,0, 0,0,0,0,0,0,0,228,230,0,0,0,2,4,0,228,229,230,0,0,0,228,342,228,230,117,0,0,4974,0,0,0,4976,0,0,0,0,115,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5087,5088,5088,5089,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,0,0,0,0,2,4,0,228,229,229,230,0,0,5087,5426,0,0,4976,0,2,4,0,228,229,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,230,0,0,0,0,0,0,0,0,5087,5088,5088,5089,0,228,230,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,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,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,2,4,0,0,0,115,0,117,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,0,228,230,0,2,4,228,229,230,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4861, 0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,228,230,0,0,0,0,2,3,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4974, 0,0,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,4,228,230,0,0,0,0,0,0,0,0,0,4861,4862,4863,115,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4974, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,2,3,116,117,0,0,0,0,0,0,0,0,0,4861,4862,5313,0,4976,115,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4974, 0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,115,116,116,117,0,0,0,0,0,0,0,0,0,4974,0,0,0,4976,115,2,3,4,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4974, 0,0,0,0,228,230,0,0,0,0,0,0,0,2,3,3,3,3,4,0,0,0,228,229,229,230,2,4,0,0,0,0,0,0,0,4974,0,0,0,4976,115,115,0,117,117,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4974, 0,0,0,0,0,0,0,2,4,0,0,0,0,115,0,0,0,0,3,3,3,3,4,0,0,0,228,230,0,0,0,0,0,0,0,5087,5426,0,0,4976,115,115,0,117,3,4,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4974, 0,0,0,0,0,0,0,228,230,0,0,0,2,3,2,3,3,3,3,3,4,0,3,3,3,4,0,0,0,0,0,0,0,0,0,0,5087,5088,5088,5089,115,228,342,117,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4974, 0,0,0,0,0,0,0,0,2,3,4,0,115,0,115,0,0,2,3,4,3,3,4,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,342,115,117,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5087, 0,0,0,0,0,0,0,0,115,116,117,2,3,0,228,229,342,115,0,3,3,4,3,3,4,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,228,230,341,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,229,230,115,0,0,0,0,115,228,229,229,229,230,0,0,117,3,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,228,229,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,3,3,3,3,3,0,0,0,0,228,229,229,229,229,342,0,0,117,0,0,117,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,2,3,3,3,3,3,0,0,0,0,0,0,2,3,3,4,0,0,0,0,228,229,229,230,0,0,117,0,0,0,0,0,0,0,0,0,0,0,228,230,2,3,4,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,115,0,0,2,3,3,3,3,3,3,4,0,115,0,0,3,4,0,0,0,341,229,342,0,0,0,117,0,0,0,0,2,3,3,3,4,0,0,0,0,115,0,117,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 2,3,2,3,3,0,0,0,0,0,0,3,4,228,229,229,229,230,0,0,0,117,0,228,229,229,229,230,2,4,0,0,115,0,0,0,117,0,0,0,0,228,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0,0,0,2,3,3,3,3,3,4, 115,2,3,0,2,3,3,3,3,3,3,4,3,3,4,0,0,0,0,0,0,117,2,4,0,0,0,0,228,230,0,0,228,342,0,0,117,0,0,0,0,0,0,0,0,0,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,3,3,3,0,0,0,0,0,3, 115,115,2,3,3,0,0,0,0,0,0,3,3,4,3,3,3,4,0,0,0,117,228,230,0,0,0,0,0,0,2,4,0,228,229,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,2,4,0,0,2,4,0,0,0, 115,115,115,0,0,0,341,229,229,229,229,229,229,230,0,0,0,3,4,0,0,117,0,0,0,0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,228,230,0,0,228,230,0,0,0, 115,115,115,341,229,229,230,0,0,341,229,229,229,229,229,229,342,0,117,0,0,117,0,0,0,0,0,0,0,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,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,2,3,3,3,3,3,3,3, 115,115,115,117,341,229,229,229,229,230,0,0,0,0,0,0,115,0,117,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,4,0,0,0,0,0,0,0,115,0,2,3,0,0,0,2,4,0,0, 115,115,115,117,117,341,229,229,229,229,229,229,229,229,229,342,115,0,117,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,4,0,0,0,0,2,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,0,0,0,0,0,2,3,0,115,0,0,0,0,228,230,0,0 0,0,0,0,0,0,0,0,0,0,0,202,203,0,0,0,0,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,203,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,202,203,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,315,316,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,203,0,202,203,0,0,0,0,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,315,316,0,0,0,0,0,0,0,202,203,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,202,203, 0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,203,315,316,0,0,0,0,0,202,203,0,0,0,0,0,0,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,203,315,316,0,0,0,0,0,0,0,0,0,0,0,315,316, 0,0,315,316,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,315,316,0,0,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,203,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 202,203,0,0,0,0,0,315,316,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 315,316,0,0,0,0,0,0,202,203,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 315,316,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,315,316,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,927,928,928,931,0,0,0,0,0,0,0, 0,0,0,0,0,0,315,316,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1040,1041,1041,1044,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1153,1154,1155,1157,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1266,1267,1268,1270,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,202,203,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,315,316,202,203,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,315,316,202,203,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,202,203,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,315,316,0,0,0,315,316,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,202,203,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,202,203,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,315,316,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,315,316,202,203,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,315,316,0,0,315,316,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ================================================ FILE: maps/hoenn/hoenn-route-125.tmx ================================================ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4862,0,0,0,0,0,0,0,0,0,0,0,0,4862,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,116,116,116,116,116,116,116,116,116,116,116,116,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,116,116,116,116,116,116,116,116,116,116,116,116,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4862,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,4862,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,4975,0,0,0,0,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,4975,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,4975,0,0,0,0,0,0,0,0,0,0,0,0,4975,4978,4978,4978,4978,4975,4975,0,0,0,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,4975,0,0,0,0,0,0,0,0,0,0,0,0,4975,4978,4978,0,0,4978,4975,4975,0,0,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4978,4978,4978,4978,4975,4975,0,0,0,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,4975,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,4975,0,0,0,0,0,0,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,4975,0,0,0,0,0,0,4975,4978,4978,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,4975,4975,0,0,0,0,4975,4975,4975,4978,4978,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,4975,4975,0,0,0,0,4975,4978,4978,4978,4978,4978,4978,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,4975,0,0,0,0,0,4975,4978,4978,4978,4978,4978,4978,4975,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,4975,4975,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 116,116,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,116,116,116,116,116,116,116,116,116,116,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 116,116,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,116,116,116,116,116,116,116,116,116,116,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,4975,4975,4975,4975,4975,4978,4975,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,4975,4978,4978,4978,4978,4975,4975,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,4975,4978,116,116,4978,4975,4975,0,0,0,0,0,0,0,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,4975,4978,4978,4978,4978,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 116,0,0,0,0,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 116,0,0,0,0,0,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4978,4978,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4978,4978,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4978,4978,4978,4978,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4978,116,116,4978,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4978,4978,116,4978,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4978,4978,4978,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,116,116,116,116,116,116,116,116,116,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4861,2,3,3,3,3,3,3,3,3,3,3,3,3,4,4863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4974,115,0,2,3,3,3,3,3,3,3,3,4,0,117,4976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4974,115,0,115,0,0,2,4,0,0,0,0,3,4,117,4976,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,115,0,117,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4861,2,3,3,3,0,115,2,4,228,230,0,0,0,2,4,117,3,3,3,4,4863,0,0,0,0,0,0,0,0,228,230,0,0,0,0,228,229,230,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4974,115,2,3,3,3,3,228,230,0,0,0,0,0,228,230,3,4,0,0,117,4976,0,0,2,3,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4861,5313,115,115,2,3,3,3,3,3,3,3,3,3,3,3,3,4,3,3,4,117,4976,0,0,115,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4974,2,3,115,115,0,2,3,3,3,3,3,4,0,0,0,0,117,0,0,117,117,4976,0,0,228,229,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4974,115,2,3,115,0,115,0,0,0,0,0,3,3,3,4,0,3,4,0,117,117,4976,0,2,4,0,0,0,0,0,0,0,4861,4862,4862,4862,4862,4862,4862,4863,0,0,0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4974,115,115,0,115,0,115,2,4,0,0,0,0,0,0,117,0,0,117,0,117,117,4976,0,228,230,0,0,0,0,0,0,0,4974,4867,4868,4868,4868,4868,4869,5314,4863,0,2,3,3,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4861,5313,115,115,0,115,0,115,228,230,0,0,0,0,0,0,117,2,4,117,341,230,117,4976,0,0,0,0,0,0,0,0,0,0,4974,4977,2,3,3,4,5317,4869,5314,4863,115,2,3,4,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4974,2,3,115,2,3,0,115,0,0,0,0,0,0,0,0,117,228,230,117,117,341,230,4976,0,0,0,0,0,0,0,0,0,0,4974,4977,228,229,342,3,4,4979,0,4976,115,228,342,117,117,0,0,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,3,4,0,4861,5313,115,2,3,115,2,3,3,0,0,0,0,0,0,0,0,117,0,0,117,117,117,0,4976,0,0,0,0,0,0,0,0,0,0,4974,5090,5429,0,228,229,230,4979,0,4976,228,342,228,230,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,115,0,117,0,4974,2,3,115,0,115,115,0,2,4,0,0,0,0,0,0,341,230,341,229,230,117,117,5427,5089,0,0,0,0,0,0,0,0,0,0,5087,5426,5090,5091,5091,5091,5091,5092,5427,5089,0,228,229,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 4,0,0,0,0,0,0,0,0,0,0,228,229,230,0,4974,115,2,3,0,115,115,0,228,230,0,0,0,0,2,4,117,0,117,341,229,230,117,4976,0,0,0,0,4861,4862,4862,4862,4862,4863,0,0,5087,5088,5426,0,0,0,5427,5089,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 230,2,4,0,2,3,3,4,0,0,0,0,0,0,0,4974,115,115,0,2,3,115,0,0,0,0,0,0,0,228,230,117,0,117,117,2,4,117,4976,0,0,0,0,4974,4867,4868,4868,4869,4976,0,0,0,0,5087,5088,5088,5088,5089,0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,228,230,0,228,229,229,230,0,0,0,0,0,0,0,4974,115,115,0,115,0,228,229,342,0,0,0,0,0,0,0,117,0,117,117,228,230,117,4976,0,0,4861,4862,5313,4977,2,4,4979,5314,4862,4863,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,2,4,0,0,0,0,0,0,0,0,0,0,4861,5313,115,228,342,228,229,229,342,228,229,229,229,342,2,4,0,117,341,230,117,0,341,230,4976,0,0,4974,4867,4868,5316,228,230,5317,4868,4869,4976,0,0,0,0,0,0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 4,0,228,230,0,0,0,0,0,0,0,0,0,0,4974,0,115,0,228,229,342,0,228,229,229,229,342,115,228,230,0,117,117,0,117,0,117,0,4976,0,0,4974,4977,2,4,0,0,2,4,4979,4976,0,0,0,0,0,0,2,3,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 230,0,0,0,0,0,0,0,0,0,0,0,0,4861,5313,0,228,229,229,342,228,229,456,229,229,342,115,228,342,0,341,230,117,0,117,341,230,5427,5089,0,0,4974,4977,228,230,0,0,228,230,4979,4976,0,0,0,0,0,0,115,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 2,3,4,0,0,0,0,0,0,0,0,4861,4862,5313,0,0,0,0,0,228,229,229,569,229,342,115,228,342,228,229,230,341,230,341,230,117,0,4976,0,0,0,4974,5090,5091,5091,5091,5091,5091,5091,5092,4976,0,0,0,0,0,0,115,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 3,0,117,0,0,0,0,4861,4862,4862,4862,5313,0,0,0,0,0,0,0,0,0,0,0,0,115,115,0,228,229,229,229,230,341,230,0,117,0,4976,0,0,0,5087,5088,5088,5088,5088,5088,5088,5088,5088,5089,0,0,0,0,0,0,115,2,3,4,117,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,117,0,4861,4862,4862,5313,0,4867,4868,4869,0,0,0,0,0,0,0,0,0,0,0,0,115,228,229,229,229,229,229,229,230,0,0,117,0,4976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,115,0,117,117,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 229,229,230,0,4974,4867,4868,4868,4868,5316,0,4982,5427,5088,5088,5426,0,0,0,0,0,0,0,0,228,229,229,229,229,229,229,229,229,229,229,230,0,4976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,115,0,117,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 2,4,0,0,4974,4980,2,3,4,0,5430,5095,4976,0,0,5087,5088,5426,0,0,0,0,0,0,0,5427,5088,5088,5088,5088,5088,5088,5088,5088,5088,5088,5088,5089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,228,342,117,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 228,230,0,0,4974,4980,115,0,3,4,4982,0,4976,0,0,0,0,5087,5426,0,0,0,5427,5088,5088,5089,0,0,0,0,0,0,0,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,342,115,117,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 3,4,0,0,4974,4980,228,229,229,230,4982,5427,5089,0,0,0,0,0,5087,5088,5088,5088,5089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4861,4862,4862,4862,4862,4863,0,0,0,0,0,2,4,0,115,228,230,341,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,117,0,0,4974,5090,5091,5091,5091,5091,5095,4976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4974,4867,4868,4868,4869,4976,0,0,0,0,0,228,230,0,228,229,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,117,0,0,5087,5426,0,0,0,0,5427,5089,0,0,0,0,0,0,0,0,4861,4862,4862,4862,4862,4862,4862,4863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4974,4980,2,4,4982,4976,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,117,0,0,0,5087,5088,5088,5088,5088,5089,0,0,0,0,0,0,0,0,0,4974,4867,4868,4868,4868,4868,4869,5314,4863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4974,4980,228,230,4982,4976,0,0,0,0,0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4974,4980,2,3,3,4,4982,0,4976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4974,5093,5094,5094,5095,4976,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4974,4980,115,0,0,117,4982,0,4976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5087,5088,5088,5088,5088,5089,0,0,0,0,0,0,0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4974,4980,228,342,0,117,4982,0,4976,0,0,0,0,0,0,0,0,0,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,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,117,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4974,5093,5429,228,229,230,4982,0,4976,0,0,0,0,0,0,0,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,4,115,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 341,230,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5087,5426,5093,5094,5094,5094,5095,5427,5089,0,0,0,0,0,0,0,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,230,228,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 117,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5087,5088,5426,0,0,5427,5089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 117,0,0,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5087,5088,5088,5089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 117,0,0,0,0,2,3,3,3,3,3,4,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 230,0,0,0,2,3,0,2,3,3,4,3,3,3,4,0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,115,0,2,115,0,0,117,4,0,0,117,0,0,2,3,4,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,115,0,115,228,229,229,230,117,0,0,117,0,0,115,0,117,0,228,230,0,0,0,0,0,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,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,315,316,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,315,316,202,203,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,315,316,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,202,203,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,202,203,0,0,315,316,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,202,203,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,202,203,315,316,202,203,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,315,316,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 315,316,202,203,0,0,0,0,0,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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: maps/hoenn/hoenn-route-126.tmx ================================================ 0,116,116,116,116,0,0,0,0,0,0,0,0,4975,4975,0,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,116, 0,116,116,0,0,0,0,0,0,0,0,0,0,4975,4975,0,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,116, 0,116,116,116,116,116,116,0,0,0,0,0,0,0,4975,0,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,116, 0,0,116,116,116,116,116,116,0,0,0,0,0,0,0,0,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,116, 0,0,116,116,116,116,116,116,0,0,0,0,0,0,0,0,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,116, 0,0,116,116,116,116,116,116,0,0,0,0,0,0,0,0,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,116, 0,0,0,0,116,116,116,116,0,0,0,0,0,0,0,0,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,116, 0,0,0,0,116,116,116,116,116,116,116,116,116,0,0,0,116,116,116,0,0,0,0,0,0,0,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,116, 0,0,0,0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,122,0,0,0,0,122,122,122,122,122,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,0,0,0,0,0,122,122,122,122,122,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,122,122,122,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,116,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,122,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,122,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,122,122,122,122,122,122,122,122,122,122,122,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,0,0,0,0,0,0,0,0,0,0,0,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,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,0,0,0,0,0,0,0,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,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,0,0,0,0,0,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,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,122,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,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,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,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,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,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,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,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,122,122,122,122,122,122,122,122,122,122,122,122,128,1,1,1,1,1,1,128,122,122,122,122,122,122,122,122,122,122,122,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,122,122,122,122,122,122,122,122,122,122,122,122,128,1,1,1,1,1,1,128,122,122,122,122,122,122,122,122,122,122,122,122,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,122,122,122,122,122,122,122,122,122,122,122,122,128,1,1,1,1,1,1,128,122,122,122,122,122,122,122,122,122,122,122,122,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,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,122,122,122,122,122,122,122,122,122,122,122,128,1,1,1,1,1,1,128,122,122,122,122,122,122,122,122,122,122,122,122,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,122,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,122,122,122,122,122,122,122,122,122,122,122,128,1,1,1,1,1,1,128,122,122,122,122,122,122,122,122,122,122,122,122,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,122,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,122,122,122,122,122,122,122,122,122,122,122,128,1,1,1,1,1,1,128,122,122,122,122,122,122,122,122,122,122,122,122,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,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,122,122,122,122,122,122,122,122,122,122,122,128,1,1,1,1,1,1,128,122,122,122,122,122,122,122,122,122,122,122,122,122,0,0,0,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,122,122,122,122,122,122,122,122,122,122,122,122,122,122,1,1,1,1,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,122,122,122,122,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,122,122,122,122,122,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,122,122,122,122,122,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,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,122,122,122,122,122,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,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,122,122,122,122,122,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,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,122,122,122,122,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,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,122,122,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,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,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,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,0,0,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,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,0,0,0,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,122,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,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,122,122,122,122,122,122,122,122,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,122,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,122,122,122,122,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,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,122,122,122,122,122,122,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,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,122,122,122,122,122,122,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,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,122,122,122,122,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,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,122,122,122,122,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,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,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,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122,122,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,0,0,0,0,0,122,0,0,0,0,122,122,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 115,115,115,3,3,3,4,0,2,4,0,0,4974,0,0,115,115,0,117,0,0,117,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,115,0,117,2,4,0,0,115,0,117,2,3,3,3,4,2,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,2,3,0,0,0,2,3,3,3,4, 115,115,228,229,229,342,117,4,228,230,0,0,4974,0,0,115,115,0,117,0,0,117,0,0,0,0,0,0,0,0,0,2,4,228,230,0,0,115,0,117,228,230,0,0,228,229,230,115,0,0,0,117,228,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,115,2,4,0,2,3,0,0,0,3, 115,228,342,0,0,115,117,117,4,0,0,0,5087,5426,0,115,115,0,117,0,341,230,0,0,0,0,0,0,0,0,0,228,230,0,0,0,0,228,229,230,0,0,0,0,0,0,0,228,342,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,115,228,230,0,115,0,0,0,0,0, 228,342,228,229,342,115,117,117,117,0,0,0,0,5087,5088,115,115,0,117,0,117,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,342,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,115,0,115,0,0,2,3,0,0,0,0,0, 0,115,0,0,115,115,117,117,117,0,0,0,0,0,0,115,115,0,117,0,117,228,230,0,0,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,229,229,230,0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,115,0,115,0,0,115,0,0,0,0,0,0, 0,115,0,0,115,115,117,117,117,0,0,0,0,0,0,115,115,0,117,341,230,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,115,0,0,115,0,0,0,0,0,0, 0,228,229,342,115,115,3,3,3,3,3,3,4,0,0,115,115,0,117,117,0,0,228,230,0,2,3,3,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,228,342,0,115,0,0,0,0,0,0, 0,0,0,115,115,228,229,229,342,0,0,0,117,3,3,3,3,341,230,117,0,0,0,2,4,115,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,115,0,115,0,0,0,0,0,0, 0,0,0,115,228,229,229,342,115,0,0,341,230,0,0,341,229,230,0,117,2,3,4,228,230,228,342,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,342,0,115,0,115,0,0,0,0,0,0, 0,0,0,228,229,342,0,115,228,229,229,230,0,0,341,230,0,341,229,230,115,0,117,0,0,0,228,229,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,115,0,115,0,0,0,0,0,341, 0,0,0,0,0,228,342,228,229,229,229,229,229,229,230,0,0,117,0,0,228,229,230,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,228,342,115,0,0,0,0,0,117, 0,0,0,0,0,0,228,229,342,0,0,0,0,0,0,0,341,230,0,0,0,0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,4,0,115,2,4,115,228,229,342,0,0,0,117, 0,0,0,0,0,0,0,0,228,229,229,229,229,229,229,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,115,228,230,115,0,0,115,0,0,341,230, 0,0,0,0,0,0,0,0,0,0,2,3,3,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,115,0,0,228,229,229,230,0, 0,0,0,0,0,0,0,0,0,0,115,0,0,3,4,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,229,342,115,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,2,3,4,228,229,229,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,228,229,342,0,0,0,0,0, 0,0,0,0,0,0,0,115,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,229,342,115,0,0,0,0,0, 0,0,0,0,0,0,0,228,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,228,229,342,0,0,0, 0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,229,342,115,0,0,0, 0,0,0,0,0,2,4,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,115,228,229,342,0, 0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0,8,9,10,8,10,0,8,9,9,9,9,10,0,0,0,0,0,0,234,236,0,0,0,0,0,0,0,0,0,0,0,0,0,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,230,228,229,342,228,229, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,9,0,123,234,236,8,9,0,8,9,10,9,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,229,342, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,0,347,236,0,0,121,0,0,121,0,123,0,123,0,8,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,4,0,0,115, 0,0,0,0,2,4,0,0,0,0,0,0,0,8,10,234,235,236,0,0,0,234,348,0,234,235,236,0,123,0,234,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,10,8,9,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,117,0,0,115, 0,0,0,0,228,230,0,0,0,0,0,0,0,234,236,0,0,0,0,0,0,0,234,235,348,0,0,0,123,8,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,234,236,121,0,9,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,229,230,2,4,115, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,234,235,235,235,236,234,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,234,348,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,228,230,115, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,234,235,236,8,10,0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,0,0,115, 0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,234,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,234,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228, 0,0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,8,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,234,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,4,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,0,0, 0,0,0,8,10,0,0,0,0,0,0,0,0,0,0,0,0,234,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,9,9,9,9,9,9,9,9,9,9,9,10,0,0,0,0,8,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,234,236,0,0,0,0,0,0,0,0,0,0,8,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,9,9,9,0,0,0,0,0,0,0,0,0,0,0,9,9,9,10,0,234,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,234,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,9,0,0,8,9,9,9,9,9,9,9,9,9,9,9,9,10,0,9,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,121,0,8,9,9,0,0,0,0,0,0,0,0,0,0,0,0,123,0,0,9,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,8,9,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,9,121,0,121,0,0,8,9,9,9,9,9,9,9,9,9,10,0,9,9,10,0,123,9,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,8,9,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,121,8,9,8,9,8,9,9,0,0,0,0,0,0,0,0,0,9,9,9,10,123,0,123,0,123,10,0,0,0,8,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,121,0,347,236,0,8,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,9,9,9,121,8,9,0,121,0,0,347,235,235,235,235,235,235,235,235,348,0,0,123,123,0,9,10,9,9,10,0,0,234,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,234,235,236,0,0,234,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,121,0,0,8,9,121,0,8,9,0,0,123,353,241,241,241,241,241,241,354,121,0,0,123,9,9,10,9,10,0,9,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,8,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,121,121,0,0,121,8,9,0,121,0,0,0,123,129,353,241,241,241,241,354,127,121,0,0,9,9,10,123,0,9,10,0,123,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,234,236,0,0,0,0,0,0,0,0,8,10,0,0,0,0,0,0,0,0,0,0,4524,121,121,0,0,121,121,0,8,9,0,0,0,123,129,129,0,0,0,0,127,127,121,0,0,0,0,123,9,9,10,123,0,123,123,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,8,9,10,0,0,0,0,0,0,234,236,0,0,0,0,0,0,0,0,0,0,4524,121,121,0,0,121,121,0,121,0,0,0,0,123,129,129,0,0,0,0,127,127,121,0,0,0,0,123,0,0,123,123,0,123,123,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,121,0,123,0,0,0,0,8,9,10,0,0,0,0,0,0,0,0,0,0,0,4524,121,121,0,0,121,121,0,121,0,0,0,0,123,129,129,0,0,0,0,127,127,121,0,0,0,0,9,10,0,123,123,0,123,123,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,234,235,236,0,0,0,8,9,0,123,0,0,0,0,0,0,0,0,0,0,0,4524,121,121,0,0,121,121,0,121,0,0,0,0,123,129,129,0,0,0,0,127,127,121,0,0,0,0,0,123,0,123,123,0,123,123,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,8,10,0,0,0,121,0,0,123,0,0,0,0,0,0,0,0,0,8,10,4524,121,121,0,0,121,121,0,121,0,0,0,0,123,129,129,0,0,0,0,127,127,121,0,0,0,0,0,123,0,123,123,0,123,123,4522,0,8,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,234,236,0,0,0,121,0,347,236,0,0,0,0,0,0,0,0,0,234,236,4524,121,234,348,0,121,121,0,234,348,0,0,0,123,129,129,0,0,0,0,127,127,121,0,0,0,0,347,236,0,123,123,0,123,123,4522,0,121,9,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,8,9,9,9,9,10,0,0,234,235,236,0,0,0,0,0,0,0,0,0,0,0,0,4524,234,348,121,0,121,234,348,0,234,348,0,0,9,9,9,9,9,9,9,9,9,9,0,0,0,0,123,0,347,236,123,347,236,123,4522,0,121,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,8,9,0,0,0,0,9,10,8,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4637,4411,121,121,0,234,348,234,348,0,234,348,0,0,0,0,0,0,0,0,0,0,0,0,0,347,235,236,0,123,0,123,123,347,236,4522,0,234,235,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,121,0,8,9,9,10,0,123,234,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,121,234,348,0,121,0,234,348,0,234,235,348,0,0,0,0,0,0,0,0,0,347,235,236,0,0,0,123,347,236,123,123,4409,4635,8,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,121,0,121,0,0,9,10,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,10,4524,234,348,121,0,121,0,0,121,0,0,0,234,235,235,348,0,0,0,347,235,235,236,0,0,0,347,235,236,123,347,236,123,4522,0,234,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,234,348,121,0,0,0,123,9,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,234,236,4637,4411,121,121,0,234,348,0,234,235,235,348,0,0,0,234,235,235,235,236,0,0,0,0,347,235,236,0,347,236,123,347,236,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0, 0,0,121,234,235,348,0,123,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,121,234,348,0,234,348,0,0,0,234,235,235,348,0,0,0,0,0,347,235,235,235,236,0,0,347,236,0,123,123,4409,4635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,0, 0,0,234,348,0,234,235,236,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,234,348,121,0,0,234,235,348,0,0,0,0,234,235,235,235,235,235,236,0,0,347,235,235,235,236,347,235,236,123,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,234,235,348,0,0,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4637,4411,121,234,235,348,0,0,234,235,235,348,0,0,0,347,235,235,235,235,235,235,236,0,0,0,0,123,347,235,236,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,234,235,235,235,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4524,234,235,348,234,348,0,0,0,0,234,235,235,235,236,0,0,0,0,0,0,347,235,235,235,235,236,123,4409,4410,4635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,8,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4637,4410,4411,234,348,234,235,235,235,348,0,0,0,0,0,347,235,235,235,235,235,236,347,235,235,235,235,236,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,234,236,8,9,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4637,4411,234,235,235,235,348,234,235,235,235,235,235,236,347,235,235,235,235,235,236,4409,4410,4410,4410,4410,4635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,121,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4637,4410,4410,4410,4411,234,235,235,235,235,235,235,235,236,4409,4410,4410,4410,4410,4410,4635,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,234,235,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4637,4410,4410,4410,4410,4410,4410,4410,4410,4410,4635,0,0,0,0,0,0,0,0,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,4, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,8,9,10,0,0,0,0,0,8,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,8,9,0,123,0,0,0,0,0,234,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,121,0,347,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,234,235,236,0,0,0,0,0,0,0,8,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,8,10,0,0,0,0,0,0,0,0,0,234,236,0,8,9,9,9,9,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,9,10,0,0,0,0,0,0,0,0, 0,0,234,236,0,0,0,0,0,0,0,0,0,0,0,8,9,8,9,10,0,9,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,9,0,123,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,0,121,0,123,0,0,9,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,0,347,236,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,0,234,235,236,8,9,10,9,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,234,235,236,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,8,10,234,235,348,0,0,121,0,123,0,123,8,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,10,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,234,236,0,0,121,0,0,234,235,236,0,123,234,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,234,236,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,8,10,0,0,0,0,0,0,234,235,235,235,235,235,235,236,0,0,0,0,0,8,9,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,9,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,234,236,0,0,0,8,9,10,0,0,0,0,0,0,0,0,0,0,0,0,8,9,0,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,9,9,9,0,123,8,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,121,0,123,0,0,0,0,0,0,0,0,0,0,0,0,121,0,347,236,8,9,10,0,0,8,9,9,10,0,0,0,0,0,0,0,0,0,0,121,0,0,0,347,236,234,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,234,235,236,0,0,0,0,0,0,0,0,0,0,0,0,234,235,236,0,121,0,123,0,0,121,0,0,123,0,0,0,0,0,0,0,0,0,0,234,348,0,347,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,234,235,236,0,0,234,235,235,236,8,10,0,0,0,0,0,0,8,10,0,234,235,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,234,236,0,0,0,0,0,0,234,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,202,203,0,0,0,0,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,203,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,315,316,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,315,316,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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, 0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,315,316,0,0,0,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,203,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,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,203,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,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,203,315,316,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,315,316,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0, 0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0, 0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,203,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,315,316,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,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,203,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,315,316,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,202,203,315,316,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,202,203,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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: maps/hoenn/hoenn-route-127.tmx ================================================ 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,0,0, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,0,0, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,0,0, 116,116,116,116,116,116,116,116,116,116,4975,4975,4975,4975,4975,4975,4975,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,116,116,116,116,0,0, 116,116,116,116,116,116,116,116,116,116,4975,4975,4975,4975,4975,4975,4975,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,116,116,116,0,0, 116,116,116,116,116,116,116,116,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,116,116,116,0,0, 116,116,116,116,116,116,116,116,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,116,116,116,116,0, 116,116,116,116,116,116,116,116,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,0, 116,116,116,116,116,116,0,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,0, 116,116,116,116,116,116,0,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,0, 116,116,116,116,116,116,0,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,0, 116,116,116,116,116,116,0,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,0, 116,116,116,116,116,116,0,4975,4975,4975,4975,4975,4975,0,0,0,0,0,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0, 116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0, 116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0, 116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0, 116,116,116,116,116,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4978,4978,4978,4978,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0, 116,116,116,116,116,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4978,4978,116,116,116,116,0,4978,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0, 116,116,116,116,116,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,0,0,0,0,0,4975,4975,4975,4975,4975,4978,4978,116,116,116,116,116,116,116,116,4978,4978,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0, 116,116,116,116,116,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,0,0,0,0,0,0,4975,4975,4978,4978,4978,116,116,116,116,116,116,116,116,116,116,116,116,4978,4978,4978,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0, 116,116,116,116,116,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,0,0,0,0,0,0,4975,4978,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,4978,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0, 116,116,116,116,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,0,0,0,0,0,4975,4975,4978,116,116,116,116,116,0,4978,4978,0,116,116,116,116,116,116,4978,4978,4978,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0, 116,116,116,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0,4975,4975,4978,116,116,116,116,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0, 116,116,116,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,4975,4975,4978,116,116,4978,4978,4978,4978,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0, 116,116,116,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,4975,4978,4978,4978,4978,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0, 116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0, 116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0, 0,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0, 0,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0,0,0,116,116,116,0,0,0,0,0,0,116,116,116,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0,0,0,116,116,116,0,0,0,0,0,0,116,116,116,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0,0,0,0,0,0,116,116,116,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0,116,116,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,0,0,0,0,0,0,0,0,0,0,0,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,0,0,0,0,0,0,0,0,0,0,0,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,116,116,116,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,116,116,116,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,116,116,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,116,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,0,0,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,116,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,0,0,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,116,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,0,0,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,116,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,0,0,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,0,0,0,0,0,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0, 0,0,0,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0, 0,0,0,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0, 0,0,0,116,116,116,116,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0, 0,0,0,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,0,0,0,0,0,116,116,116,0,0,0, 0,0,0,0,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,0,0,0,4975,4975,4978,4978,4978,4975,0,0,0,0,0,116,116,116,116,0,0, 0,0,0,0,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4978,4978,4975,4975,4975,4975,4975,4975,4978,4978,4978,4975,4975,0,0,0,0,116,116,116,116,0,0, 0,0,0,0,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4978,4978,4978,4978,4978,4975,4975,4975,4978,4978,0,116,4978,4975,4975,0,0,0,116,116,116,116,0,0, 0,0,0,0,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4978,4978,116,116,116,4978,4978,4978,4978,4978,4978,4978,4978,4978,4975,4975,0,0,0,116,116,116,116,0,0, 0,0,0,0,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4978,4978,4978,116,116,116,116,4978,4978,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,116,116,116,116,0,0, 0,0,0,0,0,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,4975,4975,4975,4978,4978,4978,116,116,116,116,4978,4978,4975,4975,4975,4975,4975,4975,4975,0,0,0,116,116,116,116,116,0,0, 0,0,0,0,0,0,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,4975,4975,4975,4975,4975,4975,4978,0,116,116,116,4978,4978,4975,4975,4975,4975,0,0,0,0,0,0,116,116,116,116,0,0,0, 0,0,0,0,0,0,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,4975,0,0,0,4975,4975,4978,4978,4978,4978,4978,4975,4975,4975,4975,0,0,0,0,0,0,0,116,116,116,116,0,0,0, 0,0,0,0,0,0,116,116,116,116,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0,0,0,0,0,4975,4978,4978,4978,4978,4975,4975,4975,4975,0,0,0,0,0,0,0,116,116,116,116,116,0,0,0, 0,0,0,0,0,0,116,116,116,116,116,0,0,116,116,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,0,0,0,0,0,0,0,0,0,0,4975,4978,4978,4978,4978,4975,4975,4975,4975,0,0,0,0,0,0,0,116,116,116,116,116,0,0,0, 0,0,0,0,0,0,0,116,116,116,116,0,0,116,116,0,0,0,0,0,0,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,0,0,0,0,0,0,0,0,0,4975,4978,4978,4978,4978,4975,4975,0,0,0,0,0,0,0,0,116,116,116,116,116,0,0,0,0, 0,0,0,0,0,0,0,116,116,116,116,0,0,116,116,0,0,0,0,0,0,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,0,0,0,0,0,0,0,0,0,4975,4978,4978,116,4978,4975,4975,0,0,0,0,0,0,0,0,116,116,116,116,116,0,0,0,0, 0,0,0,0,0,0,0,116,116,116,116,0,0,116,116,0,0,0,0,0,0,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,0,0,0,0,0,0,0,0,0,4975,4975,4978,4978,4978,4975,4975,0,0,0,0,0,0,0,0,116,116,116,116,0,0,0,0,0, 0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,0,0,0,0,0,0,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,116,116,116,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,0,0,0,0,0,0,0,0,116,116,116,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,3,3,3,4,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0 0,0,0,3,3,4,0,0,0,0,0,115,0,228,229,229,342,0,117,0,117,0,117,228,230,0,0,0,0,0,0,0,0,0,4974,0,0,0,0,0,0,0,0,0,5427,5088,5089,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,115,117,3,4,0, 3,4,0,0,0,3,4,0,0,2,4,228,229,229,229,342,228,229,230,341,230,341,230,0,0,0,0,0,0,0,0,0,0,0,5087,5088,5088,5088,5088,5088,5088,5088,5088,5088,5089,0,2,4,0,0,0,0,0,0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,115,117,0,117,0, 0,117,0,0,0,0,117,0,0,228,230,0,0,0,0,228,229,342,0,117,341,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,4,228,230,0,0,0,0,0,0,0,0,0,0,0,2,3,3,3,3,3,3,4,0,0,0,0,2,4,115,0,115,3,4,117,0, 0,117,0,0,0,0,117,0,0,0,341,229,229,229,229,229,342,115,0,117,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,117,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,2,3,3,3,4,3,3,4,0,0,228,230,115,0,228,342,117,117,0, 0,117,0,2,4,0,117,0,0,0,117,0,0,0,0,0,115,228,229,230,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,117,0,0,2,4,0,0,0,0,0,0,0,0,115,0,0,115,0,0,0,117,0,0,117,0,0,0,0,228,342,0,115,117,117,0, 0,117,0,228,230,341,230,0,341,229,230,0,0,0,0,0,228,229,342,0,117,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,117,0,0,228,230,0,0,0,0,0,0,0,0,228,342,0,228,342,0,0,117,0,0,117,0,0,0,0,0,115,0,115,117,117,0, 0,117,0,0,0,117,0,0,117,0,0,0,0,0,0,0,0,4976,115,0,117,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,0,117,0,0,0,0,0,0,0,0,0,0,0,2,4,115,0,0,228,229,229,230,0,341,230,0,0,0,0,0,115,0,115,117,3,4, 0,117,0,0,0,117,0,0,117,0,0,0,0,0,0,0,0,4976,115,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,2,3,4,117,0,0,0,0,0,0,0,2,4,0,0,228,230,228,229,229,229,229,229,229,229,230,0,0,0,0,0,0,228,342,115,117,0,117, 341,230,0,0,341,230,341,229,230,0,0,0,0,0,0,0,0,4976,228,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,2,3,115,0,117,117,2,4,0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,115,3,4,117, 230,0,0,341,230,0,117,0,0,0,0,0,0,0,0,5427,5088,5089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,2,3,2,3,0,117,117,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,228,342,117,117, 0,0,0,117,0,0,117,0,0,0,0,0,0,0,0,4976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,115,0,341,230,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,115,117,117, 0,0,0,117,0,0,117,0,0,0,0,0,0,5427,5088,5089,0,4861,4862,4862,4863,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,2,3,0,228,229,230,341,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,115,117,117, 0,0,341,230,0,0,117,0,0,0,0,0,0,4976,0,0,0,4974,0,0,5314,4863,0,0,0,0,0,0,0,0,0,0,0,0,228,230,2,3,3,0,0,0,341,229,230,0,0,0,0,0,0,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,342,115,117,117, 0,0,117,0,0,341,230,5088,5088,5088,5088,5088,5088,5089,0,0,0,4974,0,0,0,4976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,2,4,341,229,230,0,0,0,0,0,4861,4862,4862,4862,4862,4862,4862,4862,4862,4862,4863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,115,117,117, 0,0,117,0,0,117,0,0,0,0,0,0,0,0,0,0,0,5087,5088,5426,0,4976,0,0,0,0,0,0,0,0,0,0,0,2,3,3,3,0,228,230,117,0,0,0,0,0,0,4861,5313,0,0,0,0,0,0,0,0,0,5314,4862,4863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,115,117,117, 0,0,3,4,0,117,0,0,0,4861,4862,4862,4862,4862,4862,4862,4862,4863,0,5087,5088,5089,0,0,0,0,0,0,0,0,0,2,4,115,0,2,3,4,0,0,117,0,0,0,0,4861,4862,5313,0,0,0,4867,4868,4868,4868,4868,4869,0,0,0,5314,4863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,115,117,117, 0,0,0,117,0,117,2,4,0,4974,0,0,0,0,0,0,0,5314,4863,0,0,0,0,0,0,0,0,0,0,0,0,228,230,115,2,3,0,117,341,229,230,0,0,0,4861,5313,0,0,0,4867,4868,5316,2,3,3,4,5317,4868,4869,0,0,5314,4862,4862,4863,0,0,0,0,0,0,0,0,0,0,0,115,115,117,117, 2,4,0,117,0,117,228,230,0,4974,0,0,0,0,0,0,0,0,4976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,115,0,0,117,117,0,0,0,4861,4862,5313,0,0,4867,4868,5316,2,3,3,0,0,3,3,4,5317,4868,4869,0,0,0,4976,0,0,0,0,0,0,0,0,0,0,0,115,115,117,117, 228,230,0,117,0,117,0,0,0,4974,0,0,0,0,0,0,0,0,4976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,115,0,341,230,117,0,0,0,4974,0,4867,4868,4868,5316,2,3,3,0,2,3,3,3,4,3,3,4,5317,4868,4868,4869,5314,4863,0,0,0,0,0,0,0,0,0,0,115,115,117,117, 0,0,0,117,0,117,0,0,0,4974,0,0,0,0,0,0,0,0,4976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,115,0,117,341,230,0,0,0,4974,4867,5316,2,3,3,3,0,0,0,115,0,0,0,3,3,4,3,3,3,4,4982,0,4976,0,0,0,0,0,0,0,0,0,0,115,115,117,117, 342,0,0,117,0,117,0,0,0,4974,0,0,0,0,0,0,0,0,4976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,228,342,117,117,0,0,0,4861,5313,4980,2,3,2,3,4,0,0,0,228,229,342,0,0,0,117,0,0,0,117,4982,0,4976,0,0,0,0,0,0,0,0,0,0,115,115,117,117, 115,0,341,230,341,230,0,0,0,4974,0,0,0,0,0,0,0,0,4976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,228,230,117,0,0,0,4974,0,4980,115,2,3,0,117,0,341,229,229,342,228,229,229,229,230,0,341,229,230,4982,0,4976,0,0,0,0,0,0,0,0,0,0,115,115,117,117, 115,0,117,341,230,0,0,0,0,4974,0,0,0,0,0,0,0,0,4976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,341,230,0,0,0,4974,0,4980,115,228,229,229,230,341,230,0,0,228,229,229,229,229,229,229,230,5430,5094,5095,0,4976,0,0,0,0,0,0,0,0,0,0,115,115,117,117, 115,0,117,117,0,0,0,0,0,4974,0,0,0,0,0,0,0,0,4976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,342,0,117,0,0,0,0,4974,0,4980,115,0,0,341,229,230,0,5430,5094,5094,5094,5094,5094,5094,5094,5094,5094,5095,0,0,0,4976,0,0,0,0,0,0,0,0,0,0,115,115,117,117, 228,342,117,117,0,2,4,0,0,5087,5088,5426,0,0,0,0,0,5427,5089,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,115,0,117,0,0,0,0,5087,5426,4980,228,229,229,230,5430,5094,5094,5095,0,0,0,5427,5088,5088,5088,5088,5088,5088,5088,5088,5088,5089,0,0,0,0,0,0,0,0,0,0,115,115,117,117, 0,115,117,117,0,228,230,0,0,0,0,5087,5088,5088,5088,5088,5088,5089,0,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,115,341,230,0,0,0,0,0,4974,5093,5094,5094,5094,5094,5095,0,0,0,0,5427,5088,5089,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,115,117,117, 0,228,230,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,115,117,0,0,0,0,0,0,5087,5426,0,0,0,0,0,5427,5088,5088,5088,5089,0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,115,117,117, 342,0,341,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,115,117,2,4,0,0,0,0,0,5087,5088,5088,5088,5088,5088,5089,0,0,0,0,0,0,0,2,3,4,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,115,115,117,117, 115,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,117,0,228,230,2,4,0,0,0,0,0,0,0,0,0,0,2,3,115,117,117, 115,341,230,0,2,4,0,0,0,0,0,0,0,0,0,0,0,115,2,4,117,2,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,2,3,4,0,0,0,0,0,0,0,0,0,0,2,3,0,117,0,0,0,228,230,0,2,3,3,3,4,0,0,0,0,115,0,115,117,117, 228,230,0,0,228,230,0,0,0,0,0,0,0,0,0,0,0,115,115,117,117,115,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,115,0,117,0,0,0,0,0,0,0,0,0,0,115,2,4,117,0,0,0,0,0,0,115,2,3,4,117,0,0,0,0,115,2,3,117,117, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,115,117,117,228,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,117,0,0,0,0,0,0,0,0,0,0,115,115,117,117,0,0,0,0,0,0,115,228,342,117,117,0,0,0,0,115,115,341,230,117, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,115,117,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,2,4,117,0,0,0,0,0,0,0,0,0,2,3,115,117,117,0,0,0,0,0,0,228,342,228,230,117,0,0,0,0,115,115,117,341,230, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,115,3,4,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,115,117,117,0,0,0,0,0,0,0,0,0,115,2,3,117,117,0,0,0,0,0,0,0,228,229,229,230,0,0,0,0,115,115,117,117,0, 0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,115,0,115,0,117,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,228,230,117,0,0,0,0,0,0,0,0,0,115,115,341,230,117,0,0,4861,4862,4862,4862,4862,4862,4863,0,2,3,4,0,2,3,115,117,117,0, 0,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,228,342,228,342,117,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,341,230,0,0,0,0,0,0,0,0,0,115,115,117,341,230,0,0,4974,0,0,0,0,0,4976,0,228,342,117,0,115,2,3,117,117,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,228,230,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,342,0,117,0,0,0,0,0,0,0,0,0,0,115,115,117,117,0,4861,4862,5313,0,0,0,0,0,5314,4863,0,228,230,0,115,115,341,230,117,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,341,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,341,230,0,0,0,0,0,0,0,0,0,0,115,115,117,117,0,4974,0,0,0,0,0,0,0,0,4976,0,0,2,4,115,228,230,341,230,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,342,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,2,4,0,0,0,0,0,0,0,0,2,3,115,117,117,0,4974,0,0,0,0,0,0,0,0,5314,4863,0,228,230,115,0,341,230,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,115,0,115,117,3,4,4974,0,0,0,0,0,0,0,0,0,4976,0,0,0,115,0,117,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,115,3,4,117,4974,0,0,0,0,0,0,0,0,0,4976,0,0,0,115,0,117,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,341,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,115,0,117,117,4974,0,0,0,0,0,0,0,0,0,4976,0,0,0,115,0,117,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,342,115,0,117,117,4974,0,0,0,0,0,0,0,0,0,4976,0,0,0,115,341,230,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,115,0,117,117,5087,5426,0,0,0,0,0,0,0,0,4976,0,0,0,115,117,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,3,115,0,117,117,0,5087,5426,0,0,0,0,0,0,0,4976,0,0,0,115,117,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,2,3,0,117,117,0,0,5087,5426,0,0,0,0,0,0,4976,0,0,0,228,230,0,0,0,0, 0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,115,0,341,230,117,0,0,0,5087,5088,5088,5088,5088,5088,5088,5089,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,2,3,341,230,341,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,3,115,341,230,341,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0, 0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,2,3,117,341,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,0, 0,0,0,0,2,3,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,115,341,230,117,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,4,0,115,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,115,117,0,117,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,230,2,3,0,117,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,228,230,341,230,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,2,4,0,0, 0,0,0,115,2,4,117,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,341,230,0,0,2,4,0,0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,228,230,0,0, 0,0,0,115,115,117,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,117,0,0,0,228,230,2,4,0,0,0,0,0,0,0,0,0,0,0,2,4,2,3,4,0,0, 0,0,2,3,115,117,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,341,230,0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0,0,0,228,230,115,0,117,0,0, 0,0,115,0,115,117,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,117,0,0, 2,4,115,0,115,3,4,117,0,2,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,2,4,117,0,0, 228,230,115,0,115,0,117,117,0,115,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,230,0,0,0,0,0,0,0,0,0,4861,4862,4862,4862,4862,4862,4863,0,0,0,0,115,115,117,117,0,0, 0,0,115,0,115,0,117,117,0,228,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4861,4862,4862,4862,4862,4863,0,4861,5313,4867,4868,4868,4868,4869,4976,0,0,0,2,3,115,117,117,0,0, 0,0,228,342,115,0,117,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,4,0,0,0,0,0,0,4861,5313,4867,4868,4868,4869,5314,4862,5313,0,4980,0,0,0,4982,5314,4863,0,0,115,0,115,117,3,4,0, 0,0,0,115,115,0,117,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,0,0,0,4861,4862,5313,4867,5316,0,0,5317,4868,4869,0,4867,5316,2,3,4,5317,4869,5314,4863,0,115,0,115,3,4,117,0, 0,0,0,115,228,342,117,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4861,5313,0,4867,5316,2,3,3,4,0,5317,4868,5316,0,228,342,3,4,4982,0,4976,0,115,0,115,0,117,117,0, 0,0,0,115,0,115,3,4,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4861,5313,0,4867,5316,0,115,0,0,3,4,0,0,0,0,0,228,229,230,4982,0,4976,0,115,0,115,0,117,117,0, 0,0,0,115,0,115,0,117,3,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,4,0,0,0,4974,0,0,4980,0,0,115,2,3,4,3,4,0,5430,5094,5094,5094,5094,5094,5095,0,4976,0,115,2,3,0,117,117,0, 0,0,0,228,342,228,342,3,4,117,0,0,228,230,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,117,0,0,4861,5313,0,0,4980,0,0,115,228,342,117,0,117,0,4982,0,0,0,0,0,0,5427,5089,2,3,115,0,341,230,117,0, 0,0,0,0,228,342,115,0,117,3,4,0,0,0,0,0,0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,117,0,0,4974,0,0,0,5093,5094,5429,228,342,228,230,0,117,0,4982,0,0,0,5427,5088,5088,5089,0,115,0,115,0,117,341,230,0, 0,0,0,0,0,115,115,0,117,0,117,0,0,2,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,115,2,4,117,0,0,5087,5426,0,5427,5088,5426,5093,5429,228,229,229,229,230,5430,5095,0,0,5427,5089,0,0,0,0,115,0,115,0,117,117,0,0, 0,0,0,0,0,115,115,0,3,4,117,0,0,115,0,117,0,0,0,0,0,2,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,115,115,117,117,0,0,0,5087,5088,5089,0,5087,5426,4980,0,0,0,0,5430,5095,0,0,5427,5089,0,0,0,0,2,3,2,3,0,117,117,0,0, 0,0,0,0,0,115,228,342,0,117,3,4,2,3,0,117,0,0,0,0,0,115,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,115,117,117,0,0,0,0,0,0,0,0,4974,4980,0,0,0,0,4982,0,0,0,4976,0,0,0,0,0,115,0,115,0,341,230,117,0,0, 0,0,0,0,0,228,342,115,0,117,0,117,115,2,4,117,0,0,0,0,2,3,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,115,117,3,4,0,0,0,0,0,0,0,4974,4980,2,3,3,4,4982,0,5427,5088,5089,0,0,2,4,2,3,2,3,0,117,341,230,0,0, 0,0,0,0,0,0,115,115,0,117,0,117,115,115,117,117,0,0,0,0,115,2,4,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,115,3,4,117,0,0,0,0,0,0,0,4974,4980,228,342,0,117,4982,0,4976,0,0,0,0,228,230,115,0,115,0,341,230,117,0,0,0, 0,0,0,0,0,0,115,228,342,117,0,117,115,115,117,117,0,0,0,0,115,228,230,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,115,0,117,117,0,0,0,0,0,0,0,4974,5093,5429,228,229,230,4982,0,4976,0,0,0,0,0,0,115,0,115,341,230,341,230,0,0,0, 0,0,0,0,0,0,115,0,115,3,4,3,3,115,117,117,0,0,0,0,228,342,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,115,0,117,117,0,0,0,0,0,0,0,5087,5426,5093,5094,5094,5094,5095,0,4976,0,0,0,0,0,0,115,2,3,117,341,230,0,0,0,0, 0,0,0,0,0,0,228,342,228,342,3,4,0,115,117,3,4,0,0,0,0,115,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,115,0,117,117,0,0,0,0,0,0,0,0,5087,5088,5426,0,0,0,0,4976,0,0,0,0,0,0,115,115,341,230,117,0,0,0,0,0, 0,0,0,0,0,0,0,115,0,115,0,3,4,115,3,4,117,0,0,0,0,115,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,115,0,117,117,0,0,0,0,0,0,0,0,0,0,5087,5088,5088,5088,5088,5089,0,0,0,2,4,0,115,115,117,341,230,0,0,0,0,0, 0,0,0,0,0,0,0,228,342,115,0,0,3,3,0,117,117,0,0,0,0,115,341,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,342,115,0,117,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,115,228,230,117,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,115,115,0,0,0,0,0,117,117,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,228,342,117,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,341,230,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,115,228,229,342,0,0,0,117,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,115,0,115,3,4,3,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,3,3,3,0,0,117,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,228,229,342,115,0,0,0,117,0,117,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,228,342,115,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,3,3,0,2,3,3,4,0,117,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,335,336,335,336,335,336,335,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,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,203,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,222,223,222,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,335,449,448,449,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,222,448,449,448,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,222,448,336,335,449,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,315,316,0,222,448,336,0,222,448,449,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,335,449,223,0,335,449,448,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,335,336,0,0,335,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,202,203,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,222,223,222,223,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,335,449,448,449,223,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,222,448,449,448,336,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,222,448,336,335,449,223,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,222,448,336,0,222,448,449,223,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,335,449,223,0,335,449,448,449,223,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,335,336,0,0,335,336,335,336,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,202,203,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,315,316,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,315,316,202,203,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,315,316,0,0,0,0,0,315,316,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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: maps/hoenn/hoenn-route-128.tmx ================================================ 0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,3,3,3,3,3,3,3,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,0,0,0,0,0,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,0,0,0,0,0,4975,4975,4975,116,116,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,4975,4975,4975,0,116,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,116,116,116,116,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,0,116,116,116,116,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,0,116,116,116,116,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,0,0,116,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,0,0,0,0,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,0,0,0,0,0,0,0,0,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,0,0,0,0,0,0,0,0,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,0,0,0,0,0,0,0,0,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,4975,4975,0,0,0,0,0,0,0,0,4975,4975,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,116,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,0,0,0,0,0,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,0,4863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4976,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,4975,5427,5089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,0,116,116,116,116,116,116,4975,4976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,116,116,116,116,116,116,116,116,4975,4976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4861,5313,4975,4975,4975,0,0,116,116,116,116,116,116,4975,4975,4975,4975,4976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4974,4975,4975,4975,4975,116,116,116,116,116,116,4975,4975,4975,5427,5088,5088,5089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4974,4975,4975,4975,4975,116,116,116,116,116,4975,4975,5427,5088,5089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5087,5426,4975,4975,4975,4975,4975,4975,4975,4975,4975,5427,5089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5087,5088,5088,5088,5088,5088,5088,5088,5088,5088,5089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,115,228,229,342,0,117,0,3,4,0,0,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,228,342,3,3,3,3,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,0,117,341,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,342,0,115,0,117,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,228,229,229,342,0,0,3,3,4,0,0,0,0,0,0,0,0,0,0,2,3,0,0,341,230,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,115,0,115,0,3,4,0,117,0,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,342,0,0,0,228,229,342,0,0,3,3,3,3,3,3,3,3,3,3,3,3,341,229,229,230,341,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,115,0,228,342,0,117,0,117,0,0,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,229,229,342,0,0,228,229,229,342,0,0,0,0,0,0,0,0,0,0,341,230,341,229,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,342,0,115,0,117,0,117,0,0,0,4861,4862,4862,4862,4862,4862,4863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,229,342,0,0,0,228,229,229,229,229,229,229,229,229,229,229,230,341,230,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,115,0,228,342,117,0,117,0,0,4861,5313,0,2,3,3,4,5314,4863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,230,2,4,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,342,0,115,117,341,230,0,0,4974,0,0,115,0,0,117,0,4976,0,0,0,0,0,0,0,0,0,0,0,0,0,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,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,342,228,230,117,0,0,0,4974,0,0,228,342,0,117,0,4976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4861,4862,4862,4862,4863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,342,0,117,0,2,4,4974,0,0,0,228,229,230,0,4976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4974,0,0,0,5314,4863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,0,0,0,4861,4862,4862,4862,4862,4862,4863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,117,0,228,230,5087,5426,0,0,0,0,0,0,4976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4974,0,0,0,0,4976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,4861,5313,0,2,3,3,4,5314,4863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,117,0,0,0,0,5087,5426,0,0,0,0,5427,5089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5087,5426,0,0,0,4976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,4974,2,3,3,0,0,3,4,5314,4862,4862,4863,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,341,230,0,0,0,0,0,5087,5088,5088,5088,5088,5089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5087,5088,5088,5088,5089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4974,228,229,342,0,0,0,3,3,3,4,4976,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4974,0,0,228,229,342,0,0,0,0,117,4976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,4861,4862,4862,4862,4862,4862,4863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4974,0,0,0,0,228,229,229,342,0,117,4976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,230,0,0,228,230,0,0,0,0,0,0,0,0,0,4861,4862,5313,0,0,0,0,0,5314,4862,4862,4862,4863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5087,5426,0,0,0,0,2,4,228,229,230,4976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,4,0,0,0,0,0,0,0,0,0,0,0,4974,0,0,0,0,0,0,0,0,0,0,0,4976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5087,5426,0,0,0,228,230,0,0,5427,5089,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0,0,0,4974,0,0,0,5427,5088,5088,5426,0,0,0,0,5314,4863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5087,5088,5426,0,0,0,0,5427,5089,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,4974,0,0,5427,5089,0,0,5087,5088,5088,5426,0,0,4976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5087,5088,5088,5088,5088,5089,0,0,0,0,0,2,4,0,0,0,0,0,0,2,3,4,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,230,0,0,0,0,0,0,0,0,0,4974,0,0,4976,0,0,0,0,0,0,4974,0,0,4976,0,0,0,0,0,0,0,0,0,0,4861,4862,4862,4862,4862,4862,4862,4863,0,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,230,0,0,0,0,2,4,115,0,117,0,2,3,3,3,3,3,3,3,3,3,3,4,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,4,0,0,0,0,0,0,0,0,4974,0,0,4976,0,0,0,0,0,0,4974,0,0,4976,0,0,0,0,0,0,0,0,0,4861,5313,0,2,3,3,4,0,5314,4863,0,0,0,0,0,0,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,230,228,229,230,0,228,342,2,3,3,3,3,3,3,3,4,3,3,3,4,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,117,0,0,0,0,0,0,0,0,4974,0,0,5314,4862,4863,0,0,0,4861,5313,0,0,4976,0,0,0,0,0,0,0,0,0,4974,0,0,228,342,0,117,0,0,4976,0,0,0,0,0,0,0,0,0,0,0,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,4,115,228,229,342,0,0,0,0,0,3,3,3,4,3,4,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,117,0,0,0,0,0,0,0,0,5087,5426,0,0,0,5314,4862,4862,4862,5313,0,0,5427,5089,0,0,0,0,0,0,0,0,0,5087,5426,0,0,228,229,230,0,5427,5089,0,0,0,0,0,0,0,0,0,0,0,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,230,228,229,342,228,229,229,229,229,229,342,0,0,117,0,3,3,4,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,117,0,0,0,0,0,0,0,0,0,5087,5426,0,0,0,0,0,0,0,0,0,4976,0,0,0,0,0,0,0,0,0,0,0,5087,5426,0,0,0,5427,5088,5089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,229,229,229,229,229,342,228,229,229,230,0,341,229,230,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,2,4,117,0,0,0,0,0,0,0,0,0,0,5087,5088,5426,0,0,0,0,0,0,5427,5089,0,0,0,0,0,0,0,0,0,0,0,0,5087,5088,5088,5088,5089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,4,0,0,228,229,342,0,0,341,230,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,115,117,117,0,0,0,0,0,0,0,0,0,0,0,0,5087,5088,5088,5088,5088,5088,5088,5089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,230,0,0,0,0,228,229,229,230,0,2,4,2,4, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,228,230,117,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,228,230,228,230, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,342,0,117,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4861,4862,4862,4862,4862,4862,4862,4862,4862,4863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,230,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4861,4862,5313,0,0,0,0,0,0,0,0,5314,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,341,230,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4861,4862,5313,0,0,0,2,4,0,0,0,2,4,0,0,0,228,230,2,4,0,0,0,0,0,2,3,4,0,0,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,230,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4861,5313,0,0,0,0,0,228,230,0,0,0,228,230,0,0,0,0,0,228,230,0,0,0,0,0,115,0,117,0,2,3,3,3,3,3,3,4,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,4861,4862,4862,4863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4974,0,0,0,0,0,0,2,3,3,3,3,3,4,0,0,2,4,0,0,0,0,0,0,0,0,228,229,230,0,115,2,3,3,3,4,0,3,3,3,4,228,230,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,2,4,0,0,4861,5313,2,4,5314,4863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4861,5313,0,0,0,0,2,3,3,2,3,3,3,4,117,0,0,228,230,0,0,0,0,0,0,0,0,0,0,2,4,115,228,342,0,0,3,3,3,3,4,3,3,3,3,3,3,3,4,0,228,230,2,4,2,4,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,115,117,0,0,4974,0,228,230,0,4976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4861,5313,0,0,0,0,2,3,2,3,3,341,229,229,230,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,228,342,228,229,342,0,0,0,0,3,3,3,3,3,4,0,0,3,4,0,0,228,230,228,230,0,0,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,230,115,3,4,0,5087,5426,0,0,5427,5089,0,0,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,4,2,3,3,3,2,3,341,229,230,341,229,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,229,342,228,342,0,0,0,0,0,0,0,0,3,3,4,0,3,3,4,0,0,0,0,2,4,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,117,0,0,5087,5088,5088,5089,0,0,0,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,230,115,2,3,3,3,341,230,341,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,228,229,229,229,229,342,0,0,0,0,341,230,0,341,229,230,0,0,0,0,228,230,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,228,229,229,229,230,341,230,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,229,229,229,229,342,0,228,229,229,229,229,230,0,341,230,0,0,0,0,0,0,0,0,0,0, 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,342,117,0,0,0,0,0,0,0,0,0,0,0,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,229,229,229,229,229,230,0,0,0,0,0,0,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,229,229,229,229,229,229,229,229,230,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,342,117,0,0,0,0,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,4,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,0,0,0,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,230,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,203,0,0,0,0,202,203,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,315,316,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,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,203,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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: maps/hoenn/hoenn-route-129.tmx ================================================ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,3,3,3,3,3,3,4,228,230,0,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,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,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,342,2,3,3,3,4,0,3,3,3,3,3,3,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,228,342,0,0,3,3,3,3,3,3,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,342,228,229,342,0,0,0,0,0,0,3,3,4,0,3,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,228,229,342,228,342,0,0,0,0,0,0,341,230,0,341,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,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,4,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,228,229,229,229,342,0,341,230,0,341,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,4,0,0,0,0,0,115,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,229,229,229,229,342,115,341,230,0,341,230,0,0,0,0,0,0,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,3,3,3,3,3,3,3,3,4,0,228,230,2,4,0,0,0,115,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,115,117,341,229,230,0,0,0,0,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,3,3,3,0,2,3,3,3,4,0,0,3,4,0,0,228,230,0,0,0,228,342,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,228,230,117,0,0,0,0,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,4,115,0,0,0,2,3,0,0,0,3,3,4,0,3,3,4,0,0,0,0,2,4,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,228,342,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 2,4,0,0,0,0,0,228,230,228,342,0,0,228,342,0,0,0,0,341,230,0,341,229,230,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,228,230,0,115,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 228,230,0,0,0,0,0,0,0,0,228,229,342,0,228,229,229,229,229,230,0,341,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,3,4,0,0,115,341,230,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,4,0,0,0,0,0,0,0,228,229,229,229,229,229,229,229,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,117,0,0,228,230,0,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,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,3,3,0,117,0,0,0,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,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,341,230,0,0,0,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,230,0,0,0,0,0,0,0,0,0,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,4,0,0,0,0,0,0,0,0,0,0,0,115,0,0,117,0,0,0,0,0,0,0,0,0,0,0,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,3,3,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0,0,0,115,0,341,230,0,0,0,0,0,0,0,0,0,0,0,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,342,0,0,3,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,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,342,0,0,117,0,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,2,4,228,342,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,229,229,230,2,3,4,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,115,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,117,0,228,230,0,0,0,0,0,0,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,342,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,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,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,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,3,3,4,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,3,0,0,3,4,0,0,0,0,0,2,4,228,230,0,0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,3,3,2,3,3,4,0,3,3,3,3,4,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,3,4,228,342,2,3,0,0,3,3,3,3,3,4,3,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,2,4,0,0,0,2,3,3,3,3,3,3,4,0,0,228,342,3,4,115,228,229,342,0,0,0,0,0,0,3,3,4,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,228,230,0,0,2,3,2,3,3,3,3,4,3,3,3,4,228,229,230,228,229,342,228,229,229,229,229,229,342,0,0,117,0,3,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,2,4,0,0,2,4,115,0,228,342,0,0,0,3,3,3,4,3,4,0,0,0,0,228,229,229,229,229,229,342,228,229,229,230,0,341,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,4,228,230,0,0,228,230,228,229,342,228,229,229,342,0,0,0,117,0,117,0,0,0,0,0,0,2,4,0,0,228,229,342,0,0,341,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,230,0,0,0,0,0,0,0,0,228,229,229,342,228,229,229,229,230,0,117,0,0,0,0,0,0,228,230,0,0,0,0,228,229,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 4,0,0,0,0,0,0,0,0,0,0,0,0,228,229,342,0,0,0,341,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,229,229,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,315,316,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,203,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,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,203,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,202,203,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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: maps/hoenn/hoenn-route-130.tmx ================================================ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,0,0,0,0, 0,0,0,0,0,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0, 0,0,0,0,0,0,0,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,0,0,0,0, 116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,0,0,0, 116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0,0,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,3,3,3,3,3,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,2,3,0,2,3,3,4,0,3,4,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,3,3,3,3,3,3,4,0,0,0,0, 0,0,0,2,3,0,2,3,0,0,117,0,0,117,2,4,0,0,228,230,0,2,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,3,3,0,2,3,3,3,4,0,3,4,0,0,0, 0,2,4,228,342,0,228,229,229,229,230,0,341,230,228,230,0,0,0,0,0,115,0,117,0,0,0,0,2,4,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,2,3,2,3,4,3,4,0,3,4,0,0, 0,228,230,0,228,229,342,0,0,0,341,229,230,0,0,2,3,3,4,0,0,228,229,230,0,0,0,0,228,230,228,230,0,0,0,0,0,0,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,4,115,0,0,0,115,0,228,229,230,0,117,0,0,117,0,0, 0,0,0,0,0,0,228,229,229,229,230,0,0,0,0,115,0,0,117,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,228,230,228,342,0,0,228,342,0,0,0,341,230,0,341,230,0,0, 0,0,0,0,0,2,4,0,0,0,0,0,0,2,4,228,229,229,230,0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0,0,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,230,0,0,0,228,229,342,0,228,229,229,229,230,0,341,230,0,2,4, 3,4,0,0,0,228,230,0,0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,3,4,0,0,0,0,0,0,228,229,229,229,229,229,229,229,230,0,0,228,230, 0,117,0,0,0,0,0,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,3,3,0,3,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,2,3,3,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0, 229,230,0,0,0,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,4,228,342,0,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,115,0,0,0,341,230,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,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,4,0,0,0,0,0,0,0,228,230,0,228,229,229,229,229,229,230,2,4,0,0,0,0,0,0,2,3,3,4,0,2,4,0,228,229,229,229,230,2,4,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0, 0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,2,3,3,4,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,0,0,2,3,3,3,2,4,3,4,228,230,0,0,0,0,0,0,228,230,0,0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0,0, 0,0,228,230,2,3,4,0,0,0,0,0,0,0,2,4,228,229,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,115,0,0,0,228,230,0,117,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 2,4,0,0,115,341,230,0,0,0,0,0,0,0,228,230,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,230,0,0,228,229,229,342,0,0,341,230,0,228,230,0,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,230,0,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,229,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,4,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,3,3,4,228,230,0,0, 2,3,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,117,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,3,0,0,0,3,4,0,2,4, 3,0,0,117,0,0,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,4,228,229,230,228,230,0,0,0,0,0,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,3,3,3,0,0,0,0,0,0,3,4,228,230, 0,0,341,230,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,4,228,230,0,0,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,4,0,2,4,0,0,0,228,342,0,0,0,0,0,0,0,0,0,3,4,0, 229,229,230,2,4,0,0,0,0,2,3,4,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,0,0,0,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,230,0,228,230,0,0,0,0,228,229,342,0,0,0,0,0,0,341,229,230,0, 0,0,0,228,230,0,0,0,0,228,229,230,0,228,230,0,0,0,0,0,0,0,0,0,2,3,3,3,4,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,2,3,3,3,4,0,0,228,229,229,229,229,229,229,230,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,2,4,0,0,115,0,0,0,3,3,4,0,228,230,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,228,342,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,2, 0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,0,0,2,3,4,228,230,2,4,228,229,229,342,0,0,3,4,0,2,4,0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,3,3,4,0,0,0,228,342,341,229,230,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,115,0,117,0,0,228,230,0,0,0,228,229,229,229,230,0,228,230,0,0,0,0,0,0,0,2,3,3,4,0,2,4,0,0,0,0,2,3,3,0,2,4,3,4,0,0,0,228,230,0,0,0,0,0,0,0,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,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,228,342,0,3,4,228,230,0,2,3,3,3,2,3,4,228,230,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,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,230,0,0,0,0,228,229,229,230,0,0,0,228,342,0,0,228,229,230,0,0,341,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,229,229,229,229,229,229,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,203,0,0,0,0,315,316,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,315,316,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,315,316,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,203,0, 0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,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,203,0,315,316,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,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: maps/hoenn/hoenn-route-131.tmx ================================================ 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,4978,4978,4978,4978,4978,4978,4978,4978,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,0,4978,4978,4978,4978,4978,0,116,116,116,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,0,4978,4978,4978,0,116,116,116,0,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,0,0,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0,0,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0, 116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,0,116,116,0,0,0,0,0,0,0, 116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,0,0,0,0,0,0,0,0, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,341,229,229,230,117,341,229,229,230,0,0,0,0,0,4637,4411,228,342,228,342,228,342,0,0,0,0,0,0,0,0,0,117,341,230,117,4409,4635,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,341,229,229,230,0,0,341,230,117,0,0,0,0,0,0,0,0,0,4637,4411,228,342,228,342,115,0,0,0,0,0,0,0,0,341,230,117,341,230,4522,0,0,0,0,0,0,0,0,0,0,0,0,0, 229,229,229,229,229,229,229,229,230,0,0,0,341,229,230,341,230,0,0,0,0,0,0,0,0,0,0,4637,4411,115,0,115,228,342,0,0,0,0,0,341,229,230,0,117,117,4409,4635,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,341,229,229,229,229,229,229,230,0,341,230,0,0,0,0,0,0,0,0,0,0,0,202,4524,115,0,228,342,228,342,0,0,0,341,230,0,341,229,230,117,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,341,229,229,230,0,0,0,341,229,229,229,229,230,0,0,0,0,0,0,0,0,0,0,0,0,315,4524,228,342,0,228,342,228,229,229,229,230,0,341,230,341,229,230,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 229,229,230,0,341,229,229,229,229,230,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,202,203,0,4637,4411,228,342,0,228,229,229,229,229,229,229,230,0,117,4409,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 229,229,229,229,230,0,0,0,0,0,0,2,4,0,2,3,4,0,228,230,0,0,0,0,0,315,316,0,0,4637,4411,228,229,229,229,229,229,229,229,229,229,229,230,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,202,203,0,0,0,0,0,0,0,228,230,0,115,116,117,0,0,0,0,0,0,0,0,0,202,203,0,0,4637,4410,4410,4411,0,0,0,0,0,4409,4410,4410,4410,4635,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0, 0,0,315,316,0,0,0,0,2,4,0,0,0,0,228,229,230,0,0,0,0,0,0,0,2,4,315,316,0,0,0,0,0,4524,0,0,0,0,0,4522,0,315,316,2,3,3,3,4,315,316,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,2,3,4,0,228,230,0,0,2,4,202,203,0,0,0,0,0,0,202,203,228,230,0,0,0,0,0,0,0,4637,4410,4410,4410,4410,4410,4635,0,2,4,228,229,342,0,117,0,0,2,4,0,0,0,0,0,0,0,0, 0,0,0,0,115,116,117,0,0,0,0,0,228,230,315,316,0,0,2,4,0,0,315,316,0,2,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,0,228,229,230,202,203,228,230,0,0,0,0,0,0,0,0, 202,203,0,0,228,229,230,0,0,2,4,202,203,0,0,0,202,203,228,230,0,202,203,0,0,115,116,117,2,4,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,315,316,0,2,3,3,4,0,0,0,0,0, 315,316,0,0,0,0,0,202,203,228,230,315,316,0,2,4,315,316,0,202,203,315,316,0,0,228,229,230,228,230,0,0,2,4,0,0,0,0,0,2,3,117,0,0,0,0,0,0,0,0,2,3,0,0,3,4,0,0,0,0, 0,0,0,0,0,0,0,315,316,0,0,0,0,0,228,230,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,228,230,0,0,0,0,0,115,116,117,0,0,0,0,0,0,0,0,228,229,229,229,229,230,202,203,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,228,229,230,0,0,0,0,0,0,0,2,4,0,0,202,203,0,315,316,2,3, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,2,3,4,0,0,0,0,0,0,0,0,0,0,0,0,202,203,228,230,0,0,0,0,0,0,0,0,0,0,228,230,0,0,315,316,0,0,0,115,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,116,3,3,4,0,0,0,0,2,4,0,0,2,4,315,316,0,0,0,0,0,0,0,2,3,4,0,0,0,0,0,202,203,0,0,2,4,228,229, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,229,229,229,230,0,0,0,0,228,230,2,4,228,230,0,0,0,0,0,0,0,2,3,3,0,117,0,0,0,0,0,315,316,0,0,228,230,0,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,4,0,0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0,115,0,0,0,117,0,0,0,0,0,0,202,203,0,0,0,202,203, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,229,229,229,230,0,0,0,0,0,0,315,316,0,0,0,315,316, 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,203,0,0,2,4,0,0,0,0,0,0,0,2,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,202,203,228,230,0,0,0,0,2,4,2,116,116,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,2,3,3,4,228,230,228,229,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,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,229,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,4, 0,0,0,0,0,0,202,203,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,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,203,2,4,0,0,0,0,0,0,228,230, 0,0,0,2,4,0,315,316,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,228,230,0,0,0,0,0,0,2,3, 202,203,0,228,230,0,0,0,2,3,4,0,0,0,0,0,115,3,4,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,115,0, 315,316,0,0,0,0,0,0,115,116,117,0,2,4,0,0,228,342,3,4,228,230,0,0,0,0,0,0,0,0,0,0,0,202,203,228,230,0,0,0,0,0,0,0,2,4,228,230,0,0,0,0,0,0,0,0,202,203,228,229, 3,3,3,3,4,0,0,0,228,229,230,0,228,230,2,4,0,228,229,230,0,0,0,0,0,0,0,2,3,3,4,0,0,315,316,0,0,2,4,0,0,0,0,0,228,230,0,0,0,202,203,0,2,4,0,0,315,316,0,0, 0,0,0,0,3,3,4,0,0,0,0,2,4,0,228,230,0,0,2,4,0,0,0,0,0,0,0,115,0,0,3,3,4,0,0,0,0,228,230,2,4,0,0,2,3,3,4,0,0,315,316,0,228,230,0,2,4,0,0,0, 3,3,3,3,4,0,3,3,3,3,4,228,230,0,0,0,2,4,228,230,0,0,2,3,3,4,0,228,342,0,0,0,3,4,0,0,0,0,0,228,230,0,2,3,0,0,3,3,3,4,2,3,3,3,4,228,230,0,0,0, 0,0,0,0,3,3,3,4,0,0,3,3,4,0,0,0,228,230,0,0,2,3,3,0,0,117,2,4,228,229,229,229,229,230,0,0,0,0,0,0,202,203,228,229,229,229,342,0,0,3,3,0,0,341,230,0,0,0,0,0, 0,0,0,0,0,0,0,3,4,0,0,0,117,4,0,0,0,0,0,0,115,0,0,0,341,230,228,230,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,228,229,342,0,0,0,341,230,0,0,0,0,202,203, 0,0,0,0,0,0,0,0,3,3,3,4,117,117,3,4,0,0,2,4,228,229,229,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,229,229,229,230,0,0,0,0,0,315,316, 0,0,0,0,0,0,0,0,0,0,0,3,3,3,3,3,4,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,203,0,0,0,0,0,0,907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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: maps/hoenn/hoenn-route-132.tmx ================================================ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,4975,4975,0,0,0,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,4975,4975,4978,4978,4978,4978,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,4975,4975,4975,4978,4978,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,4975,4975,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4978,4978,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,4975,4975,0,0,0,0,0,0,0,4975,4975,4975,4975,4978,4978,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,4975,4975,0,0,0,0,0,0,0,4975,4975,4975,4978,4978,4978,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,0,0,0,0,0,0,4975,4975,4978,0,4978,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,0,0,0,0,0,0,0,4975,4975,4978,4978,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,0,0,0,0,0,0,0,0,0,4975,4975,4975,0,0,0,0,0,0,0,4975,4975,4978,4978,4978,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4978,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4978,4978,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,116 0,0,202,203,0,0,0,2,4,202,203,0,0,202,203,2,3,3,4,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,202,203,0,0,0,0,0,0,2,4,0,0,202,203,0,0,0,0,0,0,0,202,203,2,3,3,4,0,0,0,115,115,0,228,342,0,0,0,0,0,0, 2,4,315,316,0,0,0,228,230,315,316,2,4,315,316,115,116,116,117,228,230,202,203,0,0,0,0,0,0,2,4,0,0,202,203,0,0,228,230,315,316,202,203,0,0,202,203,228,230,2,4,315,316,2,3,4,202,203,0,0,315,316,115,116,116,117,0,0,0,115,228,342,0,228,229,342,0,0,0,0, 228,230,0,0,2,3,4,0,0,0,0,228,230,2,4,228,229,229,230,0,0,315,316,202,203,2,4,202,203,228,230,202,203,315,316,2,4,0,0,0,0,315,316,2,4,315,316,0,0,228,230,0,0,115,116,117,315,316,202,203,0,0,228,229,229,230,0,0,0,228,342,228,229,342,0,228,342,0,0,0, 0,0,0,0,115,116,117,0,0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,315,316,228,230,315,316,0,0,315,316,0,0,228,230,0,0,0,0,0,0,228,230,0,202,203,0,0,0,0,0,228,229,230,0,0,315,316,0,0,0,0,0,0,202,203,0,0,228,342,0,228,229,342,228,229,229,229, 0,0,0,0,228,229,230,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,228,229,229,342,228,229,229,229,229, 0,0,0,0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,202,203,0,228,229,229,342,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,202,203,315,316,0,0,0,0,228,229,229, 0,0,0,0,0,0,0,0,0,0,0,2,4,2,4,228,230,0,0,0,0,0,0,0,0,315,316,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,203,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,2,4,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,2,4,228,230,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,202,203,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,315,316,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,0,0,0,0, 0,0,0,0,0,2,4,2,4,228,230,4861,4862,4862,4863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,202,203,0,0,0,0,0,0,0,0,202,203,0,0,202,203,202,203,202,203,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,4,0,0,2,4,0,0, 0,0,0,0,0,228,230,228,230,4861,4862,5313,0,0,4976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,202,203,315,316,0,0,315,316,315,316,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,116,117,0,0,228,230,0,0, 0,0,0,0,4861,4862,4862,4862,4862,5313,0,0,0,0,5314,4863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,203,0,0,0,315,316,0,0,0,0,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,229,230,0,0,0,0,0,0, 0,0,0,4861,5313,0,0,0,0,0,0,0,0,0,0,4976,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,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,4,2,3,3,4,0, 0,0,0,4974,0,2,3,3,4,2,3,4,0,0,0,4976,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,228,342,116,117,0, 0,0,0,4974,2,3,341,229,230,228,229,230,2,3,4,4976,0,0,0,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,202,203,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,229,230,0, 0,0,0,4974,228,229,230,0,0,0,0,0,228,229,230,4976,0,0,0,0,202,203,0,0,0,315,316,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,202,203,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,5087,5426,0,0,0,0,0,0,0,0,0,0,4976,0,0,0,0,315,316,202,203,0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0,0,202,203,0,0,0,315,316,315,316,0,202,203,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,5087,5426,0,0,5427,5088,5426,0,0,0,0,4976,0,0,0,0,0,0,315,316,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,202,203,0,0,0,315,316,315,316,202,203,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,5087,5088,5088,5089,0,5087,5088,5088,5088,5088,5089,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,315,316,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,202,203,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4861,4862,4862,4862,4862,4863,0,0,0,0,0,0,0,0,0,4861,4862,4862,4862,4862,4862,4862,4862,4862,4862,4862,4862,4862,4862,4863,202,203,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 315,316,315,316,202,203,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4974,0,0,0,0,4976,0,0,0,0,0,0,0,0,4861,5313,4867,4868,4868,4868,4868,4869,2,4,0,2,4,0,0,4976,315,316,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,315,316,202,203,0,0,0,0,0,0,0,0,0,0,4861,4862,4862,4862,4862,4862,4862,4862,4862,4862,4862,5313,0,0,0,0,4976,0,0,0,0,0,0,0,4861,5313,0,4977,0,2,4,0,5317,115,117,0,228,230,5427,5088,5089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,4974,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4976,0,0,0,0,0,0,4861,5313,0,0,4977,0,228,230,5094,5091,228,230,5427,5088,5088,5089,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,4974,0,0,0,0,5427,5088,5088,5088,5088,5088,5088,5088,5426,0,0,4976,0,0,0,0,0,4861,5313,0,0,4867,5316,0,0,4982,2,4,5427,5088,5089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,4974,0,0,0,0,4976,0,0,0,0,0,0,0,4974,0,0,4976,0,0,0,0,0,4974,2,4,4867,5316,0,0,5430,5095,228,230,4976,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,4974,0,0,0,0,4976,0,0,0,0,0,0,0,4974,0,0,5314,4862,4863,0,0,0,4974,228,230,4977,2,4,0,4982,0,0,0,4976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,3,4,0,0,0,0, 0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,5087,5088,5426,0,0,4976,0,0,0,0,0,0,0,5087,5426,0,0,0,4976,0,0,0,5087,5426,0,4977,228,230,0,4982,0,0,0,4976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,116,116,117,0,0,0,0, 0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4974,0,0,5314,4863,0,0,0,0,0,0,0,4974,0,0,0,4976,0,0,0,0,5087,5426,5090,5429,2,4,5317,4869,0,0,5314,4862,4863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,228,229,229,230,2,4,0,0, 0,0,202,203,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4974,0,0,0,5314,4862,4862,4862,4862,4862,4862,4862,5313,0,0,0,4976,0,0,0,0,0,4974,0,4977,228,230,0,5317,4869,0,2,4,5314,4863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,0,0,0,228,230,0,0, 202,203,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4974,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4976,0,0,0,0,0,4974,0,5090,5091,5091,5429,0,5317,4869,228,230,0,5314,4862,4863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3, 315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4974,0,0,0,0,5427,5088,5088,5088,5088,5088,5088,5088,5088,5088,5088,5089,0,0,0,0,0,5087,5426,0,2,4,4977,0,0,5317,4868,4868,4869,2,4,5314,4862,4863,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,2,3,3,3,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4974,0,0,0,0,4976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5087,5426,228,230,5090,5091,5091,5091,5091,5091,5092,228,230,0,0,4976,0,0,0,0,0,202,203,0,0,2,4,0,0,228,230,2,3,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5087,5088,5088,5088,5088,5089,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,5087,5088,5088,5088,5088,5088,5088,5088,5088,5088,5088,5088,5088,5088,5089,0,0,0,0,0,315,316,202,203,228,230,2,4,0,2,3,0,2,3,3,3, 202,203,0,0,0,0,0,0,0,0,0,0,202,203,0,0,0,0,2,4,0,0,202,203,0,0,0,202,203,228,230,0,0,0,0,202,203,0,2,4,0,0,202,203,0,0,202,203,0,0,2,4,0,0,0,0,0,2,4,202,203,0,202,203,2,4,315,316,0,0,228,230,2,115,2,3,3,0,0,0, 315,316,0,0,2,4,0,0,2,4,2,4,315,316,2,4,202,203,228,230,202,203,315,316,2,4,0,315,316,0,202,203,202,203,0,315,316,0,228,230,202,203,315,316,2,4,315,316,2,4,228,230,2,3,4,202,203,228,230,315,316,0,315,316,228,230,0,0,0,0,2,3,3,3,115,0,0,0,0,0, 0,0,202,203,228,230,202,203,228,230,228,230,0,0,228,230,315,316,0,0,315,316,0,0,228,230,2,4,0,0,315,316,315,316,202,203,0,2,4,0,315,316,0,0,228,230,0,0,228,230,0,0,115,116,117,315,316,0,0,0,0,2,4,0,0,0,0,0,0,2,115,0,2,3,3,0,0,0,0,0, 0,0,315,316,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,0,0,0,0,0,315,316,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,228,229,230,0,0,0,0,0,0,228,230,0,0,0,0,2,3,115,115,0,115,0,0,0,0,0,0,0 ================================================ FILE: maps/hoenn/hoenn-route-133.tmx ================================================ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,0, 0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,116,116,116,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,0,0, 0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,4975,116,116,116,116,116,116,116,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,0,0, 0,0,0,0,4975,116,116,4975,4975,4975,4975,4975,116,116,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,4975,116,116,116,116,4975,4975,116,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,4975,116,116,116,116,116,116,116,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,4975,4975,116,116,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4975,4975,4975,4975,4975,4975,4978,4978,4975,4975,4975,4975,4975,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,4975,4975,4975,4975,0,0,0,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,0,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,0,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,4,2,4,202,203,0,0,0,0,202,203,0,0,0,0,0,0,2,4,0,0,0,0,202,203,202,203,0,0,0,0,2,4,202,203,202,203,202,203,0,0,0,202,203,0,0,202,203,0,0,2,4,202,203,2,4,0,0,0,0,202,203,202,203,2,4,202,203,2,4,0,0,0,202,203, 202,203,0,0,228,230,228,230,315,316,0,0,2,4,315,316,202,203,2,4,202,203,228,230,202,203,2,4,315,316,315,316,0,0,202,203,228,230,315,316,315,316,315,316,0,2,4,315,316,202,203,315,316,202,203,228,230,315,316,228,230,202,203,2,4,315,316,315,316,228,230,315,316,228,230,202,203,0,315,316, 315,316,2,4,0,0,0,0,0,0,2,4,228,230,0,0,315,316,228,230,315,316,0,0,315,316,228,230,0,0,0,0,202,203,315,316,0,0,0,0,0,0,0,202,203,228,230,0,0,315,316,0,0,315,316,0,0,0,0,0,0,315,316,228,230,0,0,0,0,0,0,0,0,0,0,315,316,202,203,0, 0,0,228,230,0,0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0, 0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,4,0,0,2,4,0,0,0,2,4,0,0,0,0,4861,4862,4862,4862,4863,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4861,4862,4862,4862,4862,4862,4862,4862,4862,4862,4862,4862,4862,4863,0, 0,0,0,0,0,0,2,4,228,230,0,0,228,230,0,0,0,228,230,4861,4862,4862,4862,5313,0,0,0,4976,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4974,0,0,0,0,0,0,0,0,0,0,0,0,4976,0, 0,0,0,0,0,0,228,230,4861,4862,4862,4862,4862,4862,4862,4862,4862,4862,4862,5313,2,3,3,3,3,4,5427,5089,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5087,5088,5088,5426,0,0,0,0,0,0,0,0,0,4976,0, 0,0,0,4861,4862,4862,4862,4862,5313,0,0,0,2,3,3,3,3,3,3,3,3,0,0,341,229,230,4976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5087,5088,5088,5426,0,0,0,0,0,0,4976,0, 0,0,0,4974,2,3,4,0,0,0,0,0,115,0,0,0,0,0,0,0,341,229,229,230,0,0,4976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4861,4862,4862,4862,4863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5087,5088,5426,0,0,0,0,4976,0, 0,0,4861,5313,115,0,3,4,0,0,2,3,3,0,341,229,229,229,229,229,230,0,0,0,5427,5088,5089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4974,0,0,0,5314,4862,4862,4863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5087,5088,5088,5088,5088,5089,0, 0,0,4974,2,3,0,0,3,3,3,3,341,229,229,230,0,0,0,0,0,0,0,5427,5088,5089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5087,5426,0,0,0,0,0,5314,4862,4862,4863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,4861,5313,115,0,0,0,0,0,0,0,117,0,0,0,0,0,0,0,5427,5088,5088,5089,0,0,0,0,0,0,0,0,2,3,3,3,3,3,3,3,3,3,3,3,3,4,0,0,0,0,0,0,5087,5426,0,0,0,0,0,0,0,5314,4862,4862,4863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,4974,0,115,0,0,341,229,229,229,229,230,0,5427,5088,5088,5088,5088,5088,5089,0,0,0,0,0,0,0,0,2,3,3,116,116,116,116,116,116,116,116,116,116,116,116,116,116,3,3,4,0,0,0,0,5087,5426,0,0,0,0,0,0,0,0,0,5314,4862,4862,4863,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,4974,0,228,229,229,230,0,0,0,0,0,0,4976,0,0,0,0,0,0,0,0,0,0,0,0,0,2,116,116,116,116,341,229,229,229,229,229,229,229,229,229,229,342,116,116,116,116,3,4,0,0,0,5087,5426,0,0,0,0,0,0,0,0,0,0,0,5314,4862,4862,4863,0,0,0,0,0,0,0,0,0,0, 0,4974,0,0,0,0,0,0,0,5427,5088,5088,5088,5089,0,0,0,0,0,0,0,0,0,0,2,3,3,116,116,341,229,229,230,0,0,0,0,0,0,0,0,0,0,228,229,229,229,342,116,117,0,0,0,0,5087,5426,0,0,0,0,0,0,0,0,0,0,0,0,0,4976,0,0,0,0,0,0,0,0,0,0, 0,5087,5088,5426,0,0,0,0,5427,5089,0,0,0,0,0,0,0,0,0,0,0,0,2,3,116,341,229,229,229,230,0,5430,5091,5091,5091,5091,5429,0,0,5430,5091,5091,5091,5429,0,0,0,115,116,116,4,0,0,0,0,5087,5088,5088,5088,5088,5088,5088,5088,5088,5088,5088,5088,5088,5088,5089,0,0,0,0,0,0,0,0,0,0, 0,0,0,5087,5088,5088,5088,5088,5089,0,0,0,0,0,0,0,0,0,0,0,0,0,115,341,229,230,5091,5091,5091,5091,5091,5092,5427,5088,5088,5426,5090,5091,5091,5092,5427,5088,5426,5090,5091,5091,5091,228,229,342,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,203,0,0,0,0,0,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,230,5087,5088,5088,5088,5088,5088,5088,5088,5089,0,0,5087,5088,5088,5088,5088,5089,0,5087,5088,5088,5088,5088,5088,5089,228,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,202,203,0,0,0,0,202,203,0,0,0,0,0,0,0,0,2,3,3,3,3,3,3,3,3,3,3,4,0,0,0,202,203,0,0,202,203,0,0,0,202,203,202,203,0,0,0,0,0,202,203,202,203, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,203,0,315,316,202,203,315,316,202,203,202,203,315,316,0,0,0,0,2,3,3,3,116,116,116,116,116,116,116,116,116,116,116,116,4,202,203,315,316,0,0,315,316,0,202,203,315,316,315,316,202,203,0,202,203,315,316,315,316, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,315,316,0,0,0,315,316,0,0,315,316,315,316,0,0,0,0,0,2,116,116,341,229,229,229,229,229,342,116,341,229,229,229,229,229,230,315,316,0,0,0,0,0,0,0,315,316,0,0,0,0,315,316,0,315,316,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,3,116,341,230,0,0,429,0,0,228,342,117,0,0,429,0,0,5314,4863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,203,0,0,0,0,0, 4862,4863,0,0,0,0,0,0,0,0,0,0,0,2,4,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,3,116,341,229,229,230,0,0,0,0,429,0,0,228,230,0,0,0,0,0,0,5314,4863,0,0,0,0,0,0,0,0,0,0,0,0,0,202,203,315,316,0,0,0,0,0, 0,4976,0,0,0,0,0,0,0,0,0,2,4,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,116,116,116,341,230,0,0,0,0,0,2,4,0,0,0,0,0,0,429,2,4,0,0,0,4976,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0, 0,4976,0,0,0,0,0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,229,229,229,230,0,0,429,0,0,0,228,230,0,0,0,0,0,0,0,115,117,2,4,0,4976,0,0,0,0,0,0,0,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0, 0,4976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4974,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,228,230,115,117,0,4976,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0, 0,4976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5087,5088,5426,0,0,115,117,0,429,0,0,0,0,0,0,0,0,0,228,230,0,4976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,203,0,0,0,0,0,0, 0,4976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4974,0,0,228,230,0,0,0,0,5427,5088,5088,5088,5426,0,0,0,0,5427,5089,0,0,0,0,0,0,0,0,0,202,203,0,0,0,315,316,202,203,0,0,0,0, 0,4976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5087,5426,0,0,0,0,0,5427,5088,5089,0,0,0,5087,5088,5088,5088,5088,5089,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,315,316,202,203,202,203, 5427,5089,0,0,0,0,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5087,5426,0,0,0,5427,5089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,315,316, 5089,0,0,0,0,0,0,0,0,0,0,0,315,316,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5087,5088,5088,5088,5089,0,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,203,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,2,4,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,4,0,0,0,0,315,316,0,0,0,0,0,0,0,0, 2,4,0,0,0,0,0,0,0,0,0,0,2,4,0,0,228,230,315,316,0,0,0,0,0,0,202,203,0,0,0,0,202,203,0,0,0,0,0,202,203,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,202,203,2,4,228,230,0,0,0,0,0,0,0,0,0,0,202,203,202,203, 228,230,0,0,0,0,0,0,2,4,202,203,228,230,0,0,0,0,2,4,0,0,0,0,0,0,315,316,2,4,202,203,315,316,0,0,0,0,0,315,316,228,230,202,203,0,0,0,0,0,0,202,203,2,4,0,228,230,202,203,315,316,228,230,202,203,0,0,2,4,0,0,0,0,202,203,315,316,315,316, 0,0,202,203,202,203,2,4,228,230,315,316,0,0,0,0,0,0,228,230,2,4,2,4,202,203,2,4,228,230,315,316,0,202,203,2,4,202,203,0,0,0,0,315,316,202,203,2,4,2,4,315,316,228,230,202,203,0,315,316,0,0,0,0,315,316,2,4,228,230,202,203,2,4,315,316,0,0,0,0, 0,0,315,316,315,316,228,230,0,0,0,0,0,0,0,0,0,0,0,0,228,230,228,230,315,316,228,230,0,0,0,0,0,315,316,228,230,315,316,0,0,0,0,0,0,315,316,228,230,228,230,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,228,230,0,0,315,316,228,230,0,0,0,0,0,0 ================================================ FILE: maps/hoenn/hoenn-route-134.tmx ================================================ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0, 0,0,0,0,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0, 0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,0,0,0,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,0,0,0,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,0,0,4975,116,116,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,0,0,4975,0,0,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,0,0,4975,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,0,0,0,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,0,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,0,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,0,0,0,0,0,4975,4975,0,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,4,0,0,0,0,0,0,0,2,4,2,4,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,2,4,0,0,2,4,0,0,0,2,3,4,0,0,0,0,0,2,4,0,0,2,4,0,0,0,0,0,0,228,230,0,0,0,0,0,0,0,228,230,228,230,2,4,0,0,0,2,4,0,0,0,0,228,230,0,0,0,0,0,0,2,4,0,0,2,4,0,0,0, 0,0,0,0,0,0,0,0,0,0,228,230,2,4,228,230,0,0,0,115,0,117,2,4,0,0,0,228,230,0,0,228,230,2,4,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,228,230,0,2,4,228,230,4861,4862,4862,4862,4862,4862,4862,4863,0,0,0,0,228,230,0,0,228,230,0,0,0, 0,0,0,0,0,0,0,0,2,3,4,0,228,230,0,0,0,2,4,228,229,230,228,230,0,0,0,0,0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0,0,228,230,0,0,4974,0,2,3,3,4,0,5314,4862,4862,4862,4862,4862,4863,0,0,0,0,0,0,0, 0,0,0,0,2,3,4,0,115,0,117,0,0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,4861,4862,4862,4863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5087,5426,228,229,229,230,2,3,3,3,3,4,0,4976,0,0,0,0,0,0,0, 0,0,0,2,3,0,117,0,228,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4974,0,0,5314,4863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5087,5088,5088,5426,0,228,229,229,229,229,230,5427,5089,0,0,0,0,0,0,0, 0,0,0,115,0,341,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4974,0,0,0,5314,4863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5087,5088,5088,5088,5088,5088,5088,5088,5089,0,0,0,0,0,0,0,0, 0,0,0,228,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4861,4862,4862,4863,0,4974,0,0,0,0,5314,4863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4974,0,0,4976,0,4974,0,0,0,0,0,4976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4861,4862,4862,4862,4862,4863,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4974,0,0,5314,4863,4974,2,3,4,0,0,4976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4861,4862,4862,5313,2,3,3,4,4976,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4974,0,0,0,4976,4974,115,0,3,4,5427,5089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4861,5313,2,3,3,3,341,229,230,4976,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4861,5313,0,0,0,4976,4974,228,229,229,230,4976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4861,4862,5313,2,3,341,229,229,230,5427,5088,5089,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4861,5313,0,0,0,0,4976,5087,5426,2,4,0,5314,4862,4862,4862,4862,4862,4862,4862,4863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4861,5313,2,3,3,341,230,0,0,0,4976,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4974,0,0,2,4,0,4976,0,4974,228,230,0,0,0,0,0,0,0,0,0,5314,4862,4862,4863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4974,2,3,341,229,230,0,0,0,5427,5089,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4861,5313,0,0,228,230,0,4976,0,5087,5426,0,0,2,3,3,3,3,4,0,0,0,0,0,5314,4862,4862,4862,4862,4862,4862,4862,4862,4862,4862,4862,4862,4862,4862,4862,5313,115,341,230,0,0,0,0,0,4976,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4974,0,0,0,0,0,0,4976,0,0,5087,5426,0,228,229,229,229,229,230,0,2,4,0,0,4867,4868,4868,4868,4868,4868,4868,4868,4868,4868,4868,4868,4868,4869,2,4,0,228,230,0,0,0,0,0,5427,5089,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4974,0,0,2,4,0,0,4976,0,0,0,5087,5088,5088,5088,5088,5088,5088,5088,5426,228,230,2,4,4980,0,0,0,0,0,0,0,0,0,0,0,0,4982,228,230,2,4,0,0,0,0,0,5427,5089,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,2,3,3,4,0,0,0,0,0,0,0,0,0,0,0,5087,5088,5426,228,230,0,0,4976,0,0,0,0,0,0,0,0,0,0,0,5087,5088,5426,228,230,5093,5094,5094,5094,5094,5094,5094,5094,5094,5094,5094,5094,5094,5095,0,0,228,230,0,0,0,5427,5088,5089,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,115,0,0,3,3,4,0,0,0,0,0,0,0,0,0,0,0,5087,5088,5088,5088,5088,5089,0,0,0,0,0,0,0,0,0,0,0,0,0,5087,5088,5088,5088,5088,5088,5088,5088,5088,5088,5088,5088,5088,5088,5088,5088,5088,5088,5088,5088,5088,5088,5088,5088,5089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,228,342,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,229,229,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4861,4862,4862,4862,4862,4862,4863,0,0,0,0,0,0,0,0,0,0,4861,4862,4862,4862,4863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,3,4,0,0,0,0,0,0,0,0,0,0,4861,5313,0,0,0,0,0,5314,4863,0,0,0,0,0,0,0,0,0,4974,0,0,0,4976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,115,0,117,0,0,0,0,0,0,0,0,0,0,4974,0,0,0,0,0,0,0,5314,4863,0,0,0,0,0,0,0,0,5087,5088,5088,5088,5089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,229,230,0,0,0,0,0,0,0,0,0,4861,5313,0,0,0,0,0,0,0,0,4976,0,0,0,0,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,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,2,4,2,3,4,0,0,0,0,0,0,4974,0,0,0,2,4,0,0,0,0,4976,0,0,0,0,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,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4861,4862,4862,4862, 0,0,0,0,0,0,0,0,0,0,228,230,115,0,3,4,0,0,0,0,0,4974,0,0,0,228,230,0,0,0,5427,5089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4861,5313,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,228,342,0,117,0,0,0,0,0,4974,0,0,0,0,0,0,0,5427,5089,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,4,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,4861,5313,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,228,229,230,0,0,0,0,0,4974,0,0,0,0,0,0,0,4976,0,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,230,0,0,0,0,0,0,0,0,228,230,0,0,0,0,0,0,0,4974,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,5087,5426,0,0,0,0,0,5427,5089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4974,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,0,0,0,0,0,0,5087,5426,0,0,0,5427,5089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4974,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,5087,5088,5088,5088,5089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4974,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4974,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,2,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,4974,0,0,0,0,5427, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,0,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,228,230,0,0,0,0,0,0,0,5087,5088,5088,5088,5088,5089, 0,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,4,2,3,4,2,4,0,0,0,0,0,0,0,0,0,228,230,0,0,0,0,2,4,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,115,0,117,228,230,0,0,0,0,0,2,4,0,0,0,0,0,0,0,0,228,230,0,0,0,228,230,2,4,0,0,0,0,2,4,0,0,0,0,0,0,0,0,0,2,4,0,0,0,2,4,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,229,230,0,0,0,0,0,0,0,228,230,0,0,0,0,0,0,0,0,0,2,4,0,0,0,0,228,230,0,0,0,0,228,230,0,0,2,4,0,0,2,4,0,228,230,0,0,0,228,230,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230,0,0,228,230,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,202,203,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,203,0,0,0,202,203,202,203,0,0,202,203,0,0,202,203,0,0,0,0,0,0,0,202,203, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,203,0,0,0,0,0,315,316,0,0,0,0,315,316,0,0,0,0,202,203,315,316,0,0,202,203,0,0,202,203,0,0,0,0,0,0,0,315,316,0,0,0,315,316,315,316,0,0,315,316,202,203,315,316,0,0,0,0,0,0,0,315,316, 0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,315,316,0,0,0,0,315,316,0,0,315,316,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,202,203,0,0,202,203,0, 0,202,203,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,315,316,0, 0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 315,316,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,202,203,202,203,0,0,0,0,0,0,0,202,203,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,202,203,0,0,0,0,0,0,0,202,203,315,316,315,316,0,0,0,0,202,203,0,315,316,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,202,203,0,0,0,0,0,315,316,0,0,0,0,0,0,202,203,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,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,203,0,315,316,202,203,0,0,0,202,203,0,0,0,0,0,0,315,316,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,315,316,0,0,0,315,316,0,202,203,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,202,203,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,315,316,0,315,316,0,0,0,202,203,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,202,203,0,0,202,203,0,0,0,0,202,203,315,316,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,315,316,202,203,202,203,315,316,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,315,316,315,316,0,0,0,202,203,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,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,203,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,202,203,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,202,203,315,316,0,0,0,0,0,0,0,0,0,0,0,0,202,203,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,202,203,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,202,203,0,0,202,203,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,203,0,0,202,203,0,0,0,202,203, 0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,315,316,0,0,315,316,202,203,0,0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,315,316,0,0,0,315,316, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,202,203,0,0,0,0,0,0,0,0,315,316,0,0,0,315,316,0,0,0,0,202,203,202,203,0,0,202,203,0,0,202,203,0,0,0,0,0,0,202,203,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,315,316,0,0,315,316,0,0,315,316,0,0,0,0,0,0,315,316,0,0,0,0 ================================================ FILE: maps/hoenn/hoenn-safari-zone-expansion-north.tmx ================================================ 116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,116, 0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116, 116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116, 116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116, 116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116, 116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,116,116,116, 116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116, 116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,229, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,114,114,114,114,114,114,114,114 0,341,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,342,0,0,0,0,0, 229,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,342,0,0,0,0, 0,0,0,0,0,0,341,229,229,229,229,229,229,229,229,342,0,0,0,115,0,0,0,0, 0,0,0,0,341,229,230,0,0,95,95,95,95,95,0,228,1348,229,342,115,0,0,0,0, 0,0,341,229,230,0,2488,2829,0,0,0,0,0,0,0,0,0,95,115,115,0,0,0,0, 0,0,117,0,0,0,3168,0,341,229,229,229,229,1348,342,0,95,95,115,228,342,0,0,0, 0,341,230,95,95,0,0,341,230,0,0,0,0,0,228,342,95,95,115,0,228,229,229,229, 342,117,0,95,95,341,229,230,0,2827,2828,2828,2829,0,0,228,342,95,228,229,342,0,0,0, 115,117,95,95,341,230,0,0,0,0,341,1348,342,0,0,0,228,229,342,0,228,229,229,229, 228,230,95,95,117,0,0,0,341,229,230,0,228,342,0,0,0,0,228,229,229,229,229,0, 342,95,95,341,230,2942,0,341,230,0,0,0,0,228,229,342,0,0,0,95,0,0,0,0, 115,95,341,230,2488,2716,0,117,0,0,0,0,0,0,0,228,229,342,95,95,0,0,0,0, 228,229,230,0,3168,0,341,230,2488,2828,2829,0,0,0,2942,0,0,115,95,95,0,0,0,0, 0,0,0,0,0,0,117,0,3055,0,0,0,0,0,2601,2490,0,115,95,95,95,0,0,0, 342,0,0,0,341,229,230,2488,2716,0,0,0,0,0,2714,2716,0,228,229,229,229,229,229,229, 228,229,229,229,230,0,0,3055,0,0,0,0,0,0,0,4409,4410,4410,4410,4410,4410,4410,4410,4410, 0,0,0,0,0,2488,2828,2716,0,0,0,0,0,0,4409,4635,0,0,0,0,0,0,0,0, 0,0,0,0,0,3055,0,0,0,0,0,0,4409,4410,4635,0,4524,4636,95,95,4636,4636,4636,4636, 0,0,0,0,2488,2602,2489,2828,2828,2828,2829,0,4522,0,0,4524,4636,0,95,95,95,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,218,218,218,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,3842,0,0,0,0,0,0,331,331,331,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,3955,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,218,218,218, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,218,0,0,0,0,0,0,0,0,219,219,219,219, 0,0,0,0,0,0,0,0,0,0,0,219,218,0,0,0,0,0,0,0,331,219,219,219, 0,0,0,0,0,0,0,0,0,218,218,219,219,0,0,0,0,0,0,0,0,331,331,331, 0,0,0,0,0,0,0,0,218,219,219,331,331,0,0,0,0,0,0,0,0,0,0,0, 218,218,0,0,0,0,0,0,219,219,331,0,0,0,0,0,0,0,0,202,203,0,0,0, 219,219,0,0,0,0,0,218,219,331,0,0,0,0,0,0,0,3842,0,315,316,218,218,218, 219,331,0,0,0,0,0,331,331,0,0,0,0,0,0,0,0,3955,0,0,331,219,219,219, 331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219,219 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 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: maps/hoenn/hoenn-safari-zone-expansion-south.tmx ================================================ 114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,114, 114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,114, 114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116, 114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,114, 0,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0, 0,0,0,114,114,114,114,114,114,114,114,0,0,0,0,0, 0,0,0,114,114,114,116,114,114,114,114,0,0,0,0,0, 0,0,0,116,116,116,116,114,114,114,114,114,114,0,0,0, 0,0,0,116,116,116,116,114,114,114,114,114,114,114,0,0, 0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,0, 0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,114,116,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,116,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 116,114,116,116,116,116,116,0,0,0,0,0,0,0,0,0, 116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,114,114,114,114,0,0,0,0,0,0,0,0, 0,0,0,0,114,114,114,114,0,0,0,0,0,0,0,0, 0,0,0,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0 95,95,95,2488,2602,2602,2716,0,95,0,0,0,4522,0,4524,4636, 95,95,0,2601,2602,2716,0,95,95,0,0,0,4522,0,4524,0, 0,0,0,2714,2716,0,0,341,229,1348,229,229,229,229,229,229, 0,95,0,0,0,95,0,117,0,0,95,341,229,229,229,342, 0,95,95,0,95,95,0,117,0,95,95,117,0,0,4524,228, 0,95,95,0,95,95,0,117,0,95,95,117,0,0,4637,4411, 0,0,0,0,95,95,0,117,95,95,0,117,0,0,0,4637, 0,0,0,0,0,0,341,230,95,0,341,230,0,0,0,0, 0,0,0,341,229,229,230,341,229,1348,230,4636,4636,4522,0,0, 0,0,0,117,341,229,229,230,0,95,95,0,0,4636,4522,0, 0,0,0,117,117,0,0,0,95,95,95,95,0,0,4636,4522, 0,0,0,117,117,0,0,95,95,95,95,0,95,0,0,4636, 0,0,0,117,117,0,0,0,0,0,0,95,95,95,0,0, 0,0,0,117,3,3,4,0,0,0,0,95,95,0,0,0, 0,0,0,3,3,4,117,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,117,117,0,0,0,0,0,0,0,0,0 0,0,95,95,95,0,0,0,0,0,0,0,0,0,0,0, 0,95,95,95,0,0,0,0,0,0,0,0,0,0,0,0, 342,95,341,229,229,229,229,229,0,0,0,0,0,0,0,0, 228,229,230,341,229,229,229,229,0,0,0,0,0,0,0,0, 229,229,229,230,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 4410,4410,4410,4410,4410,4410,4410,4410,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,4524,4636,4636,4636,4636,0,0,0,0,0,0,0,0, 0,0,0,4524,95,0,0,0,0,0,0,0,0,0,0,0, 0,0,4524,4636,95,0,0,0,0,0,0,0,0,0,0,0, 4636,4636,4636,95,95,0,0,0,0,0,0,0,0,0,0,0, 0,95,95,95,95,0,0,0,0,0,0,0,0,0,0,0, 95,95,95,95,95,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,1810,1810,0,0,0,0,0,0,0,0,0,0, 0,0,0,1810,1810,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,218,0,218,0,0,0,0,0,0,0, 0,0,0,0,0,0,219,0,219,0,0,0,0,0,0,0, 0,0,0,0,0,0,219,0,219,0,0,0,0,0,0,0, 0,0,0,0,0,0,219,0,331,0,0,0,0,0,0,0, 0,0,0,218,218,0,331,0,0,0,0,0,0,0,0,0, 0,0,0,331,331,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,218,218,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,219,219,0,0,0,0,3842,0,0,0,0, 0,0,0,0,0,219,219,218,0,99,100,3955,0,0,0,0, 0,0,0,0,218,331,331,219,218,212,213,0,0,0,0,0, 0,0,0,218,219,0,0,331,331,438,439,99,100,99,100,99, 0,0,0,219,331,0,0,212,213,212,213,212,213,212,213,212, 0,0,0,331,0,0,0,438,439,438,439,438,439,438,439,438 0,0,0,0,0,219,219,219,0,0,0,0,0,0,0,0, 0,0,0,0,0,331,331,331,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,218,218,218,0,0,0,0,0,0,0,0, 3842,0,0,0,0,331,219,219,0,0,0,0,0,0,0,0, 3955,0,0,0,0,0,331,331,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,218,218,218,218,0,0,0,0,0,0,0,0, 0,0,0,0,331,219,219,219,0,0,0,0,0,0,0,0, 0,0,0,0,0,219,219,219,0,0,0,0,0,0,0,0, 0,0,0,0,0,219,219,219,0,0,0,0,0,0,0,0, 0,0,0,0,0,331,331,219,0,0,0,0,0,0,0,0, 0,0,0,0,0,212,213,219,0,0,0,0,0,0,0,0, 100,99,100,99,100,438,439,331,0,0,0,0,0,0,0,0, 213,212,213,212,213,212,213,212,213,0,0,0,0,0,0,0, 439,438,439,438,439,438,439,438,439,0,0,0,0,0,0,0 ================================================ FILE: maps/hoenn/hoenn-safari-zone-neacro-bike-area.tmx ================================================ 114,0,0,0,0,116,116,116,116,116,116,0,116,116,116,116, 114,114,114,114,114,0,2605,2605,2605,0,116,116,116,116,116,116, 114,114,114,114,114,114,2605,2605,2605,2605,2605,116,116,116,116,116, 114,114,114,114,114,114,114,2605,2605,2605,2605,116,116,116,116,116, 114,114,114,114,114,114,114,114,2605,2605,2605,2605,116,116,116,116, 114,114,114,114,114,114,114,114,114,2605,2605,2605,116,116,116,116, 114,114,114,114,114,114,114,114,114,2605,2605,2605,116,116,116,116, 114,114,114,114,114,114,114,114,114,114,114,2605,116,116,116,116, 114,114,116,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,116,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,116,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,116,114,114,116,114,114,114,114, 114,114,116,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114 230,341,229,229,342,0,228,229,229,229,229,342,0,0,115,0, 229,230,95,95,228,229,229,229,229,342,0,228,342,0,115,0, 0,0,95,95,0,2717,0,0,0,228,342,0,115,0,228,342, 0,95,95,95,0,0,2604,0,0,0,115,0,115,0,0,115, 0,95,95,0,0,0,2717,2718,0,0,228,342,115,0,0,228, 0,95,95,0,0,0,0,0,2604,0,0,115,115,0,0,0, 0,0,0,0,0,0,0,0,2717,0,0,115,228,342,0,0, 0,0,2,3,3,3,3,4,0,2717,2718,115,0,228,229,229, 0,2,3,2830,2831,2832,0,117,0,0,0,115,341,229,229,342, 0,115,0,0,341,229,229,230,0,0,0,115,117,0,0,115, 0,228,342,0,117,0,0,0,95,95,95,115,117,0,0,115, 0,0,115,0,3,3,4,95,95,0,95,115,117,0,0,228, 0,0,115,95,0,0,3,3,4,95,95,115,117,0,0,0, 0,0,115,95,95,0,0,0,3,3,3,3,117,0,0,0, 0,2,3,95,0,0,0,0,0,0,0,0,117,0,0,0, 2,3,0,95,0,0,0,0,0,0,0,341,230,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,1810,1810,1810,1810,0,0,0,0,0,0,0,0,0, 0,0,1810,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,1810,1810,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,1810,1810,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,1810,1810,1810,1810,0,0,0,0, 0,0,1810,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,1810,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 218,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,331,0,0,0,0,0,907,0,0,0,0,0,0,0,0, 219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 331,0,0,0,0,0,0,0,0,0,907,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,1468,0,0,0,0,0,0,218,218,0, 0,0,0,0,0,0,1581,0,0,0,0,0,0,219,219,0, 0,0,0,0,0,0,1694,0,0,3842,0,0,0,219,219,0, 0,0,0,0,0,0,0,0,0,3955,0,0,0,219,219,218, 218,0,0,0,0,0,0,0,0,0,0,218,0,219,219,219, 219,0,0,0,0,218,218,0,0,0,218,219,0,219,219,219, 331,218,95,0,218,219,219,0,0,218,219,331,0,219,219,219, 0,219,218,0,331,331,331,0,0,219,219,0,218,219,219,219 ================================================ FILE: maps/hoenn/hoenn-safari-zone-nwmach-bike-area.tmx ================================================ 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,4184,4184,4184,4184,4184,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,4184,4184,4184,4184,4184,4184,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,4184,4184,4184,4184,4184,4184,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114 0,2,3,3,0,0,0,0,0,0,0,228,229,229,229,229,229,229,229,229,229,229,229, 0,115,0,0,0,0,0,0,0,0,0,341,229,229,229,229,229,229,229,229,229,229,229, 0,115,0,95,95,95,95,0,0,0,0,117,0,0,0,4409,4410,4410,4410,4411,0,0,0, 0,115,0,95,0,95,95,0,0,0,0,117,0,0,0,4522,0,0,0,4637,4411,0,0, 0,115,0,95,95,95,0,0,0,0,0,117,0,0,0,4522,0,0,0,0,4524,0,0, 0,115,0,95,95,0,2491,2493,341,229,229,230,0,0,0,4636,4636,4636,4636,4636,4636,95,0, 0,115,0,0,0,0,2604,2719,117,95,95,95,0,0,0,0,2491,2493,95,95,95,95,0, 0,115,0,0,0,0,3171,0,117,95,95,95,95,95,0,2491,2605,2719,95,0,95,95,0, 0,115,0,0,0,0,0,0,3,3,4,0,95,95,0,2717,2719,0,0,95,95,95,0, 0,115,2,3,4,0,95,0,0,0,3,3,4,0,0,0,0,0,0,0,0,0,0, 0,115,115,0,117,95,95,95,0,0,0,0,3,3,4,0,0,0,0,0,0,0,0, 0,115,115,0,117,95,95,95,95,0,2830,2493,0,0,117,0,0,0,95,95,95,0,0, 0,115,115,0,3,3,3,3,3,4,0,3058,0,0,117,95,95,95,95,95,95,0,0, 0,115,115,95,95,95,0,93,0,117,0,3171,0,0,117,95,0,95,95,95,95,0,0, 0,115,115,95,95,95,0,341,229,230,0,0,0,0,117,95,95,95,95,95,0,0,0, 0,115,115,0,0,0,0,117,0,0,0,341,229,229,230,0,0,0,0,0,0,0,0 0,0,1810,1810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,1348,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,1810,1810,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,1810,1810,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,1810,1810,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,1810,1810,1810,1810,1810,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,1348,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,1348,0,0,0,0,0,0,0,0,0,0 219,0,218,218,218,218,218,218,218,218,218,0,0,0,0,0,0,0,0,0,0,0,0, 219,0,219,331,331,331,331,219,219,219,219,0,218,218,218,0,0,0,0,0,0,218,218, 219,0,219,0,3842,0,0,331,331,331,219,0,331,219,219,0,0,0,0,0,0,219,219, 219,0,219,0,3955,0,0,0,0,0,331,0,907,331,219,0,0,0,0,0,0,219,219, 219,0,219,0,0,0,0,0,0,0,0,0,0,0,331,0,0,0,0,0,0,331,219, 219,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219, 219,0,219,218,218,0,0,0,0,0,0,0,0,0,0,0,0,907,0,3842,0,0,219, 219,0,219,219,219,218,0,0,0,0,0,0,0,0,218,0,0,0,0,3955,0,0,219, 219,0,331,331,331,331,0,0,0,0,218,218,0,0,331,218,907,0,0,0,0,0,219, 219,0,0,218,0,907,0,0,0,0,331,331,0,0,0,331,0,0,0,0,0,218,219, 219,0,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219, 219,0,0,219,218,0,0,0,0,0,0,0,0,218,0,0,0,0,0,0,0,219,219, 219,0,0,331,331,0,0,0,0,0,218,0,907,219,0,0,3842,0,0,0,0,219,219, 219,0,0,0,0,0,0,0,0,0,331,0,0,219,0,0,3955,0,0,0,0,219,219, 219,0,0,0,0,0,0,0,0,0,0,0,0,331,0,0,0,0,0,0,218,219,219, 219,0,0,218,218,0,0,0,0,0,0,0,0,0,0,218,218,218,218,218,219,219,219 ================================================ FILE: maps/hoenn/hoenn-safari-zone-se.tmx ================================================ 0,114,114,114,114,114,0,0,0,0,114,114,114,114,114,114, 0,114,114,114,114,114,0,0,0,0,114,114,114,114,114,114, 0,114,114,114,114,114,0,0,0,0,114,114,114,114,114,114, 0,0,0,114,114,114,0,0,0,0,114,114,114,114,114,114, 0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114 114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,0,114,114,0, 114,114,114,114,114,114,114,114,114,114,114,114,0,114,114,0, 114,114,114,114,114,114,114,114,114,114,114,114,0,114,114,0, 114,114,114,114,114,114,114,114,114,114,114,114,0,114,114,0, 114,114,114,114,114,114,114,114,114,114,114,114,0,114,114,0, 114,114,114,114,114,114,114,114,114,114,114,114,0,114,114,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0, 114,114,114,114,114,114,114,114,114,114,114,114,0,114,114,0, 114,114,114,114,114,114,114,114,114,114,114,114,0,114,114,0 0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,341, 0,0,0,0,0,0,0,0,0,0,0,0,115,0,0,117, 0,1132,1020,1020,1133,0,0,0,0,0,0,95,115,0,0,117, 0,0,0,0,0,0,0,0,0,0,95,95,228,229,229,230, 0,0,0,0,0,2488,2489,2490,0,0,95,95,95,95,0,0, 0,0,0,0,2827,2715,2602,2716,0,0,0,95,95,95,0,0, 0,0,0,0,0,0,3168,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,2942,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,2714,2829, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,95,95, 0,0,0,0,0,0,0,0,0,0,0,0,2942,95,95,95, 0,0,0,0,0,0,0,0,0,0,0,0,3055,95,95,0, 0,0,0,0,0,0,0,0,0,0,95,95,2714,2490,95,95, 0,0,0,0,0,0,0,0,0,95,95,0,0,2714,2828,2829, 0,0,0,0,0,0,0,2827,2828,2829,0,0,0,0,0,0 229,229,342,0,0,0,0,117,0,0,0,0,0,0,0,0, 0,0,115,0,0,341,229,230,0,0,0,0,0,0,0,0, 0,0,228,229,229,230,95,95,0,0,0,0,0,0,0,0, 0,0,0,0,95,95,95,95,0,0,0,0,0,0,0,0, 0,0,2827,2829,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 95,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,219,219,0,0,0,0,219,219,0,331,331,0, 0,0,0,0,331,331,0,0,0,0,219,331,0,907,0,0, 0,0,0,0,0,907,0,0,0,0,331,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,1348,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,218,0,0,0,0,0, 0,0,0,0,0,0,0,0,218,218,219,218,0,0,0,218, 0,0,0,0,0,0,0,218,219,219,219,331,0,218,0,331, 0,0,0,0,0,0,0,331,219,219,331,907,0,219,0,0, 0,0,0,0,0,0,0,907,331,331,0,0,218,331,0,0, 0,0,0,0,0,0,0,0,0,0,0,218,331,0,0,0, 0,0,0,0,0,0,0,0,0,218,218,219,0,0,0,3842, 0,0,0,0,0,0,0,0,218,219,331,331,0,0,0,3955, 0,0,0,0,0,0,0,218,331,331,0,0,0,0,0,0, 0,0,0,0,0,0,0,331,0,0,0,218,218,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,331,331,0,0,0 0,1469,0,0,0,331,331,0,219,219,219,219,0,0,0,0, 1469,1695,0,0,0,0,0,0,219,219,219,219,0,0,0,0, 1695,218,218,0,0,0,0,0,219,219,219,219,0,0,0,0, 0,331,331,0,0,0,0,0,331,331,331,331,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 218,2778,2779,2779,2779,2779,2779,2779,2779,2779,2779,2779,2783,99,100,0, 219,2891,2892,2892,2892,2892,2892,2892,2892,2892,2892,2892,2896,212,213,0, 219,3004,3005,3005,3005,3005,3005,3005,2892,2892,2892,2892,2896,438,439,0, 331,3117,3118,3119,3120,3126,3125,3126,2891,2892,2892,2892,2896,212,213,0, 0,3230,3231,3232,3233,3234,3234,3234,2891,2892,2892,2892,2896,438,439,0, 0,0,0,0,212,213,212,213,2891,2892,2892,2892,2896,212,213,0, 0,0,0,0,438,439,438,439,2891,2892,2892,2892,2896,438,439,0, 0,0,212,213,212,213,212,213,2891,2892,2892,2892,2896,212,213,0, 0,0,438,439,438,439,438,439,2891,2892,2892,2892,2896,438,439,0, 212,213,212,213,212,213,212,213,2891,2892,2892,2892,2896,212,213,0, 438,439,438,439,438,439,438,439,2891,2892,2892,2892,2896,438,439,0 ================================================ FILE: maps/hoenn/hoenn-safari-zone-sw.tmx ================================================ 114,114,0,114,114,114,114,114,114,114,0,114,0,0,0,0, 114,114,114,0,0,0,114,114,114,114,114,114,0,0,0,0, 114,0,114,114,0,0,114,114,114,114,114,114,0,0,0,0, 114,0,0,0,0,114,114,114,114,114,114,114,114,114,0,0, 114,0,0,0,0,114,114,114,114,114,114,114,114,114,0,0, 114,0,0,0,0,114,114,114,114,114,114,114,114,114,0,0, 114,0,0,0,0,114,114,114,114,114,0,0,0,114,114,0, 114,0,0,0,0,114,114,114,114,114,4184,4184,4184,114,114,0, 114,0,0,0,0,114,114,114,114,114,4184,4184,4184,114,114,0, 114,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114, 114,0,0,0,0,114,114,114,114,114,114,0,0,114,114,114, 114,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114, 114,114,0,0,0,114,114,114,114,114,114,114,114,114,114,114, 0,114,114,0,0,114,4184,4184,4184,4184,114,114,114,114,114,114, 114,114,116,116,114,0,4184,4184,4184,4184,114,114,114,114,114,114, 114,114,114,114,0,0,4184,4184,4184,4184,114,114,114,114,114,114 0,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0, 0,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0, 0,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0, 0,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,115,115,0,0,0,341,230,0,341,229,230,0,0,0,0, 0,115,115,341,229,229,230,341,229,230,0,0,0,0,0,0, 0,115,115,117,341,229,229,230,0,0,0,0,0,0,0,0, 0,115,115,117,117,0,95,95,0,0,0,0,0,0,0,0, 0,115,115,117,117,0,95,95,0,0,0,0,0,0,0,0, 0,115,115,117,117,0,95,95,0,0,0,0,0,0,0,0, 0,115,115,117,117,0,95,0,0,2,3,3,3,3,4,0, 0,115,115,117,117,0,0,4070,4072,115,4409,4410,4411,0,117,0, 0,115,115,117,117,0,0,4296,4298,115,4522,0,4524,0,117,0, 0,115,115,117,117,0,0,0,95,115,4636,4636,4636,341,230,0, 0,115,115,117,117,0,0,95,95,228,229,229,229,230,0,0, 2,3,115,117,117,0,0,95,95,95,95,0,793,0,0,0, 115,0,115,117,117,0,0,0,0,95,95,0,1019,1133,0,95, 3,0,115,117,3,4,4409,4410,4410,4411,0,0,0,0,0,95, 3,3,3,3,4,117,4522,0,0,4524,0,0,0,0,0,0, 0,0,0,0,117,117,4522,0,0,4524,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 95,95,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,1810,1810,1810,1810,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,1348,0,0,0,0, 0,1810,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1810,0,0,0,1810,0,0,0,0,0,0,0,0,0,0,0, 1810,1810,1810,1810,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,331,331,331,331,0,0 219,0,0,331,331,0,0,0,0,0,218,0,0,0,0,0, 219,0,0,0,0,0,0,0,0,218,219,0,0,0,0,0, 219,0,0,0,0,218,0,0,0,219,219,218,0,0,0,0, 219,0,0,0,0,219,0,0,0,219,219,219,0,0,0,0, 219,0,0,0,0,219,0,0,0,331,219,219,218,218,0,0, 219,0,0,0,0,219,0,0,0,0,219,219,219,219,0,0, 219,0,0,0,0,219,0,0,0,0,0,0,0,0,0,0, 219,0,0,0,0,219,218,0,0,0,0,3842,0,0,0,0, 219,0,0,0,0,219,219,0,0,0,0,3955,0,0,0,0, 219,0,0,0,0,219,219,0,0,0,0,0,0,0,0,0, 331,218,0,0,0,219,331,0,0,0,0,0,0,0,0,218, 0,219,0,0,0,219,0,0,0,0,0,0,0,0,218,331, 0,331,0,0,218,331,0,0,0,0,0,0,0,0,331,0, 0,0,0,0,331,0,0,0,0,0,0,0,0,0,0,0, 218,218,218,218,0,0,0,0,0,0,218,218,218,218,0,0, 219,219,219,219,0,0,99,100,99,100,99,100,99,100,99,100 0,927,928,928,931,0,0,0,0,0,0,0,0,0,0,0, 0,1040,1041,1041,1044,0,0,0,0,0,0,0,0,0,0,0, 0,1153,1154,1156,1157,0,0,0,0,0,0,0,0,0,0,0, 0,1266,1267,1269,1270,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 218,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 331,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ================================================ FILE: maps/hoenn/lavaridge-town.tmx ================================================ 125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125,125, 0,0,125,125,125,125,125,125,125,125,125,0,0,0,0,0,0,0,125,0, 0,0,0,0,0,0,0,0,0,0,125,125,125,125,125,125,125,125,125,0, 0,114,4061,4061,4061,4061,114,114,114,114,0,0,0,0,0,0,0,0,0,0, 0,114,4061,4061,4061,4061,4061,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,114,114,4061,4061,4061,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 125,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 125,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 125,125,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 125,125,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 125,125,125,125,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,125 238,238,239,0,350,238,238,238,238,238,351,0,0,0,0,0,0,0,0,0, 350,238,238,238,239,0,4288,4288,4288,4288,237,238,238,238,238,238,238,238,238,238, 126,350,238,238,238,238,238,238,238,4287,351,0,0,0,0,0,0,0,0,0, 126,126,0,0,0,0,0,0,0,0,237,238,238,238,238,238,238,238,238,238, 126,126,0,0,0,0,0,0,0,0,0,0,659,659,0,0,0,0,0,0, 126,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 126,126,0,0,0,0,0,0,0,0,0,0,0,0,659,2604,2606,0,0,0, 126,126,2944,2944,2944,2944,2944,2945,0,2604,2606,0,659,659,0,2604,2606,0,0,0, 126,126,2944,2944,2944,0,3170,1816,0,2604,2606,0,0,0,0,2604,2606,0,0,0, 126,126,2944,2944,2944,0,2945,0,0,2604,2605,2492,2492,2492,2492,2605,2605,2492,2492,2492, 126,126,1815,1815,1815,1815,1816,0,0,2717,2718,2718,2718,2718,2718,2718,2718,2718,2718,2718, 126,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 126,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 126,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 126,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 126,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 126,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 12,12,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,126,13,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 13,0,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,331, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218, 0,0,3719,3720,3720,3720,3721,3722,0,0,0,0,0,0,27,28,28,30,0,331, 0,0,3832,0,0,0,3947,3835,23,24,25,26,0,0,140,141,142,143,218,218, 0,0,3832,0,0,0,0,3835,136,137,138,139,99,100,253,254,255,256,219,219, 0,0,3832,3833,0,0,3834,3835,249,250,251,252,212,213,362,363,368,369,219,219, 0,0,3945,3946,3946,3946,3946,3948,362,363,364,365,325,326,0,0,0,0,331,331, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,3836,0,3836,0,0,0,0,0,0,0,205,0,0,0,0,0,0, 0,0,0,3949,0,3949,0,0,0,0,0,0,0,0,0,0,0,0,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,32,32,32,36,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,144,145,145,145,145,149,0,0,0,927,928,928,931,927,928,928,931,0, 0,0,257,258,259,145,261,262,0,0,0,1040,1041,1041,1044,1040,1041,1041,1044,218, 0,0,370,371,372,373,374,376,0,0,0,1153,1154,1155,1157,1153,1154,1155,1157,219, 0,0,483,484,485,486,487,489,0,0,0,1266,1267,1268,1270,1266,1267,1268,1270,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,0,0,0,0,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,219, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,331,331, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ================================================ FILE: maps/hoenn/lilycove-city.tmx ================================================ 114,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,116,116,116,116,116,116,116,4975,4975,4975,4975,4975,0, 114,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,116,116,116,116,116,116,116,4975,4975,4975,4975,4975,0, 114,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,0,116,116,116,116,116,116,4975,4975,4975,4975,4975,0, 114,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,0,116,116,116,116,116,116,4975,4975,4975,4975,4975,0, 114,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,4975,116,116,116,116,116,116,4975,4975,4975,4975,0,0, 114,114,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,4975,4975,4975,4975,4975,4975,4975,116,116,4975,4975,0,0,0,0,0,0,4975,4975,4975,4975,0,0, 114,114,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,4975,4975,4975,4975,4975,4975,116,116,4975,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,4978,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,4978,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,4978,4978,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,114,4978,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,4978,4978,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,4978,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,4978,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,4978,4978,4978,4975,4975,4975,4975,0,0,0,0,4975,4975,4975,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,4978,4978,4978,4978,4978,4978,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,4978,4978,4978,4978,4978,4978,4975,4975,4975,0,4975,4975,4975,4975,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,4978,4978,4978,4978,4978,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,4978,4978,4978,4978,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,4978,0,4978,4978,4978,4978,4978,4978,4978,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0, 0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,4978,4978,4978,4978,4978,4978,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0, 0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,4978,4978,4978,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,0,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,4978,4978,4978,4978,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,4978,4978,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,4978,4978,4975,4975,4975,4975,4975,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,4978,4978,4978,4978,4975,4975,4975,4975,4975,4975,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4975,4975,4975,4975,4975,4975,0,0,0,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0, 0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0, 0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4975,4975,4975,4975,0,0,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4975,4975,4975,4975,0,0,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,116,0,0,0,0,4978,4978,4978,4978,4978,4978,4975,4975,4975,4975,4975,0,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,116,0,0,0,0,4978,4978,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 115,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,117,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4861,5313,115,115,228,342,0,0,117,117,117,0,0,0,0,4976, 115,115,0,0,0,2,3,3,3,3,3,3,3,3,3,3,3,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,117,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4861,4862,5313,0,115,228,342,115,0,0,117,117,117,0,0,0,0,4976, 115,115,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,3,3,3,3,3,3,3,3,3,3,4,0,0,0,0,0,0,0,0,0,0,4861,4862,5313,0,0,0,228,342,115,115,0,0,117,117,117,0,0,0,0,4976, 115,115,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,3,4,0,0,0,0,4861,4862,5313,0,0,0,0,0,0,115,115,228,229,229,230,117,117,0,0,0,0,4976, 115,228,342,0,0,115,659,0,0,0,0,0,0,0,0,0,0,659,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,4862,4862,5313,0,0,0,0,0,2,4,0,115,228,229,229,229,229,230,117,0,0,0,5427,5089, 228,342,115,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,4,0,0,0,0,0,2,115,117,4,228,229,229,229,229,229,229,230,0,0,0,4976,0, 0,115,228,342,0,115,659,0,0,0,0,0,0,0,0,0,0,659,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,117,4,0,0,0,0,115,228,230,117,5427,5088,5089,0,5087,5088,5088,5088,5088,5088,5088,5089,0, 0,228,342,115,0,228,229,229,229,229,342,0,0,341,229,229,229,229,230,0,0,0,0,0,0,0,1706,1706,1706,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,117,117,0,0,0,0,228,229,229,230,4976,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,115,228,229,229,229,342,1706,1706,228,229,229,230,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,0,0,0,0,0,0,0,0,0,0,0,0,117,117,117,0,0,0,0,0,0,0,5427,5089,0,0,0,0,0,0,0,2,4,0,0,0, 0,0,115,0,0,0,0,115,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,0,0,1245,1020,1020,1020,1020,1020,1020,1020,1246,0,117,117,117,4869,0,0,0,0,5427,5088,5089,0,0,0,0,0,0,4861,4862,115,117,4862,4863,0, 0,0,228,229,229,229,342,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1706,1706,0,341,229,229,229,229,229,229,229,229,229,342,0,908,0,0,0,0,0,0,0,906,0,117,117,117,5317,4869,0,5427,5088,5089,0,0,0,0,0,0,0,0,4974,115,228,230,117,4976,0, 0,0,0,0,0,0,115,228,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,230,341,229,229,229,229,229,229,342,0,228,229,229,1020,1020,1020,1020,1020,1020,1020,1020,229,230,117,3,4,4979,0,4976,0,0,0,0,0,0,0,0,0,0,4974,228,229,229,230,4976,0, 0,0,0,0,0,0,228,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,230,659,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,4,117,5317,4869,4976,0,0,0,0,0,0,0,0,0,0,5087,5088,5088,5088,5088,5089,0, 0,0,0,0,0,0,0,0,659,659,659,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1706,1706,0,659,659,659,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,3,4,4979,4976,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1706,1706,0,0,0,0,0,0,0,0,0,115,0,0,1245,1020,1020,1020,1246,0,0,0,0,0,0,0,0,117,0,117,4979,5314,4862,4863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1706,1706,1706,0,0,0,0,1706,1706,1706,1706,0,0,0,0,1706,1706,1706,0,115,0,0,908,0,0,0,906,0,0,0,0,0,0,0,0,117,0,117,5317,4868,4869,5314,4862,4862,4863,0,0,4861,4862,4862,4862,4863,0,0,0,0,0, 0,0,0,0,0,0,0,0,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,0,228,229,229,229,0,0,0,906,0,0,0,0,0,0,0,0,117,0,117,0,0,5317,4868,4868,4869,5314,4862,4862,5313,0,0,0,4976,0,0,0,0,0, 0,0,0,0,0,0,0,0,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,0,0,0,0,0,906,0,0,1019,1020,1020,1246,0,0,0,0,0,117,0,117,0,0,0,0,0,4979,0,4867,4868,4869,0,0,0,4976,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1706,1706,1706,1706,0,0,0,0,0,0,0,0,0,0,0,0,906,0,0,0,0,0,906,0,0,0,0,0,117,0,117,0,0,0,0,0,4979,0,4977,4978,4979,0,0,0,4976,0,0,0,2,4, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1706,1706,0,0,0,0,0,0,0,0,0,0,0,0,0,906,0,0,0,0,0,906,0,0,0,0,0,117,0,117,0,0,0,0,5430,5092,0,5090,5091,5092,0,0,5427,5089,0,0,0,228,230, 0,0,0,0,0,0,0,0,659,659,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1706,1706,0,0,0,0,0,0,0,0,0,0,0,0,0,1019,1020,1020,1020,1020,1020,1020,229,229,229,229,229,230,341,230,0,0,5430,5091,5092,0,0,0,0,0,0,0,4976,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,659,659,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1706,1706,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,229,229,229,229,229,229,230,0,5430,5091,5092,0,0,0,0,0,0,0,5427,5088,5089,0,0,2,4,0,0, 229,229,342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,659,0,0,0,0,0,0,0,0,0,0,0,659,0,1706,1706,0,0,0,0,0,0,0,0,0,659,659,659,0,0,0,0,0,0,0,117,0,0,0,0,0,5430,5091,5091,5092,0,4867,4868,4868,4869,0,0,0,5427,5089,0,0,0,0,228,230,0,0, 4410,4410,115,0,0,0,0,0,0,0,1706,1706,1706,0,0,0,0,659,0,0,0,0,0,0,0,0,0,0,0,659,0,1706,1706,0,0,0,0,0,0,0,0,0,659,659,659,0,0,0,0,0,0,0,117,0,0,5430,5091,5091,5092,0,0,4867,4868,5316,4978,4978,4979,0,0,5427,5089,0,0,0,0,0,0,0,0,0, 0,0,115,0,0,0,0,0,0,1706,1706,1706,1706,0,0,0,0,659,0,0,0,0,0,0,0,0,0,0,0,0,0,1706,1706,0,0,0,0,0,0,0,0,0,659,659,659,0,0,0,0,341,229,229,230,5430,5091,5092,0,0,0,0,0,4977,4978,4978,4978,5430,5092,0,0,4976,0,0,0,0,0,0,0,0,0,0, 0,0,115,0,0,0,0,0,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,0,0,0,0,0,117,0,5430,5091,5092,0,4867,4868,4868,4868,4869,0,5090,5091,5091,5091,5092,0,0,0,4976,0,0,0,0,2,4,0,0,0,0, 0,0,115,0,0,0,0,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,1706,0,0,0,0,0,117,0,4979,0,0,0,4977,4978,4978,4978,5317,4869,0,0,0,0,0,0,0,0,4976,0,0,0,0,228,230,0,0,0,0, 0,0,115,0,0,0,0,1706,1706,0,0,0,0,0,0,0,0,0,0,0,0,659,659,659,659,659,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,229,229,229,229,230,0,4979,0,0,0,5090,5429,4978,4978,4978,5317,4868,4869,0,0,0,0,0,5427,5089,0,0,0,0,0,2,4,0,0,0, 0,0,115,0,0,0,0,1706,1706,0,0,0,0,0,0,341,229,229,229,229,229,229,229,229,229,342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,229,229,229,230,0,0,0,0,0,5430,5092,0,0,0,4867,5316,4978,4978,4978,4978,4978,4979,0,0,0,0,5427,5089,0,0,0,0,0,0,228,230,0,0,0, 0,0,115,0,0,0,0,1706,1706,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,228,229,342,0,0,0,0,0,0,341,229,229,229,229,229,230,0,0,0,0,0,0,0,0,0,4979,0,0,0,0,4977,4978,4978,4978,5430,5091,5091,5092,0,0,5427,5088,5089,0,0,0,0,0,2,3,4,0,0,0,0, 0,0,228,342,0,0,0,1706,1706,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,5430,5091,5092,0,0,0,0,5090,5091,5091,5091,5092,0,0,0,0,0,4976,0,0,0,0,0,0,0,115,0,117,0,0,0,0, 0,0,0,115,0,0,0,1706,1706,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,5430,5092,0,4867,4868,4868,4869,0,0,0,0,0,0,0,0,0,0,0,4976,0,0,0,0,0,0,0,115,0,117,0,0,0,0, 0,0,0,115,0,0,0,1706,1706,0,0,0,0,0,0,3,3,3,4,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,4979,0,0,4977,4978,4978,4979,0,0,0,0,0,0,0,0,0,0,0,4976,0,0,0,0,0,0,0,228,229,230,0,0,0,0, 0,0,0,115,0,0,0,1706,1706,1706,1706,1706,1706,1706,1706,0,0,0,117,0,0,0,0,0,0,0,0,228,229,342,0,0,0,0,3,3,4,0,0,0,0,0,0,0,0,0,0,4979,0,0,4977,4978,4978,4979,0,0,0,0,0,0,0,0,0,0,0,4976,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,115,0,0,0,0,1706,1706,1706,1706,1706,1706,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,3,3,3,3,3,4,0,0,0,0,0,5317,4869,0,5090,5429,4978,4979,0,0,0,0,2,3,3,3,3,3,5088,5089,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,228,229,342,0,0,0,0,0,0,0,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,228,342,0,0,0,0,0,0,0,0,0,0,3,3,3,3,3,3,4,4979,0,0,5090,5091,5092,0,0,0,0,115,0,0,0,0,0,117,0,0,0,0,0,0,2,4,0,0,0,0,0,0,0, 0,0,0,0,0,228,229,229,342,0,0,0,0,0,341,229,229,229,230,0,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,3,3,3,3,3,3,3,3,3,0,0,0,0,0,117,0,0,0,0,0,0,228,230,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,228,229,229,229,229,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,229,229,342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,229,229,229,229,229,342,0,0,0,0,0,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,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,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,230,0,0,0,0,0,228,229,229,229,229,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,1810,1810,1810,1810,1810,1810,1810,1810,1810,1810,1810,1810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1810,1810,1810,1810,1810,1810,1810,1810,1810,1810,1810,1810,1810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1810,1810,1810,1810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1810,1810,1810,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,4,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1810,1810,1810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1810,1810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1810,1810,1810,1810,1810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1810,1810,1810,1810,1810,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1810,1810,1810,1810,1810,1810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1810,1810,1810,1810,1810,1810,1810,1810,1810,1810,1810,1810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,212,213,325,326,325,326,0,2656,2657,2657,2657,2657,2661,0,0,0,0,438,439,438,439,2575,2581,2582,2577,2576,2577,2581,2582,2583,438,439,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,325,552,0,0,0,0,0,2769,2994,2994,2994,2994,2774,0,0,0,0,212,213,212,213,2575,2577,2577,2577,2577,2577,2577,2577,2583,212,213,438,439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,212,213,0,0,2880,2881,2882,2883,2883,2883,2883,2887,2881,2889,0,0,438,439,438,439,2575,2581,2582,2577,2576,2577,2581,2582,2583,438,439,212,213,0,0,0,99,100,0,0,0,0,99,100,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,438,439,0,0,2993,2994,2995,2996,2997,2998,2996,3000,2994,3002,0,0,212,213,212,213,2575,2577,2577,2577,2577,2577,2577,2577,2583,212,213,325,2283,2284,2284,2286,212,213,2283,2284,2284,2286,212,213,212,213,99,100,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,212,213,0,0,3106,2883,2883,2883,2883,2883,2883,2883,2883,3115,0,0,325,326,325,326,2575,2581,2582,2578,2579,2580,2581,2582,2583,325,326,0,2396,2397,2397,2399,438,439,2396,2397,2397,2399,438,439,438,439,212,213,212,213,0,0,0,0,0,0,0,0,429,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,325,326,0,0,3219,3220,3226,3222,3223,3223,3225,3226,3227,3228,0,0,1449,1450,1450,1450,2688,2689,2690,2691,2692,2693,2694,2695,2696,1450,1450,1451,2509,2510,2511,2512,212,213,2509,2510,2511,2512,212,213,212,213,325,326,325,326,0,0,0,0,0,0,0,429,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,3332,3339,3339,3335,3336,3336,3338,3339,3339,3341,0,0,0,0,0,0,2801,2802,2803,2804,2805,2806,2807,2808,2809,0,0,205,2622,2623,2624,2625,325,326,2622,2623,2624,2625,325,326,325,326,0,0,0,0,0,0,0,0,0,0,429,0,0,0,0,0,0,0,0,0,0,0,0,0,0,202,203,202,203,0,0, 0,0,0,0,0,0,0,0,0,0,3448,3449,3449,3451,0,0,0,0,0,205,0,0,0,0,0,0,0,0,0,205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,429,0,0,0,0,0,0,0,0,0,0,0,0,315,316,315,316,202,203, 99,100,0,0,0,0,0,0,0,0,3561,3449,3449,3564,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316, 212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 438,439,0,0,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 212,213,212,213,212,213,0,0,0,0,0,2283,2284,2284,2286,0,0,0,0,0,0,0,0,23,24,25,26,0,0,0,0,0,0,0,0,0,0,2283,2284,2284,2284,2286,0,0,0,0,0,0,0,0,0,0,0,0,2283,2284,2284,2286,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 438,439,438,439,438,439,99,100,0,0,0,2396,2397,2397,2399,0,0,0,0,0,0,0,0,136,137,138,139,0,0,0,0,0,0,0,0,0,0,2396,2397,2397,2397,2399,0,0,0,0,0,0,0,0,0,0,0,0,2396,2397,2397,2399,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 212,213,212,213,212,213,212,213,0,0,0,2509,2510,2511,2512,0,0,0,0,0,0,0,0,249,250,251,252,0,0,0,1564,0,0,1562,0,0,0,2513,2514,2510,2511,2512,0,0,0,0,0,0,0,0,0,0,0,0,2509,2510,2511,2512,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 325,326,325,326,325,326,325,326,1449,1450,1451,2622,2623,2624,2625,1449,1450,1450,1450,1450,1450,1450,1451,362,363,364,365,1449,1450,1450,1451,0,0,1449,1450,1450,205,2626,2627,2623,2624,2625,0,0,0,0,0,0,0,0,0,0,0,0,2622,2623,2624,2625,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 99,100,99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,39,39,39,39,39,43,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 438,439,438,439,99,100,99,100,1449,1450,2283,2284,2284,2286,1450,1450,1450,1450,1450,1450,151,152,152,152,152,152,156,1450,1450,1451,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0, 212,213,212,213,212,213,212,213,0,0,2396,2397,2397,2399,0,0,0,0,99,100,151,152,152,152,152,152,156,99,100,0,0,0,0,0,0,0,0,4336,4339,4339,4340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0, 325,326,325,552,551,552,551,326,0,0,2509,2510,2511,2512,0,0,0,0,212,213,151,152,152,152,152,152,156,212,213,0,0,0,0,0,0,0,4336,4337,4452,4452,4338,4340,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,212,213,212,213,0,0,0,2622,2623,2624,2625,0,0,0,0,438,439,264,265,265,265,265,265,269,438,439,0,0,0,0,0,0,0,4449,4450,4454,4454,4451,4453,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,438,439,438,439,0,0,0,0,0,0,0,0,0,0,0,212,213,377,378,379,380,381,378,382,212,213,0,0,0,0,0,0,0,4562,4563,4564,4565,4565,4566,0,0,0,0,0,0,0,0,0,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,203,0,0,0, 0,0,0,212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,325,326,490,491,492,493,494,491,495,325,326,205,0,0,0,0,0,205,4675,4676,4677,4678,4678,4679,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0, 0,0,0,438,439,438,439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,438,439,438,439,0,0,2909,2910,2910,2910,2910,2910,2915,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,212,213,212,213,0,0,3022,3023,3023,3023,3023,3023,3028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,325,552,551,326,0,0,3022,3023,3023,3023,3023,3023,3028,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,212,213,0,0,0,3135,3136,3136,3136,3136,3136,3141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,325,326,0,0,0,3248,3249,3250,3251,3252,3253,3254,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,3361,3362,3363,3364,3365,3362,3367,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,907,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3841,0,0,0,0,0,0,0,0,0,0,202,203,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,429,0,0,0,0,3954,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,315,316,202,203,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,315,316,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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: maps/hoenn/littleroot-town.tmx ================================================ 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114 212,213,212,213,212,213,212,213,212,213,0,0,212,213,212,213,212,213,212,213, 438,439,325,326,325,326,325,326,325,326,0,0,325,326,325,326,325,326,438,439, 212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213, 325,326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,325,326, 0,0,2735,2736,2736,2736,2741,0,0,0,0,0,0,2735,2736,2736,2736,2741,0,0, 0,0,2848,2849,2849,2849,2854,0,0,0,0,0,0,2848,2849,2849,2849,2854,0,0, 0,0,2961,2962,2962,2962,2967,0,0,0,0,0,0,2961,2962,2962,2962,2967,0,0, 0,0,3074,3077,3078,3075,3080,0,0,0,0,0,0,3074,3075,3076,3077,3080,0,659, 659,0,3187,3190,3191,3188,3193,205,0,0,0,0,205,3187,3188,3189,3190,3193,659,0, 0,659,0,0,0,93,0,0,0,0,0,0,0,0,93,0,0,0,0,659, 659,0,0,659,0,0,0,0,0,0,0,0,0,0,0,0,659,0,659,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,475,477,478,476,476,476,479,0,0,0,0,0,0,0,0,0,0, 0,0,0,588,590,591,589,589,589,592,0,0,0,0,0,205,0,0,0,0, 0,0,0,588,589,589,589,589,589,592,0,0,0,0,0,0,0,0,0,0, 0,0,0,701,703,703,707,702,706,705,0,0,0,0,0,0,0,0,99,100, 0,0,0,814,816,816,820,815,819,818,0,0,0,0,0,0,0,0,212,213, 99,100,0,659,659,659,205,93,0,0,0,0,0,0,0,0,99,100,438,439, 212,213,0,659,659,659,0,0,0,0,0,0,0,0,0,0,212,213,212,213, 438,439,99,100,99,100,99,100,99,100,99,100,99,100,99,100,438,439,438,439 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,6325,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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: maps/hoenn/mauville-city.tmx ================================================ 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0 0,0,659,0,659,0,659,659,0,659,0,0,0,0,0,3401,3402,3403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,659,0,659,0,0,0,0,0,0,0,0,0,0,3401,3402,3403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,659,0,659,659,0,0,0,0,0,0,659,0,0,0,3401,3402,3403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,659,659,0,0,0,0,0,0,0,0,0,0,0,3401,3402,3403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3401,3402,3403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3401,3402,3403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,3288,3289,3290,0,0,0,0,0,3401,3402,3403,0,0,0,0,3288,3290,0,0,0,0,0,0,0,0,0,0,0,3288,3290,0,0,0, 0,0,0,0,0,0,0,3401,3402,3403,0,0,0,0,3288,3402,3402,3402,3290,0,0,0,3401,3403,0,0,0,0,0,0,0,0,0,0,0,3401,3403,0,0,0, 3288,3289,3289,3289,3289,3289,3289,3402,3402,3402,3289,3289,3289,3289,3402,3402,3402,3402,3402,3289,3289,3289,3402,3402,3289,3289,3289,3289,3289,3289,3289,3289,3289,3289,3289,3402,3402,3289,3289,3290, 3514,3515,3515,3515,3515,3515,3515,3515,3515,3515,3515,3515,3402,3402,3515,3515,3515,3515,3515,3515,3515,3515,3515,3515,3515,3515,3515,3515,3402,3402,3515,3515,3515,3515,3515,3515,3515,3515,3515,3516, 0,0,0,0,0,0,0,0,0,0,0,0,3401,3403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3401,3403,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,3401,3403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3401,3403,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,3401,3403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3401,3403,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,3401,3403,0,659,659,659,0,0,0,0,0,0,0,0,0,0,3401,3403,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,3401,3403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3401,3403,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,3401,3403,0,3288,3289,3289,3289,3289,3289,3289,3289,3289,3289,3289,3289,3289,3402,3402,3289,3289,3289,3290,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,3514,3516,0,3401,3402,3402,3515,3515,3515,3515,3515,3515,3515,3515,3515,3515,3515,3515,3515,3515,3515,3516,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3401,3402,3403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3401,3402,3403,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4409,4410,4410,4410, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3514,3515,3516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,0,0 2020,0,0,0,0,0,0,0,0,0,0,0,2022,0,0,0,0,0,0,0,2020,0,218,219,219,219,219,219,219,219,219,219,219,219,219,219,219,218,218,218, 2020,0,0,0,0,31,32,32,32,32,36,0,2022,0,0,0,0,0,0,0,2020,0,331,331,331,331,331,331,331,331,331,331,331,331,331,219,219,219,219,219, 2020,0,0,0,0,144,145,145,145,145,149,0,2022,0,0,0,0,0,0,0,2020,23,24,25,26,1907,1908,1908,1908,1908,1908,1908,1908,1909,3300,3301,3301,3301,3305,219, 2020,0,0,0,0,257,258,259,145,261,262,0,2022,0,0,0,0,0,0,0,2020,136,137,138,139,2020,3606,3607,3608,0,3606,3607,3608,2022,3413,3414,3414,3414,3418,219, 2136,1908,1908,1908,1908,370,371,372,373,374,375,1908,2135,0,0,0,0,0,0,0,2133,249,250,251,252,2020,3606,3607,3608,0,3606,3607,3608,2022,3526,3527,3528,3530,3531,219, 2020,0,0,0,0,483,484,485,486,487,488,376,0,0,0,0,0,0,0,0,0,362,363,364,365,2133,0,0,0,0,0,0,0,2135,3639,3640,3641,3643,3644,219, 2024,0,0,0,0,0,0,0,0,0,0,489,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,0,0,0,0,0,331, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,2902,2903,2903,2903,2903,2903,2908,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1911,0,0,0,0,3015,3016,3016,3016,3016,3016,3021,0,0,0,0,0,0,3300,3301,3301,3305,27,28,28,30,0,0,0,0,0,3300,3301,3301,3301,3305,4204,4205,4205,4208, 2024,0,0,0,0,3128,3129,3130,3131,3132,3129,3134,0,0,1907,1908,1908,1908,3413,3414,3414,3418,140,141,142,143,0,0,0,0,0,3413,3414,3414,3414,3418,4317,4318,4318,4321, 2024,0,0,0,0,3241,3242,3243,3244,3245,3242,3247,0,0,2020,0,0,0,3526,3527,3530,3531,253,254,255,256,0,0,0,0,0,3532,3527,3533,3534,3535,4430,4431,4431,4434, 2133,1908,1908,1908,1908,1908,1909,0,0,0,0,0,0,0,2020,0,0,0,3639,3640,3643,3644,362,363,368,369,0,0,0,0,0,3645,3640,3646,3647,3648,4543,4545,4545,4547, 218,218,0,0,0,0,2022,0,0,0,0,205,0,0,2020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,218,4656,4658,4658,4660, 219,219,218,218,218,0,2022,0,0,0,0,0,0,0,2020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,218,218,0,0, 219,219,219,219,219,218,2022,0,0,0,0,0,0,0,2020,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,219,331,331,0,0, 219,219,219,219,219,219,2023,1908,1908,1908,1908,1908,1908,1908,2024,0,0,0,0,1908,1908,1908,1908,1908,1908,218,218,1908,1908,1908,1908,1908,1908,0,218,219,0,0,0,0, 219,219,219,219,219,219,218,218,218,0,218,2016,0,0,0,0,0,0,0,2014,218,218,218,218,218,219,219,218,0,218,218,218,218,218,219,219,0,0,0,0 ================================================ FILE: maps/hoenn/mossdeep-city.tmx ================================================ 0,0,0,0,0,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,116,114,114,114,114,114,114,114,114,114,114,114,116,0,0,0,114,116,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,0,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,0,0,0,0,0,0,0,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,114,114,114,114,114,114,114,114,114,114,116,114,114,114,114,114,114,114,114,114,114,114,116,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,114,114,114,114,114,114,114,114,114,114,116,114,116,114,114,114,114,114,114,114,114,114,114,114,116,116,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,114,114,114,114,114,114,114,114,116,114,116,114,114,114,114,114,114,114,114,114,114,114,114,114,116,114,114,116,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,114,114,114,114,114,114,114,114,114,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,114,114,114,114,114,114,114,114,116,114,114,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,0,116,0,0, 0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,114,0, 0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,114,114,114,114,114,114,114,114,114,114,114,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,114,116,0, 0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,114,114,114,114,114,114,114,114,114,114,116,114,114,114,114,116,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,114,114,116,0, 0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,114,114,114,114,114,114,114,114,114,114,116,116,116,114,116,116,114,114,114,114,114,114,114,114,114,114,116,114,114,114,114,114,114,114,116,0, 0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,116,114,114,114,114,114,114,114,116,0, 0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,0,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,114,114,114,114,114,114,114,114,114,114,114,114,116,114,116,116,114,114,114,114,114,114,114,114,114,116,116,114,116,114,114,114,114,116,0, 4975,4975,4975,4975,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,114,114,114,114,114,114,114,114,114,116,116,116,114,114,114,114,114,116,0, 4975,4978,4978,4975,4975,4975,4975,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,116,116,116,114,114,114,116,116,116,0, 4975,4978,4978,4978,4978,4978,4975,4975,4975,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,0, 4975,4978,4978,4978,4978,4978,4978,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,0,0, 4975,4978,4978,4978,4978,4978,4978,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,0,0, 4975,4978,4978,4978,4978,4978,4978,4978,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,0,0, 4975,4975,4978,4978,4978,4978,4978,4978,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,0,0,0,0,0, 0,4975,4975,4978,4978,4978,4978,4978,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,116,116,116,116,116,116,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,0,0,0,0,0, 0,4975,4975,4978,4978,4978,4978,4978,4975,4975,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,0,0,0,0,0, 0,4975,4975,4978,4978,4978,4978,4978,4975,4975,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0, 0,0,4975,4975,4978,4978,4978,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,0,0,0,0,0,0, 0,0,0,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,116,116,116,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,4975,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,0,0,0,0, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,0,0,0, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0,0,0,4975,4975,4975,4975,4975,4975,4975,4975,4975,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116,116,116,116,0,0 0,0,0,0,115,0,228,229,229,229,229,230,0,0,117,0,0,228,229,230,0,0,0,0,0,0,0,0,0,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,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,228,229,342,0,0,0,0,0,341,229,230,0,0,0,0,0,0,0,0,0,0,0,0,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,4,228,230,0,0,0,0,0,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,4,228,229,229,229,229,229,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,230,0,0,0,0,0,0,0,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,230,0,0,0,0,0,0,0,0,0,0,0,0,0,4861,4862,4862,4862,4863,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,3,3,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,4861,4862,4862,4862,4862,4862,4862,5313,0,0,0,5314,4862,4862,4863,0,0,0,2,3,3,3,3,3,3,3,3,3,3,3,4,0,0,0,2,115,0,0,0,3,3,3,3,3,0,3,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,4861,5313,0,0,0,0,0,0,0,0,0,0,0,0,2,3,3,3,3,3,0,0,0,0,0,0,0,0,0,0,0,3,3,3,3,115,115,0,0,0,0,0,0,659,659,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,4861,5313,0,0,0,0,0,0,0,0,0,0,2,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,115,0,0,0,0,0,0,0,0,0,0,2,3,3,3,3,1052,1053,3,3,3,3,3,4,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,4861,5313,0,0,0,2,3,3,3,3,3,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,3,659,0,0,0,0,0,659,0,2,3,115,659,0,0,0,1165,1166,0,0,0,0,659,117,4,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,4974,0,0,0,2,115,0,0,0,0,0,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,115,659,0,0,2491,2492,2492,2493,0,2,3,115,2,3,659,0,0,0,0,0,0,0,0,0,0,117,117,3,4,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,4974,0,0,0,115,115,0,659,659,0,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,3,3,0,0,0,2604,2605,2718,2719,2,3,2,3,115,0,0,0,0,0,0,0,0,0,0,0,0,117,3,4,117,4,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,4974,0,0,0,115,115,0,659,659,0,0,0,0,0,0,0,0,0,0,0,0,659,0,2491,2492,2492,2492,2492,2492,2492,2492,2493,0,2,115,659,0,0,0,2491,2605,2606,0,2,115,0,115,0,115,0,0,0,0,0,0,0,0,0,0,0,0,3,4,117,117,117,4,0,0,0,0, 0,0,0,0,0,0,0,0,0,4974,0,0,0,115,228,342,0,0,0,0,0,0,0,0,0,0,0,659,0,0,0,0,2604,2605,2605,2718,2718,2718,2718,2718,2719,0,115,115,0,0,0,2491,2605,2605,2606,2,3,115,2,3,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,117,117,117,117,117,4,0,0,0, 0,0,0,0,0,0,0,0,0,4974,0,0,0,228,342,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2604,2605,2606,0,0,0,0,0,0,2,3,3,0,0,2491,2605,2605,2605,2606,115,0,115,115,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,117,117,117,117,117,117,4,0,0, 0,0,0,0,0,0,0,0,0,4974,0,0,0,0,115,228,342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2604,2605,2606,0,0,0,0,659,2,115,0,0,0,0,2604,2605,2605,2605,2606,115,659,115,228,342,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,117,117,117,117,117,117,117,3,4, 0,0,0,0,0,0,0,0,0,4974,0,0,0,0,228,342,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2604,2605,2606,0,0,659,0,0,115,115,0,0,0,0,2717,2605,2605,2605,2719,115,0,115,0,228,342,115,659,0,0,0,0,0,0,0,0,0,0,0,0,117,117,117,117,117,117,3,4,117, 0,0,0,0,0,0,0,0,0,5087,5426,0,0,0,0,115,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2604,2605,2606,659,0,0,0,0,115,115,0,0,0,0,0,2717,2605,2606,0,228,342,115,0,659,115,228,342,659,0,0,0,0,0,0,0,0,0,0,0,117,117,117,117,117,117,659,117,117, 0,0,0,0,0,0,0,0,0,0,4974,0,0,0,0,115,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2604,2605,2606,0,0,0,0,0,115,228,342,659,0,0,0,0,2604,2606,0,0,115,228,342,0,115,0,228,342,0,659,0,2491,2492,2493,0,0,659,0,341,230,117,117,117,117,117,0,117,117, 0,0,0,0,0,0,0,0,0,0,4974,0,0,0,0,115,115,0,0,0,0,0,0,0,0,2491,2492,2492,2492,2492,2492,2492,2605,2605,2606,0,0,0,0,0,228,342,228,342,0,0,0,0,2717,2719,0,0,228,342,228,342,228,229,342,228,229,342,0,2717,2718,2719,0,0,0,0,117,341,230,117,117,117,3,4,117,117, 0,0,0,0,0,0,0,0,0,0,4974,0,0,0,0,115,228,342,0,0,0,0,0,0,0,2604,2605,2718,2718,2718,2718,2718,2605,2605,2606,0,0,0,0,0,0,228,342,115,0,0,0,0,0,0,0,0,0,228,342,228,229,342,228,229,342,228,229,1348,1349,1349,229,229,229,229,230,117,0,117,117,117,0,117,117,117, 4862,4862,4862,4862,4863,0,0,0,0,0,4974,0,0,0,0,228,342,115,0,0,0,0,0,0,0,2604,2606,0,0,0,659,0,2604,2605,2605,2492,2492,2492,2492,2492,2492,2493,115,228,342,0,659,0,0,0,0,0,0,0,228,229,342,228,229,342,228,229,229,1348,1349,1349,229,229,229,229,229,230,341,230,117,117,0,117,117,117, 4867,4868,4868,4869,5314,4862,4862,4863,0,0,5087,5426,0,0,0,0,115,228,229,229,342,0,0,0,0,2604,2606,0,0,0,0,0,2604,2605,2718,2718,2718,2718,2718,2718,2605,2606,228,342,228,342,0,0,0,0,0,0,0,2491,2493,0,228,229,342,228,229,342,659,0,0,0,0,0,0,659,341,229,230,341,230,117,659,117,117,117, 4980,0,0,5317,4868,4868,4869,5314,4862,4863,0,4974,0,0,0,0,228,229,229,342,115,0,0,0,0,2604,2606,0,0,0,0,0,2604,2606,0,0,0,0,0,0,2604,2606,0,228,342,228,229,342,0,0,0,0,0,2604,2605,2492,2493,0,228,229,342,228,229,1348,1349,1349,229,229,229,229,230,341,229,230,0,117,341,230,117,117, 4980,0,0,0,0,0,5317,4869,0,5314,4862,5313,0,0,0,0,0,0,0,115,228,229,229,342,0,2604,2606,0,0,0,0,0,2604,2606,0,0,0,0,0,0,2604,2606,0,0,228,229,342,228,229,229,342,0,0,2717,2605,2605,2605,2492,2492,2493,228,229,229,1348,1349,1349,229,229,229,229,229,230,659,0,0,117,117,341,230,117, 4980,0,0,0,0,0,0,4979,0,0,0,0,0,0,0,0,0,0,0,228,229,229,342,115,0,2604,2606,0,0,0,0,0,2604,2606,0,0,0,0,0,0,2604,2606,0,0,0,0,228,229,229,342,228,342,0,0,2717,2718,2605,2605,2605,2605,2493,0,0,0,0,0,0,0,0,0,0,0,0,341,229,230,117,117,341,230, 4980,0,0,0,0,0,0,5317,4869,0,0,0,0,0,0,0,0,0,0,0,0,0,115,228,229,1348,1349,229,229,229,342,0,2604,2606,0,0,0,0,0,0,2604,2606,0,0,0,0,0,0,0,228,342,115,659,0,0,0,2717,2605,2605,2718,2719,0,0,0,0,0,0,0,0,0,0,0,341,230,341,229,230,117,117,0, 4980,0,0,0,0,0,0,0,4982,0,0,0,0,0,0,0,0,0,0,0,0,0,228,229,229,1348,1349,229,229,342,115,0,2604,2606,0,0,0,0,0,0,2604,2605,2492,2492,2492,2492,2492,2493,0,0,115,228,229,229,342,659,0,2717,2719,0,0,0,0,0,0,0,0,0,0,0,659,0,117,341,230,341,229,230,117,0, 5093,5429,0,0,0,0,0,0,4982,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,115,0,2604,2606,0,0,0,0,0,0,2717,2718,2718,2718,2718,2718,2605,2606,0,0,228,229,229,342,228,342,0,0,0,0,0,0,659,0,0,0,0,0,0,0,0,341,230,117,341,230,341,229,230,0, 5426,5093,5429,0,0,0,0,0,4982,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,228,229,1348,1349,229,229,229,229,229,229,229,229,229,342,0,0,2604,2606,0,0,0,0,0,228,342,228,229,1348,1349,229,229,229,229,229,342,0,0,0,0,0,0,117,341,230,117,341,230,0,0,0, 4974,0,4980,0,0,0,0,0,4982,0,5427,5088,5088,5426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,229,229,1348,1349,229,342,0,0,0,0,0,0,0,115,0,0,2604,2606,0,0,0,0,0,0,228,229,229,1348,1349,229,229,229,342,0,228,342,0,0,0,0,0,117,117,341,230,117,0,0,0,0, 4974,0,4980,0,0,0,0,0,4982,0,4976,0,0,5087,5088,5088,5426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,229,229,229,229,229,229,342,115,0,0,2604,2605,2492,2492,2492,2492,2492,2492,2492,2492,2492,2605,2606,0,0,0,228,229,342,228,229,229,229,229,229,230,117,117,341,230,0,0,0,0, 5087,5426,5093,5429,0,0,0,5430,5095,5427,5089,0,0,0,0,0,5087,5088,5088,5088,5088,5088,5426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,228,342,0,2717,2718,2718,2718,2718,2718,2718,2718,2718,2718,2718,2718,2719,0,0,0,0,659,228,229,229,229,229,229,229,229,230,117,117,0,0,0,0,0, 0,5087,5426,5093,5094,5094,5094,5095,5427,5089,0,0,0,0,0,0,0,0,0,0,0,0,5087,5088,5088,5088,5088,5426,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,659,228,229,1348,1349,229,229,342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,659,341,229,229,229,229,229,230,117,0,0,0,0,0, 0,0,5087,5088,5088,5088,5088,5088,5089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5087,5088,5088,5088,5426,0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,228,229,229,342,0,0,0,0,0,0,0,659,0,0,0,341,229,230,0,659,341,229,229,229,230,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5087,5088,5426,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,228,229,229,229,229,229,342,0,0,0,341,229,230,0,659,0,0,117,0,0,0,0,0,0,0,0,0, 3,3,3,3,3,3,3,3,4,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5087,5426,0,0,0,0,0,0,0,115,0,0,0,659,0,0,0,0,0,0,0,0,0,0,0,659,228,229,229,229,230,341,229,229,229,229,229,230,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,3,4,228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4974,0,0,0,0,0,0,0,228,229,229,229,229,229,342,0,0,659,0,0,0,0,0,0,0,0,0,659,0,0,117,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0, 0,0,0,0,0,0,0,0,0,3,3,3,3,3,3,3,3,3,3,3,3,4,0,0,0,0,0,0,0,0,0,0,0,0,4974,0,0,0,0,0,0,0,0,0,0,0,0,0,228,229,229,229,229,229,229,229,229,229,229,229,229,229,229,229,230,0,0,0,0,0,0,0,0,0,2,3,117,0,0,0, 3,3,4,0,0,0,0,0,0,0,0,0,2,3,3,3,3,3,3,4,0,3,4,0,0,0,0,0,0,0,0,0,0,0,4974,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5427,5088,5088,5088,5088,5088,5089,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,117,0,0,0, 0,0,3,4,0,0,2,4,0,0,0,2,3,0,2,3,3,4,0,3,4,0,117,0,0,0,0,0,0,0,0,0,0,0,4974,0,0,0,0,0,0,0,0,0,0,0,0,0,5427,5088,5088,5088,5088,5088,5089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,0,3,4,0,0, 0,0,0,117,0,0,228,230,0,0,0,115,0,2,3,0,0,3,4,0,117,0,117,2,4,0,0,0,0,0,0,0,0,0,4974,0,0,0,0,0,0,0,0,0,0,0,5427,5088,5089,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115,0,2,4,117,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1810,1810,1810,1810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1810,1810,1810,1810,1810,1810,1810,1810,1810,1810,1810,0,0,0,0,0,0,0,0,0,1810,1810,1810,1810,1810,1810,1810,1810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1810,1810,1810,1810,1810,0,0,0,0,0,0,0,0,0,0,0,1810,1810,1810,1810,0,0,0,0,0,0,0,0,0,0,0,0,0,1810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1810,1810,1810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1810,1810,1810,1810,1810,1810,1810,1810,1810,1810,1810,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1810,1810,1810,1810,1810,1810,1810,1810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1810,1810,0,0,0,0,0,0,0,0,0,1810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1810,0,0,1810,0,0,0,0,0,0,0,0,0,0,0,0,0,1810,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1810,1810,0,0,0,0,0,0,0,0,1810,0,1810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1810,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1810,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1810,0,0,1810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1810,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1810,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1810,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,825,600,601,938,1051,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,202,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1379,1380,1380,1383,0,0,0,0,676,677,678,0,0,1164,0,713,714,0,1164,0,0,0,0,0,0,0,0,0,0,0,0,0, 202,203,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1492,1493,1493,1496,0,0,0,0,789,790,791,0,0,1164,825,826,827,938,1164,0,0,0,0,0,0,0,0,0,0,0,0,0, 315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,429,0,0,0,0,0,0,0,0,0,222,223,222,223,31,32,32,32,32,36,0,0,0,0,0,0,0,1605,1606,1607,1609,0,0,0,0,902,903,904,0,0,1164,0,939,940,0,1164,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,429,0,0,0,0,0,0,0,222,223,0,1379,1380,1380,1383,335,449,448,336,144,145,145,145,145,149,0,0,222,223,0,0,0,1718,1719,1720,1722,0,0,0,0,0,0,0,0,0,1164,1051,1052,1053,0,1164,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,429,0,222,223,0,1379,1380,1380,1383,0,222,448,449,223,1492,1493,1493,1496,0,335,336,0,257,258,259,145,261,262,0,222,448,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1164,1164,0,0,0,1164,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,335,336,0,1492,1493,1493,1496,222,448,449,223,336,1605,1606,1607,1609,0,0,0,376,370,371,372,373,374,375,222,448,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1275,1276,1277,1278,1279,1280,1281,1282,1283,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1605,1606,1607,1609,335,336,335,336,0,1718,1719,1720,1722,0,0,0,489,483,484,485,486,487,488,335,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1388,1389,1390,1391,1392,1393,1394,1395,1396,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,429,0,0,0,0,0,1718,1719,1720,1722,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1501,1502,1503,1504,1505,1506,1507,1508,1509,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1614,1615,1615,1617,1844,1619,1621,1621,1622,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,222,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,676,677,678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1727,1728,1728,1730,1844,1732,1734,1734,1735,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1379,1380,1380,1383,0,0,0,335,449,223,23,24,25,26,0,0,0,0,0,0,0,0,0,0,0,789,790,791,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1840,1841,1841,1842,1844,1846,1847,1847,1848,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1492,1493,1493,1496,0,222,223,222,448,336,136,137,138,139,0,0,0,0,0,0,0,0,0,0,0,902,903,904,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1953,1954,1954,1956,1957,1958,1954,1954,1961,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1605,1606,1607,1609,0,335,336,335,336,0,249,250,251,252,0,0,0,0,0,27,28,28,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2066,2067,2067,2069,2070,2071,2073,2073,2074,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1718,1719,1720,1722,0,0,0,0,0,0,362,363,364,365,0,0,0,0,0,140,141,142,143,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,205,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,253,254,255,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,222,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,362,363,368,369,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,335,336,222,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,676,677,678,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,335,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,789,790,791,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,222,223,0,0,0,0,1831,1832,1832,1832,1834,0,0,0,0,0,0,0,0,902,903,904,0,0,0,0,0,0,913,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,222,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,222,448,336,0,0,0,0,1944,1945,1945,1945,1947,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1379,1380,1380,1383,0,0,0,0,0,0,0,0,0,0, 0,0,0,335,449,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,335,336,0,0,0,0,0,2057,1606,2058,2059,2060,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1492,1493,1493,1496,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,335,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2170,1719,2171,2172,2173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1605,1606,1607,1609,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1718,1719,1720,1722,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,222,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,676,677,678,0,0,0,0,0,0,0,0,0, 0,0,0,0,335,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,222,223,222,223,0,222,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,789,790,791,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,335,336,335,336,0,335,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,902,903,904,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,222,223,222,223,222,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,222,448,449,448,449,448,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,222,448,336,335,449,448,449,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,335,449,223,222,448,449,448,336,0,0,222,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,335,449,448,336,335,336,0,0,222,448,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,222,448,449,223,222,223,0,0,335,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,335,336,335,222,448,449,223,0,0,0,222,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,222,223,222,448,449,448,336,0,0,222,448,449,223,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,335,449,448,336,335,449,223,0,0,335,449,448,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,222,448,336,0,222,448,449,223,0,222,448,336,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,335,449,223,222,448,449,448,449,223,335,336,0,0,0,0,0,0,0,0,0,0,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: maps/hoenn/navel-rock.tmx ================================================ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,116,0,0,0,0,0,0,0,0,0,116,0,0,0,0,0, 0,0,0,0,116,0,2605,2605,2605,2605,2605,2605,2605,2605,2605,0,116,0,0,0,0, 0,0,0,116,116,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,2605,116,116,0,0,0, 0,0,0,116,116,2605,2605,2605,116,116,116,116,116,2605,2605,2605,116,116,0,0,0, 0,0,0,116,116,2605,2605,2605,116,116,116,116,116,0,2605,2605,116,116,0,0,0, 0,0,0,116,116,2605,2605,2605,116,116,116,116,116,0,2605,2605,116,116,0,0,0, 0,0,0,116,116,2605,2605,2605,2605,116,116,116,2605,2605,2605,2605,116,116,0,0,0, 0,0,0,116,116,0,2605,2605,2605,2605,2605,2605,2605,2605,2605,116,116,116,0,0,0, 0,0,0,116,116,0,0,2605,2605,2605,2605,2605,2605,2605,116,116,116,116,0,0,0, 0,0,0,116,116,116,116,2605,2605,2605,2605,2605,2605,2605,116,116,116,116,0,0,0, 0,0,0,0,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,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,3,3,3,3,3,3,3,3,3,4,0,0,0,0,0, 0,0,0,0,2,3,341,229,229,229,229,229,229,229,342,3,4,0,0,0,0, 0,0,0,2,115,341,230,0,0,0,0,0,0,0,228,342,117,4,0,0,0, 0,0,4524,115,115,117,0,0,2,3,3,3,4,0,0,115,117,117,4522,0,0, 0,0,4524,115,115,117,0,2,115,0,0,0,117,4,0,115,117,117,4522,0,0, 0,0,4524,115,115,117,0,115,115,0,0,0,117,117,0,115,117,117,4522,0,0, 0,0,4524,115,115,117,0,115,228,342,0,341,230,117,0,115,117,117,4522,0,0, 0,0,4524,115,115,117,0,228,342,228,229,230,341,230,0,115,117,117,4522,0,0, 0,0,4524,115,115,3,4,0,228,229,229,229,230,0,2,3,117,117,4522,0,0, 0,0,4524,115,228,342,3,4,0,0,0,0,0,2,3,341,230,117,4522,0,0, 0,0,4524,228,342,228,229,230,0,0,0,0,0,228,229,230,341,230,4522,0,0, 0,0,4637,4411,228,229,229,229,229,1348,1349,1349,229,229,229,229,230,4409,4635,0,0, 0,0,0,4637,4410,4410,4410,4410,4410,0,0,0,4410,4410,4410,4410,4410,4635,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,315,316,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,907,0,0,0,0,0,0, 0,0,0,0,0,0,907,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,907,0,0,0,456,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,569,0,0,907,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,3917,3918,3919,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,4030,4031,4032,0,0,0,0,202,203,0,0,0, 0,0,0,0,202,203,0,0,0,4030,4031,4032,0,202,203,0,315,316,0,0,0, 0,0,0,0,315,316,0,0,0,4030,4031,4032,0,315,316,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,4142,4143,4144,4145,4146,0,0,0,0,0,0,0,0, 0,0,0,0,202,203,0,4254,4255,4256,4256,4256,4259,4260,0,0,0,0,0,0,0, 0,0,0,0,315,316,0,4367,4255,4256,4256,4256,4259,4373,0,202,203,0,0,0,0, 0,0,0,0,0,0,0,4254,4368,4369,4370,4371,4372,4260,0,315,316,0,0,0,0, 0,0,0,0,0,0,0,4367,4481,4482,4483,4484,4485,4373,0,0,0,0,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: maps/hoenn/oldale-town.tmx ================================================ 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114 0,0,0,0,0,0,0,0,0,2488,2490,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,2488,2602,2603,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,2601,2602,2602,2490,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,2601,2602,2602,2603,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,2601,2602,2602,2603,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,2601,2602,2602,2602,2490,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,2601,2602,2602,2602,2603,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,2601,2715,2715,2715,2602,2489,2489,2489,2489,2490,0,0, 0,0,0,0,0,2488,2489,2489,2603,0,0,0,2601,2602,2602,2602,2602,2602,2490,0, 0,0,0,2488,2489,2602,2602,2602,2603,0,0,0,2601,2602,2602,2602,2602,2602,2716,0, 2942,0,2488,2602,2602,2602,2602,2602,2603,0,0,0,2601,2602,2602,2602,2602,2716,0,0, 3168,0,2714,2715,2715,2602,2602,2602,2602,2489,2489,2489,2602,2602,2602,2715,2716,0,0,0, 0,0,0,0,0,2714,2715,2602,2602,2602,2602,2602,2602,2602,2603,0,0,0,0,0, 0,0,0,0,0,0,0,2714,2715,2602,2602,2602,2602,2715,2716,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,2601,2602,2602,2603,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,2601,2602,2602,2603,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,2601,2602,2602,2716,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,2488,2489,2602,2602,2603,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,2601,2602,2602,2602,2603,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,2714,2602,2602,2602,2716,0,0,0,0,0,0,0,0 212,213,212,213,212,213,212,213,0,0,0,0,212,213,212,213,212,213,212,213, 438,439,438,439,325,326,325,326,0,0,0,0,325,326,325,326,438,439,438,439, 212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,0,212,213,212,213, 438,439,325,326,0,0,0,0,0,0,0,0,0,27,28,28,325,326,438,439, 212,213,0,0,3650,3651,3651,3653,0,0,0,0,0,140,141,142,143,0,212,213, 438,439,0,0,3763,3764,3764,3766,0,0,0,0,0,253,254,255,256,0,438,439, 212,213,0,0,3876,3877,3878,3879,0,0,0,0,0,362,363,368,369,0,212,213, 438,439,0,0,3989,3990,3991,3992,0,0,0,0,0,0,0,0,0,0,325,326, 212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 325,326,0,0,0,0,0,0,0,0,0,205,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 99,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,100, 212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213, 438,439,0,0,0,23,24,25,26,0,0,0,0,0,3650,3651,3651,3653,438,439, 212,213,0,0,0,136,137,138,139,0,0,0,0,0,3763,3764,3764,3766,212,213, 438,439,99,100,0,249,250,251,252,0,0,0,0,0,3876,3877,3878,3879,438,439, 212,213,212,213,0,362,363,364,365,0,0,0,0,0,3989,3990,3991,3992,212,213, 438,439,438,439,0,0,0,0,0,0,0,0,0,0,0,0,99,100,438,439, 212,213,212,213,0,0,0,0,0,0,0,0,0,0,0,0,212,213,212,213, 438,439,438,439,99,100,99,100,0,0,0,0,99,100,99,100,438,439,438,439 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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: maps/hoenn/pacifidlog-town.tmx ================================================ 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0, 0,0,0,0,0,0,116,116,116,116,116,116,116,116,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116, 116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116,116 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341, 229,229,342,0,0,0,0,0,0,0,0,0,0,0,0,0,341,229,229,230, 342,0,228,342,0,0,0,0,0,0,0,0,0,0,341,229,230,0,0,0, 228,342,0,228,229,229,229,229,229,229,229,229,229,229,230,0,0,341,229,229, 342,228,229,229,229,229,342,0,0,0,0,0,0,341,229,229,229,230,0,341, 228,229,229,229,229,342,228,229,229,229,229,229,229,230,341,229,229,229,229,230, 0,0,0,0,0,228,229,229,229,229,229,229,229,229,230,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,228,230, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,2194,0,0,0,0,0,0,0,0,0,0,0,0,2194,0,0,0, 0,0,0,2307,2191,2192,0,0,0,0,0,0,2191,2192,2191,2192,2307,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,2194,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,2307,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,2194,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,2307,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,2194,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,2307,0,0,0,0,0,0,0,0,2194,0,0, 0,0,0,2194,0,0,0,0,2194,0,0,0,0,0,0,0,0,2307,0,0, 0,0,0,2307,2191,2192,2191,2192,2307,0,0,0,0,0,0,0,0,2194,0,0, 0,0,0,0,0,0,0,0,2194,2191,2192,2191,2192,2191,2192,2191,2192,2307,0,0, 0,0,0,0,0,0,0,0,2307,0,0,0,0,0,0,0,0,0,0,0, 2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 228,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0, 0,0,2,3,3,3,3,3,3,3,3,3,3,3,3,4,228,230,0,0, 3,3,3,0,0,0,0,2,3,3,3,3,3,4,0,3,3,3,3,3, 0,0,0,0,2,3,3,3,0,0,0,0,0,3,3,3,3,4,0,0, 2,3,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3, 3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,2306,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 2417,2418,2419,2420,2421,0,0,0,0,0,0,0,0,0,0,0,2306,0,0,0, 2530,2531,2532,2533,2534,0,0,0,0,0,0,0,0,0,2417,2418,2419,2420,2421,0, 2643,2644,2645,2646,2647,0,0,23,24,25,26,0,0,0,2530,2531,2532,2533,2534,0, 2643,2757,2757,2757,2647,0,2417,136,137,138,139,2421,0,0,2643,2644,2645,2646,2647,0, 2756,2757,2757,2757,2760,0,2530,249,250,251,252,2534,0,0,2756,2757,2757,2757,2760,0, 2869,2870,2870,2871,2873,0,2643,362,363,364,365,2647,0,0,2869,2870,2871,2870,2873,0, 0,0,0,0,0,0,2643,2757,2757,2757,2757,2647,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,2756,2757,2757,2757,2757,2760,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,2869,2870,2871,2870,2870,2873,0,0,0,0,0,2306,0,0, 0,0,0,2306,0,0,0,0,0,0,0,0,0,0,0,2417,2418,2419,2420,2421, 0,2417,2418,2419,2420,2421,0,0,0,0,0,0,0,0,0,2530,2531,2532,2533,2534, 0,2530,2531,2532,2533,2534,0,0,0,0,0,0,2306,0,0,2643,2644,2645,2646,2647, 0,2643,2644,2645,2646,2647,0,0,0,0,2417,2418,2419,2420,2421,2756,2757,2757,2757,2760, 0,2756,2757,2757,2757,2760,0,0,0,0,2530,2531,2532,2533,2534,2869,2870,2871,2870,2873, 0,2869,2870,2871,2870,2873,0,0,0,0,2643,2644,2645,2646,2647,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,2756,2757,2757,2757,2760,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,2869,2870,2871,2870,2873,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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: maps/hoenn/petalburg-city.tmx ================================================ 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,4184,4184,4184,4184,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,4184,4184,4184,4184,4184,4184,4184,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,4184,4184,4184,4184,4184,4184,4184,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,4184,4184,4184,4184,4184,4184,4184,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,4184,4184,4184,4184,4184,4184,4184,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,4184,4184,4184,4184,4184,4184,4184,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,4184,4184,4184,4184,4184,4184,4184,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,4184,4184,4184,4184,4184,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,4184,4184,4184,4184,4184,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,4184,4184,4184,4184,4184,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,4184,4184,4184,4184,4184,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,4184,4184,4184,4184,4184,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,4184,4184,4184,4184,4184,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,4184,4184,4184,4184,4184,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,4184,4184,4184,4184,4184,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,4184,4184,4184,4184,4184,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,4184,4184,4184,4184,4184,4184,4184,4184,4184,4184,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4409,4410,4410,4411,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4409,4410,4410,4635,0,0,4524,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,0,0,0,0,4524,0,0,0,0, 0,0,0,0,659,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,0,0,0,0,4524,0,0,0,0, 0,0,0,0,659,659,2491,2493,659,659,0,0,0,0,0,0,0,0,0,4522,0,0,0,0,0,4524,0,0,0,0, 0,0,0,0,659,659,2604,2606,659,659,0,0,0,0,0,0,0,0,0,4522,0,0,0,0,0,4524,0,0,0,0, 0,0,0,0,0,0,2604,2606,0,0,0,0,0,0,0,0,0,0,0,4522,0,0,0,0,0,4524,0,0,0,0, 0,0,0,0,0,0,2604,2606,0,0,0,0,0,0,2491,2492,2493,0,0,4636,4636,4636,4636,4636,4636,4636,0,0,0,0, 0,0,0,0,0,0,2604,2606,0,0,0,0,0,0,2604,2605,2606,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,2604,2606,0,0,0,0,0,0,2604,2605,2606,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,2491,2492,2492,2492,2605,2605,2492,2492,2492,2492,2492,2492,2605,2605,2606,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,2717,2718,2718,2718,2718,2718,2718,2718,2718,2718,2718,2718,2718,2605,2606,0,0,0,0,0,0,0,0,2491,2493,0,0,0, 0,0,4409,4410,4410,4410,4411,0,0,0,0,0,0,0,0,2604,2606,0,0,0,0,0,0,0,0,2604,2606,0,0,0, 0,0,4522,0,0,0,4524,0,0,0,0,0,0,0,0,2604,2606,0,0,0,0,0,0,0,0,2604,2606,0,0,0, 0,0,4522,0,0,0,4524,0,0,0,0,0,0,0,0,2604,2606,0,0,0,0,0,0,0,0,2604,2606,0,0,0, 0,0,4522,0,0,0,4524,0,0,0,0,0,0,0,0,2604,2605,2492,2492,2492,2492,2492,2492,2492,2492,2605,2605,2493,0,0, 0,0,4522,0,0,0,4524,0,0,0,0,0,0,0,0,2604,2605,2718,2718,2718,2718,2718,2718,2718,2718,2718,2718,2719,0,0, 0,0,4522,0,0,0,4524,0,0,0,0,0,0,0,0,2604,2606,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,4522,0,0,0,4524,0,0,0,93,0,0,0,0,2604,2606,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,4522,0,0,0,4524,0,0,0,0,0,0,0,0,2604,2606,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,4522,0,0,0,4524,0,0,0,0,0,0,0,0,2604,2606,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,4522,0,0,0,4637,4410,4410,4410,4410,4411,0,0,0,2604,2606,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,4522,0,0,0,0,0,0,0,0,4524,0,0,659,2604,2606,659,0,0,0,0,0,659,659,0,0,0,0,0, 0,0,4522,0,0,0,0,0,0,0,0,4524,0,0,0,2604,2605,2492,2492,2492,2492,2493,0,659,659,0,0,0,0,0, 0,0,4522,0,0,0,0,0,0,0,0,4524,0,0,659,2717,2718,2718,2718,2718,2718,2719,0,0,0,0,0,0,0,0, 0,0,4522,0,0,0,0,0,0,0,0,4524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,4636,4636,4636,4636,4636,4636,4636,4636,4636,4636,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,438,439,325,326,325,326,325,326,325,326,551,552,551,552,551,552,551,326,325,326,325,326,325,326,438,439,438,439, 212,213,212,213,654,927,928,928,928,931,656,212,213,212,213,212,213,212,213,0,0,0,0,0,0,0,212,213,212,213, 438,439,438,439,657,1040,1041,1041,1041,1044,657,325,326,325,326,325,326,325,326,0,0,0,0,0,0,0,438,439,438,439, 212,213,212,213,770,1153,1155,1154,1155,1157,657,544,31,32,32,32,32,36,544,0,0,0,0,0,0,0,212,213,212,213, 438,439,438,439,0,1266,1268,1267,1268,1270,657,657,144,145,145,145,145,149,657,0,0,0,0,0,0,0,438,439,438,439, 212,213,212,213,0,0,0,0,0,0,657,657,257,258,259,145,261,262,657,0,0,0,0,0,0,0,212,213,212,213, 438,439,438,439,0,0,0,0,0,0,657,657,370,371,372,373,374,375,657,0,0,0,0,0,0,0,438,439,438,439, 212,213,212,213,0,0,0,0,0,771,769,657,483,484,485,486,487,488,657,0,0,0,0,0,0,0,212,213,212,213, 438,439,325,326,0,0,0,0,205,884,882,770,0,0,0,0,0,376,770,0,0,0,0,0,0,0,325,326,438,439, 212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,489,0,0,0,0,0,0,140,141,142,143,212,213, 325,326,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,253,254,255,256,438,439, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,362,363,368,369,212,213, 99,100,0,0,0,0,0,99,100,0,0,0,0,0,0,0,0,0,0,23,24,25,26,0,0,0,0,0,438,439, 212,213,0,0,0,0,0,212,213,0,0,0,0,0,0,0,0,0,0,136,137,138,139,0,0,0,0,0,212,213, 438,439,0,0,0,0,0,438,439,0,0,0,0,0,0,0,0,0,0,249,250,251,252,0,0,0,0,0,325,326, 212,213,0,0,0,0,0,212,213,927,928,928,931,0,0,0,0,205,0,362,363,364,365,0,0,0,0,0,0,0, 438,439,0,0,0,0,0,438,439,1040,1041,1041,1044,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 212,213,0,0,0,0,0,212,213,1153,1154,1155,1157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 438,439,0,0,0,0,0,325,326,1266,1267,1268,1270,0,0,0,0,0,0,0,0,0,0,0,0,0,99,100,99,100, 212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,541,542,542,542,542,542,542,543,212,213,212,213, 438,439,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,654,927,928,928,931,655,655,656,438,439,438,439, 212,213,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,657,1040,1041,1041,1044,317,317,657,212,213,212,213, 438,439,0,0,0,0,0,0,0,0,0,0,99,100,0,0,0,0,770,1153,1154,1155,1157,317,317,657,438,439,438,439, 212,213,0,0,0,0,0,0,0,0,0,0,212,213,0,0,0,0,0,1266,1267,1268,1270,0,0,657,212,213,212,213, 438,439,0,0,0,0,0,0,0,0,0,0,438,439,0,0,0,0,0,0,0,0,0,0,0,657,438,439,438,439, 212,213,0,0,0,0,0,0,0,0,0,0,212,213,0,0,0,0,0,0,0,0,0,0,0,770,212,213,212,213, 438,439,0,0,0,99,100,99,100,99,100,0,438,439,99,100,99,100,99,100,99,100,99,100,99,100,438,439,438,439, 212,213,0,0,0,212,213,212,213,212,213,0,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213, 438,439,99,100,99,551,552,551,552,551,552,100,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439,438,439 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,541,542,542,542,542,542,543,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27,28,28,30,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,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: maps/hoenn/rustboro-city.tmx ================================================ 0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,0,0,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114 0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,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,3,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,2503,2504,2504,2504,2504,2504,2504,2504,2504,2504,2504,2504,2504,2504,2504,2504,2504,2505,0,0,0, 0,0,0,0,0,115,0,0,0,0,0,0,0,0,2504,2504,2504,2504,2504,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2618,0,0,0, 0,0,0,0,0,115,2503,2504,2504,2504,2504,2504,2504,2504,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2618,0,0,0, 0,0,0,0,0,115,2616,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2618,0,0,0, 0,0,0,0,0,115,2616,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2618,0,0,0, 0,0,0,0,0,115,2616,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2618,0,0,0, 0,0,0,0,0,115,2616,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2618,0,0,0, 0,0,0,0,0,115,2616,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2618,0,0,0, 0,0,0,0,0,115,2616,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2618,0,0,0, 0,0,0,0,0,115,2616,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2618,0,0,0, 0,0,0,0,0,115,2616,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2618,0,0,0, 0,0,0,0,0,115,2616,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2618,0,0,0, 0,0,0,0,2,3,2616,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2618,0,0,0, 0,0,0,0,115,0,2616,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2618,0,0,0, 0,0,0,0,115,0,2616,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,3288,3289,3289,3289,3289,3289,3289,3289,3289,3289,3289,3289,3289,3289,3289,3290,2617,2617,2618,0,0,0, 0,0,0,0,115,0,2616,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,3514,3515,3402,3402,3515,3515,3515,3515,3515,3515,3515,3515,3515,3515,3515,3516,2617,2617,2618,0,0,0, 0,0,0,0,115,0,2616,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,3401,3403,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2618,0,0,0, 0,0,0,2,3,0,2616,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,3401,3403,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2618,0,0,0, 0,0,0,115,0,0,2616,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,3401,3403,2617,2617,2730,2730,2730,2730,2730,2730,2730,2730,2617,2617,2617,2617,2618,0,0,0, 0,0,0,115,0,0,2616,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,3401,3403,2617,2618,0,0,0,0,0,0,0,0,2616,2617,2617,2617,2618,0,0,0, 0,0,0,115,0,0,2616,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,3401,3403,2617,2618,0,659,0,0,0,0,0,0,0,659,659,2616,2618,0,0,0, 0,0,2,3,0,0,2616,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,3401,3403,2617,2618,0,659,0,0,0,0,0,0,0,659,659,2616,2618,0,0,0, 0,0,115,0,0,0,2616,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,3401,3403,2617,2618,0,0,659,659,0,0,0,0,0,659,659,2616,2618,0,0,0, 0,0,115,0,0,0,2616,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,3401,3403,2617,2618,0,0,0,0,0,0,0,0,0,0,2616,2617,2618,0,0,0, 0,2,3,0,0,0,2616,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,3401,3403,2617,2617,2504,2504,2504,2504,2504,2504,2618,0,0,2616,2617,2617,2618,0,0,0, 0,115,0,0,0,0,2616,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,3401,3403,2617,2617,2617,2617,2617,2617,2617,2617,2618,0,0,2616,2617,2617,2618,0,0,0, 0,115,0,0,0,0,2616,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,3401,3403,2617,2617,2617,2617,2617,2617,2617,2617,2617,2504,2504,2617,2617,2617,2618,0,0,0, 0,115,0,0,0,0,2616,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,3401,3403,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2618,0,0,0, 3,3,0,0,0,0,2616,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,3401,3403,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2618,0,0,0, 0,0,0,0,0,0,2616,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,3401,3403,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2618,0,0,0, 0,0,0,0,0,0,2616,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,3401,3403,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2618,0,0,0, 0,0,0,0,0,0,2616,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,3401,3403,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2618,0,0,0, 0,0,0,0,0,0,2616,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,3401,3403,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2618,0,0,0, 0,0,0,0,0,0,2616,2617,3288,3289,3289,3289,3289,3289,3289,3289,3289,3289,3289,3289,3402,3403,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2618,0,0,0, 0,0,2503,2504,2504,2504,2617,2617,3514,3515,3515,3515,3515,3515,3515,3515,3515,3515,3515,3515,3402,3403,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2618,0,0,0, 0,0,2616,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,3401,3403,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2618,0,0,0, 0,0,2616,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,3401,3403,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2618,0,0,0, 0,0,2616,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,3401,3403,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2618,0,0,0, 0,0,2616,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,3401,3403,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2618,0,0,0, 0,0,2616,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,3401,3403,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2618,0,0,0, 0,0,2616,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,3288,3289,3289,3289,3289,3402,3402,3289,3289,3289,3289,3289,3289,3290,2617,2617,2617,2617,2617,2617,2617,2618,0,0,0, 0,0,2616,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,3401,3402,3515,3515,3515,3515,3515,3515,3515,3515,3515,3515,3515,3516,2617,2617,2617,2617,2617,2617,2617,2618,0,0,0, 0,0,2616,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,3402,3403,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2618,0,0,0, 0,0,2616,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,3401,3403,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2618,0,0,0, 0,0,2616,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,3401,3403,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2730,2730,2730,2730,2731,0,0,0, 0,0,2616,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,3401,3403,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2618,0,0,0,0,0,0,0,0, 0,0,2616,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,3401,3403,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2617,2618,0,0,0,0,0,0,0,0, 0,0,2729,2730,2731,2730,2730,2730,2730,2730,2730,2617,2617,2617,2617,3401,3403,2617,2617,2617,2617,2730,2730,2730,2730,2730,2730,2730,2730,2729,2730,2731,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,2503,2617,2617,2617,3401,3403,2617,2617,2617,2505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,2616,2617,2617,2617,3401,3403,2617,2617,2617,2618,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,2729,2730,2730,2730,3401,3403,2730,2730,2730,2731,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3514,3516,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,1810,1810,1810,1810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,1810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,1810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,1810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,1810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,1810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 1810,1810,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,203,0,0,0,0,0,0,0,0,0,212,213,438,439,438,439,212,213,0,0,0,0,0,438,439,438,439,438,439,438,439,438,439,438,439,438,439,212,213, 315,316,0,0,0,202,203,0,0,0,0,438,439,212,213,212,213,438,439,0,0,0,0,0,212,213,212,213,212,213,212,213,212,213,212,213,212,213,438,439, 0,0,0,0,0,315,316,0,0,0,0,212,213,438,439,438,439,212,213,0,0,0,0,0,438,439,438,439,438,439,438,439,438,439,438,439,438,439,212,213, 0,0,0,0,0,0,0,0,0,0,0,438,439,212,213,212,213,438,439,0,0,0,0,0,212,213,212,213,212,213,212,213,212,213,212,213,212,213,438,439, 0,0,0,0,0,0,0,0,0,0,0,212,213,438,439,438,439,212,213,0,0,0,0,0,325,326,438,439,438,439,438,439,438,439,438,439,438,439,212,213, 0,0,0,0,0,0,0,0,0,0,0,325,326,212,213,212,213,438,439,0,0,0,0,0,0,0,212,213,212,213,212,213,212,213,212,213,212,213,438,439, 0,0,202,203,0,0,0,0,0,0,0,0,0,325,326,325,326,212,213,0,0,0,0,0,0,0,325,326,325,326,325,326,325,326,325,326,325,326,212,213, 0,0,315,316,0,0,0,1551,1552,1553,1554,1555,1555,1557,1551,1552,1553,325,326,0,0,0,0,0,1455,1456,1456,1456,1456,1456,1456,1456,1456,1456,1456,1456,1457,0,325,326, 0,0,0,0,0,0,1571,1664,1665,1666,1667,1668,1668,1670,1664,1665,1666,1457,0,0,0,0,0,0,0,0,0,0,0,0,205,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,1570,1777,1778,1778,1780,1781,1782,1783,1785,1785,1786,1570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,1570,1890,1891,1891,1893,1894,1894,1896,1898,1898,1899,1570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,1570,1777,1778,1778,2006,2007,2007,2009,1785,1785,1786,1570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,1570,1890,1891,1891,1893,1894,1894,1896,1898,1898,1899,1570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,100,0, 0,0,0,0,0,0,1570,2003,2004,2004,2006,2007,2007,2009,2011,2011,2012,1570,0,0,0,0,0,0,1455,1456,1456,1456,1456,1456,1456,1456,1456,1456,1456,1456,1573,212,213,0, 0,0,0,0,0,0,1570,2116,2117,2117,2119,2120,2120,2122,2117,2117,2118,1570,0,0,0,0,0,0,1568,0,0,0,0,0,0,0,0,0,0,0,1568,325,552,100, 0,0,0,0,0,0,1570,0,0,0,2232,2233,2233,2235,0,0,0,1570,0,2709,0,0,2709,0,31,32,32,32,32,36,0,3665,3666,3666,3666,3669,1568,0,212,213, 0,0,0,0,0,0,1570,0,0,0,0,0,0,0,0,0,0,1570,0,2822,0,0,2822,0,144,145,145,145,145,149,0,3778,3779,3779,3779,3782,1568,99,551,326, 0,0,0,0,0,0,1570,0,2709,0,0,0,0,0,0,2709,0,1570,0,0,0,0,0,0,257,258,259,145,261,262,0,3891,3892,3892,3892,3895,1568,212,213,0, 0,0,0,0,0,0,1570,0,2822,0,0,0,0,0,0,2822,0,1570,0,0,0,0,0,376,370,371,372,373,374,375,0,4004,4006,4005,4006,4008,1568,325,552,100, 0,0,0,0,0,0,1570,0,0,2709,0,0,0,0,2709,0,1458,1459,0,0,0,0,0,489,483,484,485,486,487,488,0,4117,4119,4118,4119,4121,1568,0,212,213, 0,0,0,0,0,0,1570,0,0,2822,0,0,0,0,2822,0,0,205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1568,99,551,326, 0,0,0,0,0,0,1570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1568,212,213,0, 0,0,0,0,0,0,1570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1568,325,552,100, 0,0,0,0,0,0,1571,1456,1456,1456,1456,1456,1456,1456,1456,1456,1456,1459,0,2709,0,0,2709,0,0,0,0,0,0,0,0,0,0,0,0,0,1568,0,212,213, 0,0,0,0,0,0,1570,0,0,0,0,0,0,0,0,0,0,0,0,2822,0,0,2822,0,0,0,0,0,3665,3666,3666,3666,3669,0,0,0,1568,99,551,326, 0,0,0,0,99,100,1570,0,0,3658,3659,3659,3659,3659,3659,3659,3663,3664,0,0,0,0,0,0,1455,1456,1456,1456,3778,3779,3779,3779,3782,1456,1456,1456,1573,212,213,0, 0,0,0,0,212,213,1570,0,0,3771,3772,3772,3772,3772,3772,3772,3776,3777,0,0,0,0,0,0,1568,0,99,100,3891,3892,3892,3892,3895,0,0,0,1568,325,552,100, 0,0,0,0,438,439,1570,0,0,3884,3885,3885,3885,3885,3885,3885,3885,3888,0,0,0,0,0,0,1568,0,212,213,4004,4006,4005,4006,4008,0,0,0,1568,0,212,213, 0,0,0,0,212,213,1570,0,0,3997,3999,4000,3999,4000,3999,4000,3999,4001,0,0,0,0,0,0,1568,0,325,326,4117,4119,4118,4119,4121,0,0,0,1568,99,551,326, 0,0,0,0,438,439,1570,0,0,3997,3999,4000,4000,3998,4000,4000,3999,4001,0,0,0,0,0,0,1568,0,0,0,0,0,0,0,0,0,0,0,1568,212,213,0, 0,0,0,0,212,213,1570,0,0,4110,4112,4112,4112,4111,4112,4112,4112,4114,0,2709,0,0,2709,0,3658,3659,3659,3659,3659,3663,3664,0,0,0,1455,1456,1573,325,552,0, 0,0,99,100,438,439,1570,0,0,0,0,0,0,0,0,0,0,0,0,2822,0,0,2822,0,3771,3772,3772,3772,3772,3776,3777,0,0,0,0,0,1568,0,212,213, 0,0,212,213,212,213,1570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3884,3885,3885,3885,3885,3885,3888,0,0,0,0,0,1568,99,551,326, 0,0,438,439,438,439,1570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3997,3999,3999,3998,3999,3999,4001,0,0,0,0,0,1568,212,213,0, 0,0,212,213,212,213,1570,3658,3659,3659,3663,3664,0,0,0,0,0,0,0,0,0,0,0,0,4110,4112,4112,4111,4112,4112,4114,0,0,0,0,0,1568,325,552,100, 99,100,438,439,438,439,1570,3771,3772,3772,3776,3777,0,0,0,23,24,25,26,0,0,0,0,0,0,205,0,0,0,0,0,0,0,0,0,0,1568,0,212,213, 212,213,212,213,212,213,1570,3884,3885,3885,3885,3888,0,0,0,136,137,138,139,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1568,99,551,326, 438,439,438,439,438,439,1570,3997,3999,3998,3999,4001,0,0,0,249,250,251,252,2709,0,0,2709,0,0,0,0,0,0,0,0,0,0,0,0,0,1568,212,213,0, 212,213,212,213,212,213,1570,4110,4112,4111,4112,4114,205,0,0,362,363,364,365,2822,0,0,2822,0,0,0,0,2597,2598,2599,0,0,0,0,0,0,1568,325,552,100, 438,439,325,326,325,326,1570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2710,2711,2712,0,3665,3666,3666,3669,0,1568,0,212,213, 212,213,1684,1456,1456,1456,1459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2823,2824,2825,0,3778,3779,3779,3782,0,1568,99,551,326, 438,439,1570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3891,3892,3892,3895,0,1568,212,213,0, 212,213,1570,0,0,0,0,0,0,0,0,0,0,0,0,27,28,28,30,0,0,0,0,0,3658,3659,3659,3659,3659,3662,0,4004,4007,4007,4008,0,1568,325,552,100, 438,439,1570,3665,3666,3666,3666,3666,3666,3669,0,0,0,0,0,140,141,142,143,0,0,0,0,0,3771,3772,3772,3772,3772,3775,0,4004,4006,4006,4008,0,1568,0,212,213, 212,213,1570,3778,3779,3779,3779,3779,3779,3782,0,0,0,0,0,253,254,255,256,2709,0,0,2709,0,3884,3885,3885,3885,3885,3888,0,4004,4007,4007,4008,0,1568,99,551,326, 438,439,1570,3891,3892,3892,3892,3892,3892,3895,0,0,0,0,0,362,363,368,369,2822,0,0,2822,0,3997,3999,3998,3999,3999,4001,0,4004,4006,4006,4008,0,1568,212,213,0, 212,213,1570,4004,4006,4007,4006,4007,4006,4008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4110,4112,4111,4112,4112,4114,0,4117,4119,4119,4121,0,1568,325,552,100, 438,439,1570,4004,4006,4007,4006,4007,4006,4008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1568,0,212,213, 212,213,1570,4004,4007,4007,4007,4007,4007,4008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2709,0,0,0,0,0,0,1568,99,551,326, 438,439,1570,4004,4006,4007,4006,4007,4006,4008,0,0,0,0,0,0,0,0,0,205,0,0,0,0,0,0,0,0,0,2822,0,0,0,0,0,0,1568,212,213,0, 212,213,1570,4004,4006,4005,4006,4007,4006,4008,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1568,438,439,0, 438,439,1570,4117,4119,4118,4119,4119,4119,4121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1455,1456,1456,1456,1456,1573,212,213,0, 212,213,1570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1568,0,212,213,212,213,325,552,100, 438,439,1570,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1568,0,438,439,325,552,100,212,213, 212,213,1684,1456,1456,1456,1456,1456,1456,1456,1456,1457,0,0,2709,0,0,2709,0,0,1455,1456,1456,1456,1456,1456,1456,1456,1456,1456,1456,1568,0,212,213,0,212,213,438,439, 438,439,99,100,99,100,99,100,99,100,0,1570,0,0,2822,0,0,2822,0,0,1568,0,99,100,99,100,99,100,99,100,99,100,99,551,552,100,438,439,212,213, 212,213,212,213,212,213,212,213,212,213,0,1570,0,0,0,0,0,0,0,0,1568,0,212,213,212,213,212,213,212,213,212,213,212,213,212,213,212,213,438,439, 438,439,438,439,438,439,325,326,325,326,0,1570,0,0,0,0,0,0,0,0,1568,0,325,326,325,326,325,326,325,326,325,326,325,326,438,439,438,439,212,213, 212,213,212,213,212,213,0,0,0,0,0,1570,0,0,0,0,0,0,0,0,1568,0,0,0,0,0,0,0,0,0,0,0,0,0,212,213,212,213,438,439, 438,439,438,439,438,439,1456,1456,1456,1456,1456,1459,0,0,0,0,0,0,0,0,1458,1456,1456,1456,1456,1456,1456,1456,1456,1456,1456,1456,1459,0,438,439,438,439,212,213 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99,100,99,100,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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: maps/hoenn/sky-pillar.tmx ================================================ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,116,116,0,0,0,0,0,0, 0,0,0,0,0,0,116,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,116,116,116,0,0,0,0,0, 0,0,0,0,0,116,116,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,0,116,116,116,0,0,0,0, 0,0,0,0,116,116,116,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,0,116,116,116,0,0,0,0, 0,0,0,0,116,116,116,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,0,116,116,116,0,0,0,0, 0,0,0,0,116,116,116,116,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,0,116,116,116,0,0,0,0, 0,0,0,0,116,116,116,116,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,0,116,116,116,116,0,0,0,0, 0,0,0,0,116,116,116,116,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,0,116,116,116,116,0,0,0,0, 0,0,0,0,0,116,116,116,116,4978,4978,4978,4978,4978,4978,4978,116,116,116,116,4978,4978,0,116,116,116,116,0,0,0,0, 0,0,0,0,0,116,116,116,116,4978,4978,4978,4978,4978,4978,116,116,116,116,116,0,4978,0,116,116,116,116,0,0,0,0, 0,0,0,0,0,116,116,116,116,116,4978,4978,4978,4978,4978,116,116,116,116,116,0,4978,116,116,116,116,116,0,0,0,0, 0,0,0,0,0,116,116,116,116,116,116,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,116,116,116,116,116,0,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,3,3,3,3,3,3,3,3,3,4,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,2,3,3,0,0,0,0,0,0,0,0,0,3,3,3,4,0,0,0,0,0,0,0, 0,0,0,0,0,0,2,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,3,4,0,0,0,0,0, 0,0,0,0,0,2,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,117,4,0,0,0,0, 0,0,0,0,2,115,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,117,117,4522,0,0,0, 0,0,0,4524,115,115,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,117,117,4522,0,0,0, 0,0,0,4524,115,115,228,342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,117,117,4522,0,0,0, 0,0,0,4524,115,115,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,341,230,117,4522,0,0,0, 0,0,0,4524,115,228,342,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,230,117,0,117,4522,0,0,0, 0,0,0,4524,228,342,115,115,0,0,0,0,0,0,0,0,2,3,3,4,0,0,117,0,117,0,117,4522,0,0,0, 0,0,0,4637,4411,115,115,228,342,0,0,0,0,0,0,2,3,0,0,117,4,0,117,0,117,0,117,4522,0,0,0, 0,0,0,0,4524,115,115,0,115,0,0,0,0,0,2,115,0,0,0,117,117,0,117,0,117,341,230,4522,0,0,0, 0,0,0,0,4524,115,228,342,228,342,0,0,0,0,115,228,229,229,229,230,117,0,117,341,230,117,0,4522,0,0,0, 0,0,0,0,4524,228,342,228,342,228,342,0,0,0,228,229,229,229,229,229,230,341,230,117,341,230,4409,4635,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,3908,3909,3910,3911,3912,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,4021,4022,4023,4024,4025,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,4134,4137,4137,4137,4138,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,4247,4249,4249,4249,4251,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,4247,4250,4249,4250,4251,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,4247,4249,4249,4249,4251,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,4247,4250,4249,4250,4251,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,5318,4247,4249,4249,4249,4251,5318,5318,5318,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,5318,5318,0,4247,4250,4249,4250,4251,0,907,0,5318,5318,5318,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,5318,5318,0,0,0,4247,4249,4249,4249,4251,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,907,0,4247,4250,4249,4250,4251,0,0,0,0,907,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,4360,4249,4362,4249,4364,0,0,907,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,907,907,4473,4474,4475,4476,4477,907,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,907,0,0,0,0,0,0,0,0,907,907,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,907,0,0,0,0,0,0,0,0,0,0,0,907,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,907,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,907,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,456,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,569,0,0,0,0,0,0,0,0,0,0,0,0,0 ================================================ FILE: maps/hoenn/slateport-city.tmx ================================================ 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0, 0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0, 0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,0,0, 0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0, 0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0, 0,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0, 0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,114,114,114,114,114,114,114,114,114,114,0,0,0,0, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0,0,0,0,0,0,114,114,114,114,114,114,114,114,114,114,0,0, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,0, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,4978,4978,4978,4978,4978,4978,4978,114,114,114,114,114,114,114,114,114,114,4865,0, 0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,4978,4978,4978,4978,4978,4978,4978,114,114,114,114,114,114,114,114,114,114,4978,0, 0,0,4977,4978,4978,4978,4978,4978,114,114,114,114,114,114,114,114,114,114,114,114,114,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,114,114,114,114,4978,4978,4978,4978,0, 0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,114,114,114,114,114,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,114,114,114,114,4978,0,0,0,0, 0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,0,0,0,0, 0,0,0,0,0,0,0,0,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,4978,0,0,0,0 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,0,0, 4411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,0,0, 4524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,0,0, 4524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,0,0, 4524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,0,0, 4524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0,0,0, 4524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4410,4410,4410,4410,4635,0,0,0, 4637,4411,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2500,2501,2502,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,4524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2613,2614,2615,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,4524,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2613,2614,2615,0,0,0,0,0,0,0,0,0,0,0,0,4636,4522,0,0,0,0,0,0, 0,4637,4411,0,0,0,0,0,2500,2501,2501,2501,2501,2501,2501,2501,2501,2614,2614,2614,2501,2501,2501,2501,2501,2501,2501,2501,2501,2502,0,0,0,4636,4636,4636,4636,4636,4522,0, 0,0,4524,0,0,0,0,0,2613,2614,2614,2614,2614,2614,2614,2614,2614,2614,2614,2614,2614,2614,2614,2614,2614,2614,2614,2614,2614,2615,0,0,0,0,0,0,0,0,4522,0, 0,0,4524,0,0,0,0,0,2726,2614,2614,2614,2727,2727,2727,2727,2727,2727,2727,2727,2727,2727,2727,2727,2727,2727,2727,2727,2727,2728,0,0,0,0,0,0,0,0,4522,0, 0,0,4524,0,0,0,0,0,0,2613,2614,2615,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4522,0, 0,0,4524,0,0,0,0,0,0,2613,2614,2615,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4409,4410,4410,4410,4410,4410,4635,0, 0,4524,4636,0,0,0,0,0,0,2613,2614,2615,0,0,0,0,0,0,0,0,0,0,0,0,0,4409,4410,4410,4410,4410,4410,4410,4635,0,0,0,0,0,0,0, 0,4524,0,0,0,0,0,0,0,2613,2614,2615,0,0,0,0,0,0,0,0,0,0,0,4409,4410,4635,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,4524,0,0,0,2500,2501,2501,2501,2614,2614,2614,2501,2501,2501,2501,2501,2501,2501,2502,0,0,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 4524,4636,0,0,0,2726,2727,2727,2727,2614,2614,2614,2727,2727,2727,2727,2727,2614,2614,2615,0,0,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 4524,0,0,0,0,0,0,0,0,2613,2614,2615,0,0,0,0,0,2613,2614,2615,0,0,0,4522,0,4524,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,4522,0,0,0, 4524,0,0,0,0,0,0,0,0,2613,2614,2615,0,0,0,0,0,2613,2614,2615,0,0,0,4522,4524,2620,2620,2733,2733,2733,2733,2733,2733,2733,2733,2620,2620,4522,0,0, 4524,0,0,0,0,0,0,0,0,2613,2614,2615,0,0,0,0,0,2613,2614,2615,0,0,0,4522,4524,2620,2734,0,0,0,0,0,0,0,0,2732,2620,4522,0,0, 4524,0,0,0,0,0,0,0,0,2613,2614,2615,0,0,0,0,0,2613,2614,2615,0,0,0,4522,4524,2621,0,0,0,0,0,0,0,0,0,0,2619,4522,0,0, 4524,0,0,0,0,0,0,0,0,2613,2614,2615,0,0,0,0,0,2613,2614,2614,2501,2501,2620,2620,2620,2621,0,0,0,0,0,0,0,0,0,0,2619,4522,0,0, 4524,0,0,2500,2501,2501,2501,2501,2501,2614,2614,2614,2501,2501,2501,2501,2501,2614,2614,2614,2614,2614,2620,2620,2620,2621,0,0,0,0,0,0,0,0,0,0,2619,4522,0,0, 4524,0,0,2726,2727,2727,2727,2727,2727,2614,2614,2614,2727,2727,2727,2727,2727,2614,2614,2614,2614,2614,2620,2620,2620,2620,2508,0,0,0,0,0,0,0,0,2506,2620,4522,0,0, 4524,0,0,0,0,0,0,0,0,2613,2614,2615,0,0,0,0,0,2613,2614,2614,2727,2727,2620,2620,2620,2620,2620,2507,2507,2507,2507,2507,2507,2507,2507,2620,2620,4522,0,0, 4524,0,0,0,0,0,0,0,0,2613,2614,2615,0,0,0,0,0,2613,2614,2615,0,0,0,4409,4411,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,4522,0,0, 4524,0,659,0,659,0,659,0,0,2613,2614,2615,0,0,659,0,0,2613,2614,2615,0,0,0,4522,4637,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4635,0,0, 4524,0,0,0,0,0,0,0,0,2613,2614,2615,0,0,0,659,0,2613,2614,2615,0,0,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 4524,0,2500,2501,2501,2501,2501,2501,2501,2614,2614,2614,2501,2502,0,0,0,2613,2614,2615,0,0,0,4636,4636,4636,4636,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,4522, 4524,0,2613,2614,2614,2614,2614,2614,2614,2614,2614,2614,2614,2615,0,659,0,2613,2614,2615,0,0,0,0,0,0,0,0,0,0,0,0,2620,2620,2620,2620,2620,2620,2620,4522, 4524,0,2613,2614,2614,2614,2614,2614,2614,2614,2614,2614,2614,2615,0,0,0,2613,2614,2615,0,0,0,0,0,0,0,0,0,0,0,0,4410,4410,4410,4410,4410,4410,4410,4635, 4524,0,2613,2614,2614,2614,2614,2614,2614,2614,2614,2614,2614,2615,0,659,0,2613,2614,2615,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 4524,0,2613,2614,2614,2614,2614,2614,2614,2614,2614,2614,2614,2615,0,0,0,2613,2614,2615,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 4524,0,2613,2614,2614,2614,2614,2614,2614,2614,2614,2614,2614,2615,0,659,0,2613,2614,2615,0,0,0,0,0,0,0,2620,2620,2620,2620,2620,2620,4522,0,0,0,0,0,0, 4524,0,2613,2614,2614,2614,2614,2614,2614,2614,2614,2614,2614,2615,0,0,0,2613,2614,2954,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,4522, 4524,0,2613,2614,2614,2614,2614,2614,2614,2614,2614,2614,2614,2615,0,659,0,2613,2614,2954,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,4522, 4524,0,2613,2614,2614,2614,2614,2614,2614,2614,2614,2614,2614,2615,0,0,0,2613,2614,2615,0,0,0,0,0,0,0,0,0,0,2620,2620,2620,2620,2620,2620,2620,2620,2620,4522, 4524,0,2613,2614,2614,2614,2614,2614,2614,2614,2614,2614,2614,2615,0,659,0,2613,2614,2615,0,0,0,0,0,0,0,0,0,0,2620,2620,2620,2620,2620,2620,2620,2620,2620,4522, 4524,0,2613,2614,2614,2614,2614,2614,2614,2614,2614,2614,2614,2615,0,0,0,2613,2614,2615,0,0,0,0,0,0,0,0,0,0,2620,2620,2620,4409,4410,4410,4410,4410,4410,4635, 4524,0,2613,2614,2614,2614,2614,2614,2614,2614,2614,2614,2614,2615,0,659,0,2613,2614,2615,0,0,0,0,0,0,0,0,0,0,2620,2620,2620,4522,0,0,0,0,0,0, 4524,0,2613,2614,2614,2614,2614,2614,2614,2614,2614,2614,2614,2615,0,0,0,2613,2614,2954,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,4522,0,0,0,0,0,0, 4524,0,2613,2614,2614,2614,2614,2614,2614,2614,2614,2614,2614,2615,0,659,0,2613,2614,2954,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,4522,0,0,0,0,0,0, 4524,0,2613,2614,2614,2614,2614,2614,2614,2614,2614,2614,2614,2615,0,0,0,2613,2614,2954,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,4522,0,0,0,0,0,0, 4524,0,2613,2614,2614,2614,2614,2614,2614,2614,2614,2614,2614,2615,0,659,0,2613,2614,2615,0,4409,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4410,4635,0,0,0,0,0,0, 4524,0,2613,2614,2614,2614,2614,2614,2614,2614,2614,2614,2614,2615,0,0,0,2613,2614,2615,0,4522,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 4524,0,2613,2614,2614,2614,2614,2614,2614,2614,2614,2614,2614,2615,0,659,0,2613,2614,2615,0,4522,0,0,0,0,0,4524,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,4522,0, 4524,0,2613,2614,2614,2614,2614,2614,2614,2614,2614,2614,2614,2614,2501,2501,2501,2614,2614,2954,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2733,2733,2733,2733,2620,2620,2620,4522,0, 4524,0,2613,2614,2614,2614,2614,2614,2614,2614,2614,2614,2614,2614,2614,2614,2614,2614,2614,2954,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2621,0,0,0,0,2619,2620,2620,4522,0, 4524,0,2613,2614,2614,2614,2614,2614,2614,2614,2614,2614,2614,2614,2614,2727,2727,2614,2614,2954,2620,2620,2620,2620,2620,2620,2620,2620,2620,2620,2621,0,0,0,0,2619,2620,2620,4522,0, 4524,0,2613,2614,2614,2614,2614,2614,2614,2614,2614,2614,2614,2614,2615,0,0,2613,2614,2615,0,2149,2150,2150,2150,2150,2150,2151,2620,2620,2621,0,0,0,0,2619,2620,2620,2262,4866, 4524,0,2726,2727,2727,2727,2727,2727,2727,2727,2727,2727,2727,2727,2728,0,0,2613,2614,2615,0,2262,0,0,0,0,0,2264,2620,2620,2620,2507,2507,2507,2507,2620,2620,2620,2262,4979, 2265,2150,2150,2150,2150,2150,2150,2151,0,0,0,0,0,0,0,0,0,2613,2614,2615,0,2262,0,0,0,0,0,2265,2150,2150,2151,2620,2620,2620,2620,2149,2150,2150,2266,4979, 0,0,5090,5091,5091,5429,0,2265,2150,2150,2150,2150,2150,2150,2150,2151,0,2613,2614,2615,0,2262,0,0,0,0,0,0,0,0,2264,2620,2620,2620,2620,2262,5430,5091,5091,5092, 0,0,0,0,0,5090,5091,5429,0,0,0,0,0,0,0,2265,2150,1348,1349,1349,2150,2266,0,0,0,0,0,0,0,0,2265,2150,1348,1349,2150,2266,4979,0,0,0, 0,0,0,0,0,0,0,4977,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4979,0,0,0 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,218,0,0,0,0,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,0,0,0,0, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,0,0,0,0,331,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,0,0,0,0, 219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,331,0,0,0,0,0,331,219,219,219,219,219,219,219,219,219,219,219,219,219,219,0,0,0,0, 331,219,219,219,219,219,219,219,219,219,219,219,219,219,219,2016,0,0,0,0,0,2014,219,219,219,219,219,219,219,219,219,219,219,219,219,219,0,0,0,0, 0,219,219,219,219,219,219,219,219,219,219,219,219,219,219,2016,0,0,0,0,0,2014,219,219,219,219,219,219,219,219,219,219,219,219,219,219,0,0,0,0, 0,219,219,219,219,219,219,219,219,219,219,219,219,219,331,2016,0,0,0,0,0,2014,331,219,219,219,219,219,219,219,219,219,219,219,219,219,0,0,202,203, 0,219,219,219,219,219,219,219,219,219,219,219,219,331,0,2016,0,0,0,0,0,2014,0,331,219,219,219,219,219,219,219,219,219,219,219,219,202,203,315,316, 0,219,219,331,331,331,331,331,331,331,331,331,331,0,0,2016,2933,2934,2934,2934,2935,2014,0,0,331,2341,2342,2342,2342,2342,2342,2348,219,219,219,219,315,316,0,0, 0,219,219,2016,1902,1902,1902,1902,604,605,606,607,608,1902,1902,2129,3046,3047,3047,3047,3048,2127,1902,1902,1902,2454,2455,2455,2455,2455,2455,2461,331,331,331,331,0,0,0,0, 0,331,219,2016,0,0,0,0,717,718,719,720,721,0,0,0,3159,0,0,0,3161,0,0,0,0,2454,2455,2455,2455,2455,2455,2461,0,0,0,0,0,0,0,0, 0,0,219,2016,0,0,0,89,830,831,832,833,834,0,0,0,0,0,0,0,0,0,0,0,0,2567,2568,2568,2568,2568,2568,2574,0,0,0,0,0,0,0,0, 0,0,219,2016,0,0,0,89,943,944,945,946,947,89,0,0,0,0,0,0,0,0,0,0,0,2680,2682,2683,2684,2685,2686,2687,0,0,0,0,0,0,0,0, 0,0,331,2016,0,0,0,89,1056,1057,1058,1059,1060,89,0,0,0,0,0,0,0,0,0,0,205,2793,2794,2796,2797,2798,2794,2800,0,0,0,0,0,0,0,0, 0,0,0,2016,0,0,0,205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,2016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,2016,0,0,0,0,0,0,0,0,0,0,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,203, 0,0,0,2016,932,933,933,935,0,0,0,0,0,0,0,0,0,0,23,24,25,26,0,0,0,0,0,0,0,0,0,0,3524,3524,3524,3524,3524,3524,315,316, 0,0,0,2016,1045,1046,1046,1048,0,0,0,0,0,0,0,0,0,0,136,137,138,139,0,0,0,0,0,0,0,0,0,0,0,0,0,202,203,0,0,0, 0,0,0,2016,1158,1159,1160,1161,0,0,0,0,0,0,0,0,0,0,249,250,251,252,2014,0,0,0,0,0,0,0,0,0,0,202,203,315,316,0,0,0, 0,0,0,2016,1266,1267,1268,1270,205,0,0,0,0,0,0,0,0,0,362,363,364,365,2014,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0,0, 0,0,0,2016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2014,0,0,0,0,0,0,0,0,0,0,0,202,203,0,0,0,0, 0,2016,1902,2129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2014,0,0,0,0,0,0,0,0,0,0,0,315,316,0,0,0,0, 0,2016,2213,2214,2214,2214,2217,0,0,0,0,0,0,0,0,0,205,0,0,0,0,0,2014,0,0,0,3297,3298,2535,2536,2537,2537,2539,2540,3298,3299,0,0,0,0, 0,2016,2326,2327,2327,2327,2330,0,0,0,0,0,27,28,28,30,0,0,0,0,0,0,2014,0,0,3297,0,0,2648,2649,2650,2651,2652,2653,0,0,3299,0,0,0, 0,2016,2439,2440,2440,2440,2443,0,0,0,0,0,140,141,142,143,0,0,0,0,0,0,2014,0,0,3410,0,0,2761,2762,2763,2764,2765,2766,0,0,3412,0,0,0, 0,2016,2552,2553,2554,2555,2556,0,0,0,0,0,253,254,255,256,0,0,0,0,0,0,2014,0,0,3410,0,89,2874,2875,2876,2876,2878,2879,89,0,3412,0,0,0, 0,2016,2665,2666,2667,2668,2669,0,205,0,0,0,362,363,368,369,0,0,0,0,0,0,3298,3298,3298,0,205,89,2987,2988,2989,2989,2991,2992,89,0,3412,0,0,0, 0,2016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3100,3100,3102,3102,3105,3105,0,0,3412,0,0,0, 0,2016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3412,0,0,0, 0,2016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3524,3524,3524,0,0,0,0,0,0,0,0,0,0,0,3412,0,0,0, 0,2016,0,0,0,0,0,0,2933,2934,2934,2934,2935,0,0,0,0,0,0,0,0,0,2014,0,0,3523,3524,3524,3524,3524,3524,3524,3524,3524,3524,3524,3525,0,0,0, 0,2016,0,0,0,0,0,0,3046,3047,3047,3047,3048,0,0,0,0,0,0,0,0,0,2014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,2016,1902,1902,1902,1902,1902,1902,3159,0,0,0,3161,1902,1903,0,0,0,0,0,0,0,2014,0,2224,2226,2225,2225,2225,2225,2226,2227,0,0,0,0,0,0,0,0, 0,2016,0,0,2936,0,0,0,0,0,0,0,0,2937,2016,0,0,0,0,0,0,0,2014,0,2337,2339,2338,2338,2338,2338,2339,2340,0,0,0,0,0,0,0,0, 0,2016,0,0,3049,2937,2938,0,0,0,0,0,2937,0,2016,0,0,0,0,0,0,0,2127,1902,2110,2111,2111,2111,2111,2111,2111,2112,0,3274,0,0,0,3274,0,0, 0,2016,0,2937,2938,3163,2938,0,0,0,0,2936,3050,0,2016,0,0,0,0,0,0,3380,3381,3382,2110,2111,2111,2111,2111,2111,2111,2112,0,0,2364,2365,0,0,0,0, 0,2016,0,3275,2938,3163,3164,3051,0,0,92,3164,3163,0,2016,0,0,0,0,0,0,3493,3494,3495,2563,2564,2564,2564,2565,2564,2565,2566,0,2476,2477,2478,0,0,0,0, 0,2016,0,3163,3163,3275,3051,0,0,0,0,0,3163,0,2016,0,0,0,0,0,0,0,0,0,2676,2677,2678,2677,2677,2677,2677,2679,0,2589,2590,2591,0,2816,2817,0, 0,2016,0,0,3276,3276,0,0,0,0,3275,3164,3275,0,2016,0,0,0,0,0,0,0,0,205,2789,2790,2791,2790,2790,2790,2790,2792,3299,2702,2703,2704,2928,2929,2930,0, 0,2016,0,0,2938,3276,0,0,0,3275,2936,0,3051,0,2016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3298,3298,3298,3274,3298,3299,0, 0,2016,0,0,0,0,0,0,0,0,0,0,0,0,2016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3412,0, 0,2016,3387,3388,3615,3389,3390,3275,3276,0,3387,3388,3389,3390,2016,0,0,0,0,0,932,933,933,935,932,933,933,933,933,935,0,0,0,0,0,0,0,0,3274,0, 0,2016,3500,3501,3728,3502,3503,2937,0,0,3500,3501,3502,3503,2016,0,0,0,0,0,1045,1046,1046,1048,1045,1046,1046,1046,1046,1048,0,0,0,3524,3524,3524,3524,3524,3525,0, 0,2016,3159,3163,3163,0,3161,3163,0,0,3159,2938,2938,3161,2016,0,0,0,0,0,1158,1159,1160,1161,1158,1160,1047,1160,1047,1161,0,0,3412,0,0,0,0,0,0,0, 0,2016,0,2938,0,0,0,0,0,0,0,0,3275,2936,2016,0,0,0,0,0,1266,1267,1268,1270,1266,1268,1269,1268,1269,1270,0,0,3412,0,0,2816,2817,0,0,0, 0,2016,3387,3388,3615,3389,3390,3162,0,0,3387,3388,3389,3390,2016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3412,0,2928,2929,2930,0,0,0, 0,2016,3500,3501,3728,3502,3503,2936,3162,0,3500,3501,3502,3503,2016,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3412,0,3041,3042,3043,0,0,0, 0,2016,3159,3051,0,0,3161,3276,2938,0,3159,0,0,3161,2016,0,0,0,0,0,3524,3524,3524,3524,3524,3524,3524,3524,3524,3524,3524,3274,3525,0,0,0,0,0,0,0, 0,2016,2936,0,0,0,0,0,0,0,0,0,0,2937,2016,0,0,0,0,0,3410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2816,2817,0,0, 0,2016,3387,3388,3615,3389,3390,0,0,0,3387,3388,3389,3390,2016,0,0,0,0,0,3410,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2928,2929,2930,0,0, 0,2016,3500,3501,3728,3502,3503,0,3275,0,3500,3501,3502,3503,2016,0,0,0,0,0,3410,0,0,0,0,0,0,0,3297,3298,3298,3298,3298,3298,3298,3298,3298,3299,0,0, 0,2016,3159,3051,3051,0,3161,0,3162,0,3159,0,3163,3161,205,0,0,0,0,0,3298,3298,3298,3298,3298,3298,3298,3298,0,0,0,0,3272,3273,0,0,0,3412,0,0, 0,2016,0,3163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3385,3386,0,0,0,3412,0,0, 0,2016,0,3275,3163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3498,3499,0,0,0,3412,0,0, 0,2016,0,0,0,0,2936,3162,3051,3275,3164,3276,3276,0,0,0,0,0,0,0,3412,3298,3298,3298,3298,3298,3298,3298,3410,0,0,0,3611,3612,0,0,0,3412,0,0, 0,2016,0,0,0,0,3162,2936,2937,2936,0,0,0,0,0,0,0,0,0,0,3412,0,0,0,0,0,0,0,3410,0,0,0,0,0,0,0,0,3412,0,0, 0,3298,3298,3298,3298,3298,3298,3298,3050,3049,0,0,0,0,0,0,0,0,0,0,3412,0,0,0,0,0,0,0,3298,3298,3298,3410,0,0,3412,3298,3298,3298,0,0, 0,0,0,202,203,0,0,0,3298,3298,3298,3298,3298,3298,3298,3298,3410,0,0,0,3412,0,0,0,0,0,0,0,0,0,0,3410,0,0,3412,0,0,202,203,0, 0,202,203,315,316,0,0,0,0,0,0,0,0,0,0,0,3298,0,0,0,3298,0,0,0,0,0,0,0,0,0,0,3298,0,0,3298,0,0,315,316,0, 0,315,316,0,0,0,0,0,0,0,0,0,0,0,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,203 ================================================ FILE: maps/hoenn/southern-island.tmx ================================================ 116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,0, 116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,0, 116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,0, 116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,0, 116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,0, 116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,0, 116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,0,0, 116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,0,0, 116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,0,0, 0,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,0,0, 0,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,0,0, 0,0,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,0,0, 0,0,116,116,116,116,116,116,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,0,0, 0,0,116,116,116,116,116,116,0,0,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,0,0,0, 0,0,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,0,116,116,0,0,0, 0,0,116,116,116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,116,116,116,116,0,0,0,0, 0,0,0,0,0,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,116,116,116,116,116,116,116,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,116,116,116,116,116,116,116,116,116,116,116,116,116,116,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,3402,3402,3402,3402,3402,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,3402,3402,3402,3402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,3402,3402,3402,3402,3402,3402,3402,3402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,3402,3402,3402,3402,3402,3402,3402,3402,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,115,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,230,117,117,117,0, 0,115,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,117,117,117,0, 0,115,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,117,117,117,0, 0,115,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,341,230,117,117,0, 0,115,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,117,0,117,117,0, 342,115,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,230,117,341,230,117,0, 115,115,228,229,342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,0,117,117,341,230,0, 115,228,342,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,341,230,117,117,0,0, 228,342,115,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,117,0,117,117,0,0, 342,115,228,342,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117,117,0,117,117,0,0, 115,228,342,115,228,229,229,342,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,341,1348,1349,230,117,0,117,117,0,0, 228,342,115,228,342,0,0,115,0,0,0,0,0,0,0,0,0,0,341,229,229,229,229,230,0,0,0,117,341,230,117,0,0, 0,115,115,0,228,229,342,228,229,229,342,0,0,0,0,0,0,341,230,0,0,0,0,341,1348,1349,229,230,117,0,117,0,0, 0,115,115,0,0,0,228,0,0,342,228,229,229,229,229,229,229,230,341,229,229,229,229,230,0,0,0,0,117,341,230,0,0, 0,115,228,229,229,229,342,0,0,228,342,0,0,0,341,229,229,229,230,0,0,0,0,0,0,0,341,229,230,117,0,0,0, 0,115,0,0,0,0,228,229,229,342,228,229,229,229,230,0,0,0,0,0,0,0,0,0,0,341,230,0,341,230,0,0,0, 0,228,229,229,342,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,341,229,229,229,229,230,341,229,230,0,0,0,0, 0,0,0,0,228,229,229,342,0,228,229,229,229,229,229,1348,1349,229,229,229,230,341,229,229,229,229,230,0,0,0,0,0,0, 0,0,0,0,0,0,0,228,229,229,229,229,229,229,0,0,0,0,229,229,229,230,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,0,0,0,0,0,0, 0,0,0,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,0,0,0,0,0,0, 0,0,0,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,219,0,0,0,0,0,0, 0,0,0,219,219,219,219,219,219,219,219,219,219,219,331,331,219,219,219,219,219,219,219,219,219,219,219,0,0,0,0,0,0, 0,0,0,331,219,219,219,219,219,219,219,219,219,219,0,0,219,219,219,219,219,219,219,219,219,219,331,0,0,0,0,0,0, 0,0,0,0,331,219,219,219,219,219,219,219,219,331,0,0,331,219,219,219,219,219,219,219,219,219,0,0,0,0,0,0,0, 0,0,0,0,0,219,219,219,219,219,219,219,219,0,0,0,205,219,219,331,331,331,331,331,331,219,0,0,0,0,0,0,0, 0,0,0,0,0,219,219,219,219,219,219,219,219,0,0,0,0,331,331,0,218,218,218,0,0,331,0,0,0,0,0,0,0, 0,0,0,0,0,331,219,219,219,219,219,219,219,218,0,0,0,0,0,218,219,219,219,218,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,331,331,219,219,219,219,219,219,218,0,0,0,218,219,219,219,219,331,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,218,218,0,331,219,219,219,219,219,219,218,218,218,331,331,331,331,331,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,331,331,0,0,331,331,219,219,219,219,219,219,331,0,218,218,218,218,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,331,331,331,331,331,331,0,0,331,331,331,331,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,218,218,0,0,218,218,218,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,331,331,0,0,331,331,331,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,3410,0,0,3412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,3410,0,0,3412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,3297,3298,3298,3298,0,0,0,3412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,3410,0,0,0,0,0,0,3412,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,1465,1466,1466,1463,1464,1466,1466,1467,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,1578,0,0,0,0,0,0,1580,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,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: maps/hoenn/verdanturf-town.tmx ================================================ 116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 116,116,116,116,116,116,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114, 114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114,114 229,229,230,0,0,341,229,229,229,229,229,229,229,229,229,229,229,229,230,117, 0,0,0,0,0,117,341,229,229,229,229,229,229,229,229,229,229,229,229,230, 229,229,229,229,229,230,117,2037,2037,2037,2037,0,0,0,0,0,0,0,0,0, 229,229,229,229,229,229,230,2037,2037,2037,2037,0,0,0,2037,2037,0,0,0,0, 0,0,0,0,0,0,2037,2037,2037,2037,2037,2037,0,0,2037,2037,0,0,2037,0, 0,0,0,0,0,0,2037,2037,2037,2037,2037,2037,0,0,2037,2037,0,0,2037,2037, 0,0,0,0,0,0,2037,662,2037,2037,2037,2037,0,0,2037,2037,0,0,2037,2037, 0,0,0,0,0,0,0,2037,2037,2037,2037,0,0,0,0,0,0,0,2037,2037, 0,2037,2037,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2037,2037,2037, 2038,2037,2037,2037,0,0,0,0,0,0,0,0,0,0,0,0,2037,2037,2037,2037, 662,2037,2037,2037,2037,2037,2037,2037,2037,2037,662,2037,2037,0,0,2037,2037,2037,2037,2037, 0,0,0,0,2037,2037,2037,2037,0,0,0,0,0,0,0,2037,2037,2037,2037,2037, 0,0,0,0,2037,2037,2037,2037,0,0,0,0,0,0,0,2037,2037,2037,2037,2037, 0,0,0,0,662,2037,662,662,0,0,0,0,0,0,0,2037,2037,2037,2037,2037, 0,0,0,0,2037,662,662,2037,0,0,0,0,0,0,0,2037,2037,2037,2037,2037, 0,2037,2037,2037,2037,2037,2037,2037,2037,2037,2037,0,0,0,2037,2037,2037,2037,2037,2037, 0,2037,2037,2037,2037,2037,2037,2037,2037,2037,2037,2037,2037,2037,2037,2037,2037,2037,2037,2037, 0,662,2037,2037,2037,2037,662,0,0,0,0,0,662,2037,2037,2037,2037,2037,2037,0, 0,0,0,662,2037,2037,0,0,0,0,0,0,0,2037,2037,2037,2037,2037,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 0,0,0,0,0,0,0,0,456,0,0,27,28,28,30,23,24,25,26,0, 0,0,0,0,0,0,0,0,569,0,0,140,141,142,143,136,137,138,139,0, 0,0,0,0,0,0,0,0,0,0,2014,253,254,255,256,249,250,251,252,218, 218,604,605,606,607,608,0,205,0,0,2014,362,363,368,369,362,363,364,365,219, 219,717,718,719,720,721,0,0,0,0,0,0,0,0,0,0,0,0,0,331, 219,830,831,832,833,834,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 219,943,944,945,946,947,0,0,0,0,0,0,0,0,205,0,0,0,0,0, 219,1056,1057,1058,1059,1060,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 331,205,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 4769,4770,4770,4772,0,0,0,0,4769,4770,4770,4770,4772,0,0,0,0,0,0,0, 4882,4883,4883,4885,1902,1902,1902,1902,4882,4883,4883,4883,4885,0,0,0,4769,4770,4770,4772, 4995,4996,4999,5000,0,0,0,0,4995,4999,4996,4999,5000,0,0,0,4882,4883,4883,4885, 5108,5109,5112,5113,0,0,0,205,5108,5112,5109,5112,5113,0,0,0,4995,4996,4999,5000, 321,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5108,5109,5112,5113, 434,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, 218,0,0,0,0,0,0,218,218,218,218,0,0,0,0,0,0,0,0,218, 219,218,218,0,0,0,218,219,219,219,219,218,218,0,0,320,320,320,218,219, 219,219,219,218,218,218,219,219,219,219,219,219,219,218,218,218,218,218,219,219 ================================================ FILE: vercel.json ================================================ { "headers": [ { "source": "/(.+)", "headers" : [ { "key" : "Cache-Control", "value" : "public, max-age=86400, immutable" } ] }, { "source": "/(index.html)?", "headers" : [ { "key" : "Cache-Control", "value" : "no-store, no-cache" } ] } ], "github": { "silent": true, "autoJobCancelation": true } }