diff --git a/.editorconfig b/.editorconfig
new file mode 100644
index 0000000..121dc65
--- /dev/null
+++ b/.editorconfig
@@ -0,0 +1,13 @@
+[*]
+charset=utf-8
+end_of_line=lf
+insert_final_newline=true
+indent_style=space
+indent_size=4
+ij_kotlin_name_count_to_use_star_import = 1
+
+[*.json]
+indent_size=2
+
+[*.yml]
+indent_size = 2
diff --git a/.github/workflows/deploy-js.yml b/.github/workflows/deploy-js.yml
new file mode 100644
index 0000000..97002b7
--- /dev/null
+++ b/.github/workflows/deploy-js.yml
@@ -0,0 +1,35 @@
+# Deploy JS game to GitHub Pages
+name: "🚀 Deploy JS"
+
+on:
+ push:
+ branches: [ "main" ]
+ workflow_dispatch:
+
+env:
+ JAVA_DISTRIBUTION: zulu
+ JAVA_VERSION: 21
+
+# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
+permissions:
+ contents: read
+ pages: write
+ id-token: write
+
+concurrency:
+ group: "pages"
+ cancel-in-progress: true
+
+jobs:
+ build:
+ environment:
+ name: github-pages
+ url: ${{ steps.deployment.outputs.page_url }}
+ runs-on: ubuntu-latest
+ steps:
+ - { uses: actions/checkout@v4 }
+ - { name: Set up JDK, uses: actions/setup-java@v3, with: { distribution: "${{ env.JAVA_DISTRIBUTION }}", java-version: "${{ env.JAVA_VERSION }}" } }
+ - { name: Prepare Gradle, uses: gradle/actions/setup-gradle@417ae3ccd767c252f5661f1ace9f835f9654f2b5 } # v3.1.0
+ - { name: Buid JS bundle, run: ./gradlew jsBrowserProductionWebpack }
+ - { name: Upload artifact, uses: actions/upload-pages-artifact@v3, with: { path: 'build/dist/js/productionExecutable' } }
+ - { name: Deploy 🚀 to GitHub Pages, id: deployment, uses: actions/deploy-pages@v4}
diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml
new file mode 100644
index 0000000..caeb5d7
--- /dev/null
+++ b/.github/workflows/gradle.yml
@@ -0,0 +1,26 @@
+# This workflow will build a Java project with Gradle
+# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
+
+name: "🧪 Testing"
+
+on:
+ push
+
+env:
+ JAVA_DISTRIBUTION: zulu
+ JAVA_VERSION: 21
+
+concurrency:
+ group: "testing"
+ cancel-in-progress: false
+
+jobs:
+ build:
+
+ runs-on: ubuntu-latest
+
+ steps:
+ - { uses: actions/checkout@v4 }
+ - { name: Set up JDK, uses: actions/setup-java@v3, with: { distribution: "${{ env.JAVA_DISTRIBUTION }}", java-version: "${{ env.JAVA_VERSION }}" } }
+ - { name: Prepare Gradle, uses: gradle/actions/setup-gradle@417ae3ccd767c252f5661f1ace9f835f9654f2b5 } # v3.1.0
+ - { name: Build with Gradle, run: ./gradlew jvmTest }
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..4395010
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,14 @@
+/.gradle
+/.idea
+/build
+/modules
+/bundles
+/deps
+*.iml
+*.hprof
+*.log
+korge.keystore
+local.properties
+src/main/*
+.DS_Store
+
diff --git a/.run/runJvmAutoreload.run.xml b/.run/runJvmAutoreload.run.xml
new file mode 100644
index 0000000..bc4b653
--- /dev/null
+++ b/.run/runJvmAutoreload.run.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+
+ true
+ true
+ false
+ false
+
+
+
\ No newline at end of file
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..74b774f
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,21 @@
+MIT License
+
+Copyright (c) 2017 Carlos Ballesteros Velasco
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/README.md b/README.md
index f165933..bd8a8c9 100644
--- a/README.md
+++ b/README.md
@@ -1 +1,6 @@
-# korgee
\ No newline at end of file
+# Korgee a platformer game built with the KorGe game engine
+
+This is a platformer game built with the KorGe game engine. Using gradle with kotlin-dsl.
+You can open this project in IntelliJ IDEA by opening the folder or the build.gradle.kts file.
+
+You can find the KorGE documentation here:
diff --git a/build.gradle.kts b/build.gradle.kts
new file mode 100644
index 0000000..ad1428c
--- /dev/null
+++ b/build.gradle.kts
@@ -0,0 +1,34 @@
+import korlibs.korge.gradle.*
+
+plugins {
+ alias(libs.plugins.korge)
+}
+
+korge {
+ id = "com.sample.demo"
+
+// To enable all targets at once
+
+ //targetAll()
+
+// To enable targets based on properties/environment variables
+ //targetDefault()
+
+// To selectively enable targets
+
+ targetJvm()
+ targetJs()
+ targetWasm()
+ targetDesktop()
+ targetIos()
+ targetAndroid()
+
+ serializationJson()
+}
+
+
+dependencies {
+ add("commonMainApi", project(":deps"))
+ //add("commonMainApi", project(":korge-dragonbones"))
+}
+
diff --git a/deps.kproject.yml b/deps.kproject.yml
new file mode 100644
index 0000000..e2de545
--- /dev/null
+++ b/deps.kproject.yml
@@ -0,0 +1,4 @@
+dependencies:
+- https://github.com/korlibs/korge-ldtk/tree/v1.0.2/korge-ldtk##3cc31bddd707037084f8e0d764a9706cc99f0bfb
+- https://github.com/korlibs/korge-mascots/tree/v1.0.0/korge-mascots##dd8f5d14fa7b637dfdcfd2fc76d3cbf612f7b72e
+- https://github.com/korlibs/korge-virtualcontroller/tree/v1.0.2/korge-virtualcontroller##df0e840b8171bb3f5b8f7a86b77fbe39e725be16
diff --git a/gradle.properties b/gradle.properties
new file mode 100644
index 0000000..90ee1c5
--- /dev/null
+++ b/gradle.properties
@@ -0,0 +1,7 @@
+org.gradle.jvmargs=-Xmx4g
+kotlin.mpp.stability.nowarn=true
+kotlin.mpp.androidSourceSetLayoutVersion=2
+android.useAndroidX=true
+org.gradle.warning.mode=none
+org.gradle.configuration-cache=true
+org.gradle.configuration-cache.problems=warn
diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml
new file mode 100644
index 0000000..1b54d7e
--- /dev/null
+++ b/gradle/libs.versions.toml
@@ -0,0 +1,3 @@
+[plugins]
+korge = { id = "com.soywiz.korge", version = "5.3.2" }
+#korge = { id = "com.soywiz.korge", version = "999.0.0.999" }
diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar
new file mode 100644
index 0000000..7f93135
Binary files /dev/null and b/gradle/wrapper/gradle-wrapper.jar differ
diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties
new file mode 100644
index 0000000..1af9e09
--- /dev/null
+++ b/gradle/wrapper/gradle-wrapper.properties
@@ -0,0 +1,7 @@
+distributionBase=GRADLE_USER_HOME
+distributionPath=wrapper/dists
+distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
+networkTimeout=10000
+validateDistributionUrl=true
+zipStoreBase=GRADLE_USER_HOME
+zipStorePath=wrapper/dists
diff --git a/gradlew b/gradlew
new file mode 100644
index 0000000..0adc8e1
--- /dev/null
+++ b/gradlew
@@ -0,0 +1,249 @@
+#!/bin/sh
+
+#
+# Copyright © 2015-2021 the original authors.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# https://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+##############################################################################
+#
+# Gradle start up script for POSIX generated by Gradle.
+#
+# Important for running:
+#
+# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is
+# noncompliant, but you have some other compliant shell such as ksh or
+# bash, then to run this script, type that shell name before the whole
+# command line, like:
+#
+# ksh Gradle
+#
+# Busybox and similar reduced shells will NOT work, because this script
+# requires all of these POSIX shell features:
+# * functions;
+# * expansions «$var», «${var}», «${var:-default}», «${var+SET}»,
+# «${var#prefix}», «${var%suffix}», and «$( cmd )»;
+# * compound commands having a testable exit status, especially «case»;
+# * various built-in commands including «command», «set», and «ulimit».
+#
+# Important for patching:
+#
+# (2) This script targets any POSIX shell, so it avoids extensions provided
+# by Bash, Ksh, etc; in particular arrays are avoided.
+#
+# The "traditional" practice of packing multiple parameters into a
+# space-separated string is a well documented source of bugs and security
+# problems, so this is (mostly) avoided, by progressively accumulating
+# options in "$@", and eventually passing that to Java.
+#
+# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS,
+# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly;
+# see the in-line comments for details.
+#
+# There are tweaks for specific operating systems such as AIX, CygWin,
+# Darwin, MinGW, and NonStop.
+#
+# (3) This script is generated from the Groovy template
+# https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
+# within the Gradle project.
+#
+# You can find Gradle at https://github.com/gradle/gradle/.
+#
+##############################################################################
+
+# Attempt to set APP_HOME
+
+# Resolve links: $0 may be a link
+app_path=$0
+
+# Need this for daisy-chained symlinks.
+while
+ APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path
+ [ -h "$app_path" ]
+do
+ ls=$( ls -ld "$app_path" )
+ link=${ls#*' -> '}
+ case $link in #(
+ /*) app_path=$link ;; #(
+ *) app_path=$APP_HOME$link ;;
+ esac
+done
+
+# This is normally unused
+# shellcheck disable=SC2034
+APP_BASE_NAME=${0##*/}
+# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
+APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit
+
+# Use the maximum available, or set MAX_FD != -1 to use that value.
+MAX_FD=maximum
+
+warn () {
+ echo "$*"
+} >&2
+
+die () {
+ echo
+ echo "$*"
+ echo
+ exit 1
+} >&2
+
+# OS specific support (must be 'true' or 'false').
+cygwin=false
+msys=false
+darwin=false
+nonstop=false
+case "$( uname )" in #(
+ CYGWIN* ) cygwin=true ;; #(
+ Darwin* ) darwin=true ;; #(
+ MSYS* | MINGW* ) msys=true ;; #(
+ NONSTOP* ) nonstop=true ;;
+esac
+
+CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
+
+
+# Determine the Java command to use to start the JVM.
+if [ -n "$JAVA_HOME" ] ; then
+ if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
+ # IBM's JDK on AIX uses strange locations for the executables
+ JAVACMD=$JAVA_HOME/jre/sh/java
+ else
+ JAVACMD=$JAVA_HOME/bin/java
+ fi
+ if [ ! -x "$JAVACMD" ] ; then
+ die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
+
+Please set the JAVA_HOME variable in your environment to match the
+location of your Java installation."
+ fi
+else
+ JAVACMD=java
+ if ! command -v java >/dev/null 2>&1
+ then
+ die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
+
+Please set the JAVA_HOME variable in your environment to match the
+location of your Java installation."
+ fi
+fi
+
+# Increase the maximum file descriptors if we can.
+if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
+ case $MAX_FD in #(
+ max*)
+ # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked.
+ # shellcheck disable=SC3045
+ MAX_FD=$( ulimit -H -n ) ||
+ warn "Could not query maximum file descriptor limit"
+ esac
+ case $MAX_FD in #(
+ '' | soft) :;; #(
+ *)
+ # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.
+ # shellcheck disable=SC3045
+ ulimit -n "$MAX_FD" ||
+ warn "Could not set maximum file descriptor limit to $MAX_FD"
+ esac
+fi
+
+# Collect all arguments for the java command, stacking in reverse order:
+# * args from the command line
+# * the main class name
+# * -classpath
+# * -D...appname settings
+# * --module-path (only if needed)
+# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables.
+
+# For Cygwin or MSYS, switch paths to Windows format before running java
+if "$cygwin" || "$msys" ; then
+ APP_HOME=$( cygpath --path --mixed "$APP_HOME" )
+ CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" )
+
+ JAVACMD=$( cygpath --unix "$JAVACMD" )
+
+ # Now convert the arguments - kludge to limit ourselves to /bin/sh
+ for arg do
+ if
+ case $arg in #(
+ -*) false ;; # don't mess with options #(
+ /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath
+ [ -e "$t" ] ;; #(
+ *) false ;;
+ esac
+ then
+ arg=$( cygpath --path --ignore --mixed "$arg" )
+ fi
+ # Roll the args list around exactly as many times as the number of
+ # args, so each arg winds up back in the position where it started, but
+ # possibly modified.
+ #
+ # NB: a `for` loop captures its iteration list before it begins, so
+ # changing the positional parameters here affects neither the number of
+ # iterations, nor the values presented in `arg`.
+ shift # remove old arg
+ set -- "$@" "$arg" # push replacement arg
+ done
+fi
+
+
+# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
+DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
+
+# Collect all arguments for the java command;
+# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of
+# shell script including quotes and variable substitutions, so put them in
+# double quotes to make sure that they get re-expanded; and
+# * put everything else in single quotes, so that it's not re-expanded.
+
+set -- \
+ "-Dorg.gradle.appname=$APP_BASE_NAME" \
+ -classpath "$CLASSPATH" \
+ org.gradle.wrapper.GradleWrapperMain \
+ "$@"
+
+# Stop when "xargs" is not available.
+if ! command -v xargs >/dev/null 2>&1
+then
+ die "xargs is not available"
+fi
+
+# Use "xargs" to parse quoted args.
+#
+# With -n1 it outputs one arg per line, with the quotes and backslashes removed.
+#
+# In Bash we could simply go:
+#
+# readarray ARGS < <( xargs -n1 <<<"$var" ) &&
+# set -- "${ARGS[@]}" "$@"
+#
+# but POSIX shell has neither arrays nor command substitution, so instead we
+# post-process each arg (as a line of input to sed) to backslash-escape any
+# character that might be a shell metacharacter, then use eval to reverse
+# that process (while maintaining the separation between arguments), and wrap
+# the whole thing up as a single "set" statement.
+#
+# This will of course break if any of these variables contains a newline or
+# an unmatched quote.
+#
+
+eval "set -- $(
+ printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" |
+ xargs -n1 |
+ sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' |
+ tr '\n' ' '
+ )" '"$@"'
+
+exec "$JAVACMD" "$@"
diff --git a/gradlew.bat b/gradlew.bat
new file mode 100644
index 0000000..93e3f59
--- /dev/null
+++ b/gradlew.bat
@@ -0,0 +1,92 @@
+@rem
+@rem Copyright 2015 the original author or authors.
+@rem
+@rem Licensed under the Apache License, Version 2.0 (the "License");
+@rem you may not use this file except in compliance with the License.
+@rem You may obtain a copy of the License at
+@rem
+@rem https://www.apache.org/licenses/LICENSE-2.0
+@rem
+@rem Unless required by applicable law or agreed to in writing, software
+@rem distributed under the License is distributed on an "AS IS" BASIS,
+@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+@rem See the License for the specific language governing permissions and
+@rem limitations under the License.
+@rem
+
+@if "%DEBUG%"=="" @echo off
+@rem ##########################################################################
+@rem
+@rem Gradle startup script for Windows
+@rem
+@rem ##########################################################################
+
+@rem Set local scope for the variables with windows NT shell
+if "%OS%"=="Windows_NT" setlocal
+
+set DIRNAME=%~dp0
+if "%DIRNAME%"=="" set DIRNAME=.
+@rem This is normally unused
+set APP_BASE_NAME=%~n0
+set APP_HOME=%DIRNAME%
+
+@rem Resolve any "." and ".." in APP_HOME to make it shorter.
+for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
+
+@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
+set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
+
+@rem Find java.exe
+if defined JAVA_HOME goto findJavaFromJavaHome
+
+set JAVA_EXE=java.exe
+%JAVA_EXE% -version >NUL 2>&1
+if %ERRORLEVEL% equ 0 goto execute
+
+echo.
+echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
+echo.
+echo Please set the JAVA_HOME variable in your environment to match the
+echo location of your Java installation.
+
+goto fail
+
+:findJavaFromJavaHome
+set JAVA_HOME=%JAVA_HOME:"=%
+set JAVA_EXE=%JAVA_HOME%/bin/java.exe
+
+if exist "%JAVA_EXE%" goto execute
+
+echo.
+echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
+echo.
+echo Please set the JAVA_HOME variable in your environment to match the
+echo location of your Java installation.
+
+goto fail
+
+:execute
+@rem Setup the command line
+
+set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
+
+
+@rem Execute Gradle
+"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*
+
+:end
+@rem End local scope for the variables with windows NT shell
+if %ERRORLEVEL% equ 0 goto mainEnd
+
+:fail
+rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
+rem the _cmd.exe /c_ return code!
+set EXIT_CODE=%ERRORLEVEL%
+if %EXIT_CODE% equ 0 set EXIT_CODE=1
+if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE%
+exit /b %EXIT_CODE%
+
+:mainEnd
+if "%OS%"=="Windows_NT" endlocal
+
+:omega
diff --git a/kotlin-js-store/yarn.lock b/kotlin-js-store/yarn.lock
new file mode 100644
index 0000000..0de609b
--- /dev/null
+++ b/kotlin-js-store/yarn.lock
@@ -0,0 +1,2794 @@
+# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
+# yarn lockfile v1
+
+
+"@colors/colors@1.5.0":
+ version "1.5.0"
+ resolved "https://registry.yarnpkg.com/@colors/colors/-/colors-1.5.0.tgz#bb504579c1cae923e6576a4f5da43d25f97bdbd9"
+ integrity sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==
+
+"@discoveryjs/json-ext@^0.5.0":
+ version "0.5.7"
+ resolved "https://registry.yarnpkg.com/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz#1d572bfbbe14b7704e0ba0f39b74815b84870d70"
+ integrity sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==
+
+"@jridgewell/gen-mapping@^0.3.0":
+ version "0.3.3"
+ resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz#7e02e6eb5df901aaedb08514203b096614024098"
+ integrity sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==
+ dependencies:
+ "@jridgewell/set-array" "^1.0.1"
+ "@jridgewell/sourcemap-codec" "^1.4.10"
+ "@jridgewell/trace-mapping" "^0.3.9"
+
+"@jridgewell/resolve-uri@^3.1.0":
+ version "3.1.1"
+ resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz#c08679063f279615a3326583ba3a90d1d82cc721"
+ integrity sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==
+
+"@jridgewell/set-array@^1.0.1":
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.1.2.tgz#7c6cf998d6d20b914c0a55a91ae928ff25965e72"
+ integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==
+
+"@jridgewell/source-map@^0.3.3":
+ version "0.3.5"
+ resolved "https://registry.yarnpkg.com/@jridgewell/source-map/-/source-map-0.3.5.tgz#a3bb4d5c6825aab0d281268f47f6ad5853431e91"
+ integrity sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==
+ dependencies:
+ "@jridgewell/gen-mapping" "^0.3.0"
+ "@jridgewell/trace-mapping" "^0.3.9"
+
+"@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.14":
+ version "1.4.15"
+ resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32"
+ integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==
+
+"@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.9":
+ version "0.3.19"
+ resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz#f8a3249862f91be48d3127c3cfe992f79b4b8811"
+ integrity sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==
+ dependencies:
+ "@jridgewell/resolve-uri" "^3.1.0"
+ "@jridgewell/sourcemap-codec" "^1.4.14"
+
+"@leichtgewicht/ip-codec@^2.0.1":
+ version "2.0.4"
+ resolved "https://registry.yarnpkg.com/@leichtgewicht/ip-codec/-/ip-codec-2.0.4.tgz#b2ac626d6cb9c8718ab459166d4bb405b8ffa78b"
+ integrity sha512-Hcv+nVC0kZnQ3tD9GVu5xSMR4VVYOteQIr/hwFPVEvPdlXqgGEuRjiheChHgdM+JyqdgNcmzZOX/tnl0JOiI7A==
+
+"@socket.io/component-emitter@~3.1.0":
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/@socket.io/component-emitter/-/component-emitter-3.1.0.tgz#96116f2a912e0c02817345b3c10751069920d553"
+ integrity sha512-+9jVqKhRSpsc591z5vX+X5Yyw+he/HCB4iQ/RYxw35CEPaY1gnsNE43nf9n9AaYjAQrTiI/mOwKUKdUs9vf7Xg==
+
+"@types/body-parser@*":
+ version "1.19.3"
+ resolved "https://registry.yarnpkg.com/@types/body-parser/-/body-parser-1.19.3.tgz#fb558014374f7d9e56c8f34bab2042a3a07d25cd"
+ integrity sha512-oyl4jvAfTGX9Bt6Or4H9ni1Z447/tQuxnZsytsCaExKlmJiU8sFgnIBRzJUpKwB5eWn9HuBYlUlVA74q/yN0eQ==
+ dependencies:
+ "@types/connect" "*"
+ "@types/node" "*"
+
+"@types/bonjour@^3.5.9":
+ version "3.5.11"
+ resolved "https://registry.yarnpkg.com/@types/bonjour/-/bonjour-3.5.11.tgz#fbaa46a1529ea5c5e46cde36e4be6a880db55b84"
+ integrity sha512-isGhjmBtLIxdHBDl2xGwUzEM8AOyOvWsADWq7rqirdi/ZQoHnLWErHvsThcEzTX8juDRiZtzp2Qkv5bgNh6mAg==
+ dependencies:
+ "@types/node" "*"
+
+"@types/connect-history-api-fallback@^1.3.5":
+ version "1.5.1"
+ resolved "https://registry.yarnpkg.com/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.1.tgz#6e5e3602d93bda975cebc3449e1a318340af9e20"
+ integrity sha512-iaQslNbARe8fctL5Lk+DsmgWOM83lM+7FzP0eQUJs1jd3kBE8NWqBTIT2S8SqQOJjxvt2eyIjpOuYeRXq2AdMw==
+ dependencies:
+ "@types/express-serve-static-core" "*"
+ "@types/node" "*"
+
+"@types/connect@*":
+ version "3.4.36"
+ resolved "https://registry.yarnpkg.com/@types/connect/-/connect-3.4.36.tgz#e511558c15a39cb29bd5357eebb57bd1459cd1ab"
+ integrity sha512-P63Zd/JUGq+PdrM1lv0Wv5SBYeA2+CORvbrXbngriYY0jzLUWfQMQQxOhjONEz/wlHOAxOdY7CY65rgQdTjq2w==
+ dependencies:
+ "@types/node" "*"
+
+"@types/cookie@^0.4.1":
+ version "0.4.1"
+ resolved "https://registry.yarnpkg.com/@types/cookie/-/cookie-0.4.1.tgz#bfd02c1f2224567676c1545199f87c3a861d878d"
+ integrity sha512-XW/Aa8APYr6jSVVA1y/DEIZX0/GMKLEVekNG727R8cs56ahETkRAy/3DR7+fJyh7oUgGwNQaRfXCun0+KbWY7Q==
+
+"@types/cors@^2.8.12":
+ version "2.8.14"
+ resolved "https://registry.yarnpkg.com/@types/cors/-/cors-2.8.14.tgz#94eeb1c95eda6a8ab54870a3bf88854512f43a92"
+ integrity sha512-RXHUvNWYICtbP6s18PnOCaqToK8y14DnLd75c6HfyKf228dxy7pHNOQkxPtvXKp/hINFMDjbYzsj63nnpPMSRQ==
+ dependencies:
+ "@types/node" "*"
+
+"@types/eslint-scope@^3.7.3":
+ version "3.7.5"
+ resolved "https://registry.yarnpkg.com/@types/eslint-scope/-/eslint-scope-3.7.5.tgz#e28b09dbb1d9d35fdfa8a884225f00440dfc5a3e"
+ integrity sha512-JNvhIEyxVW6EoMIFIvj93ZOywYFatlpu9deeH6eSx6PE3WHYvHaQtmHmQeNw7aA81bYGBPPQqdtBm6b1SsQMmA==
+ dependencies:
+ "@types/eslint" "*"
+ "@types/estree" "*"
+
+"@types/eslint@*":
+ version "8.44.3"
+ resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-8.44.3.tgz#96614fae4875ea6328f56de38666f582d911d962"
+ integrity sha512-iM/WfkwAhwmPff3wZuPLYiHX18HI24jU8k1ZSH7P8FHwxTjZ2P6CoX2wnF43oprR+YXJM6UUxATkNvyv/JHd+g==
+ dependencies:
+ "@types/estree" "*"
+ "@types/json-schema" "*"
+
+"@types/estree@*", "@types/estree@^1.0.0":
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.2.tgz#ff02bc3dc8317cd668dfec247b750ba1f1d62453"
+ integrity sha512-VeiPZ9MMwXjO32/Xu7+OwflfmeoRwkE/qzndw42gGtgJwZopBnzy2gD//NN1+go1mADzkDcqf/KnFRSjTJ8xJA==
+
+"@types/express-serve-static-core@*", "@types/express-serve-static-core@^4.17.33":
+ version "4.17.37"
+ resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.17.37.tgz#7e4b7b59da9142138a2aaa7621f5abedce8c7320"
+ integrity sha512-ZohaCYTgGFcOP7u6aJOhY9uIZQgZ2vxC2yWoArY+FeDXlqeH66ZVBjgvg+RLVAS/DWNq4Ap9ZXu1+SUQiiWYMg==
+ dependencies:
+ "@types/node" "*"
+ "@types/qs" "*"
+ "@types/range-parser" "*"
+ "@types/send" "*"
+
+"@types/express@*", "@types/express@^4.17.13":
+ version "4.17.19"
+ resolved "https://registry.yarnpkg.com/@types/express/-/express-4.17.19.tgz#6ff9b4851fda132c5d3dcd2f89fdb6a7a0031ced"
+ integrity sha512-UtOfBtzN9OvpZPPbnnYunfjM7XCI4jyk1NvnFhTVz5krYAnW4o5DCoIekvms+8ApqhB4+9wSge1kBijdfTSmfg==
+ dependencies:
+ "@types/body-parser" "*"
+ "@types/express-serve-static-core" "^4.17.33"
+ "@types/qs" "*"
+ "@types/serve-static" "*"
+
+"@types/http-errors@*":
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/@types/http-errors/-/http-errors-2.0.2.tgz#a86e00bbde8950364f8e7846687259ffcd96e8c2"
+ integrity sha512-lPG6KlZs88gef6aD85z3HNkztpj7w2R7HmR3gygjfXCQmsLloWNARFkMuzKiiY8FGdh1XDpgBdrSf4aKDiA7Kg==
+
+"@types/http-proxy@^1.17.8":
+ version "1.17.12"
+ resolved "https://registry.yarnpkg.com/@types/http-proxy/-/http-proxy-1.17.12.tgz#86e849e9eeae0362548803c37a0a1afc616bd96b"
+ integrity sha512-kQtujO08dVtQ2wXAuSFfk9ASy3sug4+ogFR8Kd8UgP8PEuc1/G/8yjYRmp//PcDNJEUKOza/MrQu15bouEUCiw==
+ dependencies:
+ "@types/node" "*"
+
+"@types/json-schema@*", "@types/json-schema@^7.0.8", "@types/json-schema@^7.0.9":
+ version "7.0.13"
+ resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.13.tgz#02c24f4363176d2d18fc8b70b9f3c54aba178a85"
+ integrity sha512-RbSSoHliUbnXj3ny0CNFOoxrIDV6SUGyStHsvDqosw6CkdPV8TtWGlfecuK4ToyMEAql6pzNxgCFKanovUzlgQ==
+
+"@types/mime@*":
+ version "3.0.2"
+ resolved "https://registry.yarnpkg.com/@types/mime/-/mime-3.0.2.tgz#c1ae807f13d308ee7511a5b81c74f327028e66e8"
+ integrity sha512-Wj+fqpTLtTbG7c0tH47dkahefpLKEbB+xAZuLq7b4/IDHPl/n6VoXcyUQ2bypFlbSwvCr0y+bD4euTTqTJsPxQ==
+
+"@types/mime@^1":
+ version "1.3.3"
+ resolved "https://registry.yarnpkg.com/@types/mime/-/mime-1.3.3.tgz#bbe64987e0eb05de150c305005055c7ad784a9ce"
+ integrity sha512-Ys+/St+2VF4+xuY6+kDIXGxbNRO0mesVg0bbxEfB97Od1Vjpjx9KD1qxs64Gcb3CWPirk9Xe+PT4YiiHQ9T+eg==
+
+"@types/node@*", "@types/node@>=10.0.0":
+ version "20.7.2"
+ resolved "https://registry.yarnpkg.com/@types/node/-/node-20.7.2.tgz#0bdc211f8c2438cfadad26dc8c040a874d478aed"
+ integrity sha512-RcdC3hOBOauLP+r/kRt27NrByYtDjsXyAuSbR87O6xpsvi763WI+5fbSIvYJrXnt9w4RuxhV6eAXfIs7aaf/FQ==
+
+"@types/qs@*":
+ version "6.9.8"
+ resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.8.tgz#f2a7de3c107b89b441e071d5472e6b726b4adf45"
+ integrity sha512-u95svzDlTysU5xecFNTgfFG5RUWu1A9P0VzgpcIiGZA9iraHOdSzcxMxQ55DyeRaGCSxQi7LxXDI4rzq/MYfdg==
+
+"@types/range-parser@*":
+ version "1.2.5"
+ resolved "https://registry.yarnpkg.com/@types/range-parser/-/range-parser-1.2.5.tgz#38bd1733ae299620771bd414837ade2e57757498"
+ integrity sha512-xrO9OoVPqFuYyR/loIHjnbvvyRZREYKLjxV4+dY6v3FQR3stQ9ZxIGkaclF7YhI9hfjpuTbu14hZEy94qKLtOA==
+
+"@types/retry@0.12.0":
+ version "0.12.0"
+ resolved "https://registry.yarnpkg.com/@types/retry/-/retry-0.12.0.tgz#2b35eccfcee7d38cd72ad99232fbd58bffb3c84d"
+ integrity sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==
+
+"@types/send@*":
+ version "0.17.2"
+ resolved "https://registry.yarnpkg.com/@types/send/-/send-0.17.2.tgz#af78a4495e3c2b79bfbdac3955fdd50e03cc98f2"
+ integrity sha512-aAG6yRf6r0wQ29bkS+x97BIs64ZLxeE/ARwyS6wrldMm3C1MdKwCcnnEwMC1slI8wuxJOpiUH9MioC0A0i+GJw==
+ dependencies:
+ "@types/mime" "^1"
+ "@types/node" "*"
+
+"@types/serve-index@^1.9.1":
+ version "1.9.2"
+ resolved "https://registry.yarnpkg.com/@types/serve-index/-/serve-index-1.9.2.tgz#cb26e775678a8526b73a5d980a147518740aaecd"
+ integrity sha512-asaEIoc6J+DbBKXtO7p2shWUpKacZOoMBEGBgPG91P8xhO53ohzHWGCs4ScZo5pQMf5ukQzVT9fhX1WzpHihig==
+ dependencies:
+ "@types/express" "*"
+
+"@types/serve-static@*", "@types/serve-static@^1.13.10":
+ version "1.15.3"
+ resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.15.3.tgz#2cfacfd1fd4520bbc3e292cca432d5e8e2e3ee61"
+ integrity sha512-yVRvFsEMrv7s0lGhzrggJjNOSmZCdgCjw9xWrPr/kNNLp6FaDfMC1KaYl3TSJ0c58bECwNBMoQrZJ8hA8E1eFg==
+ dependencies:
+ "@types/http-errors" "*"
+ "@types/mime" "*"
+ "@types/node" "*"
+
+"@types/sockjs@^0.3.33":
+ version "0.3.34"
+ resolved "https://registry.yarnpkg.com/@types/sockjs/-/sockjs-0.3.34.tgz#43e10e549b36d2ba2589278f00f81b5d7ccda167"
+ integrity sha512-R+n7qBFnm/6jinlteC9DBL5dGiDGjWAvjo4viUanpnc/dG1y7uDoacXPIQ/PQEg1fI912SMHIa014ZjRpvDw4g==
+ dependencies:
+ "@types/node" "*"
+
+"@types/ws@^8.5.1":
+ version "8.5.7"
+ resolved "https://registry.yarnpkg.com/@types/ws/-/ws-8.5.7.tgz#1ca585074fe5d2c81dec7a3d451f244a2a6d83cb"
+ integrity sha512-6UrLjiDUvn40CMrAubXuIVtj2PEfKDffJS7ychvnPU44j+KVeXmdHHTgqcM/dxLUTHxlXHiFM8Skmb8ozGdTnQ==
+ dependencies:
+ "@types/node" "*"
+
+"@webassemblyjs/ast@1.11.6", "@webassemblyjs/ast@^1.11.5":
+ version "1.11.6"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.11.6.tgz#db046555d3c413f8966ca50a95176a0e2c642e24"
+ integrity sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==
+ dependencies:
+ "@webassemblyjs/helper-numbers" "1.11.6"
+ "@webassemblyjs/helper-wasm-bytecode" "1.11.6"
+
+"@webassemblyjs/floating-point-hex-parser@1.11.6":
+ version "1.11.6"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz#dacbcb95aff135c8260f77fa3b4c5fea600a6431"
+ integrity sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==
+
+"@webassemblyjs/helper-api-error@1.11.6":
+ version "1.11.6"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz#6132f68c4acd59dcd141c44b18cbebbd9f2fa768"
+ integrity sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==
+
+"@webassemblyjs/helper-buffer@1.11.6":
+ version "1.11.6"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz#b66d73c43e296fd5e88006f18524feb0f2c7c093"
+ integrity sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==
+
+"@webassemblyjs/helper-numbers@1.11.6":
+ version "1.11.6"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz#cbce5e7e0c1bd32cf4905ae444ef64cea919f1b5"
+ integrity sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==
+ dependencies:
+ "@webassemblyjs/floating-point-hex-parser" "1.11.6"
+ "@webassemblyjs/helper-api-error" "1.11.6"
+ "@xtuc/long" "4.2.2"
+
+"@webassemblyjs/helper-wasm-bytecode@1.11.6":
+ version "1.11.6"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz#bb2ebdb3b83aa26d9baad4c46d4315283acd51e9"
+ integrity sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==
+
+"@webassemblyjs/helper-wasm-section@1.11.6":
+ version "1.11.6"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz#ff97f3863c55ee7f580fd5c41a381e9def4aa577"
+ integrity sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==
+ dependencies:
+ "@webassemblyjs/ast" "1.11.6"
+ "@webassemblyjs/helper-buffer" "1.11.6"
+ "@webassemblyjs/helper-wasm-bytecode" "1.11.6"
+ "@webassemblyjs/wasm-gen" "1.11.6"
+
+"@webassemblyjs/ieee754@1.11.6":
+ version "1.11.6"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz#bb665c91d0b14fffceb0e38298c329af043c6e3a"
+ integrity sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==
+ dependencies:
+ "@xtuc/ieee754" "^1.2.0"
+
+"@webassemblyjs/leb128@1.11.6":
+ version "1.11.6"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.11.6.tgz#70e60e5e82f9ac81118bc25381a0b283893240d7"
+ integrity sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==
+ dependencies:
+ "@xtuc/long" "4.2.2"
+
+"@webassemblyjs/utf8@1.11.6":
+ version "1.11.6"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.11.6.tgz#90f8bc34c561595fe156603be7253cdbcd0fab5a"
+ integrity sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==
+
+"@webassemblyjs/wasm-edit@^1.11.5":
+ version "1.11.6"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz#c72fa8220524c9b416249f3d94c2958dfe70ceab"
+ integrity sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==
+ dependencies:
+ "@webassemblyjs/ast" "1.11.6"
+ "@webassemblyjs/helper-buffer" "1.11.6"
+ "@webassemblyjs/helper-wasm-bytecode" "1.11.6"
+ "@webassemblyjs/helper-wasm-section" "1.11.6"
+ "@webassemblyjs/wasm-gen" "1.11.6"
+ "@webassemblyjs/wasm-opt" "1.11.6"
+ "@webassemblyjs/wasm-parser" "1.11.6"
+ "@webassemblyjs/wast-printer" "1.11.6"
+
+"@webassemblyjs/wasm-gen@1.11.6":
+ version "1.11.6"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz#fb5283e0e8b4551cc4e9c3c0d7184a65faf7c268"
+ integrity sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==
+ dependencies:
+ "@webassemblyjs/ast" "1.11.6"
+ "@webassemblyjs/helper-wasm-bytecode" "1.11.6"
+ "@webassemblyjs/ieee754" "1.11.6"
+ "@webassemblyjs/leb128" "1.11.6"
+ "@webassemblyjs/utf8" "1.11.6"
+
+"@webassemblyjs/wasm-opt@1.11.6":
+ version "1.11.6"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz#d9a22d651248422ca498b09aa3232a81041487c2"
+ integrity sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==
+ dependencies:
+ "@webassemblyjs/ast" "1.11.6"
+ "@webassemblyjs/helper-buffer" "1.11.6"
+ "@webassemblyjs/wasm-gen" "1.11.6"
+ "@webassemblyjs/wasm-parser" "1.11.6"
+
+"@webassemblyjs/wasm-parser@1.11.6", "@webassemblyjs/wasm-parser@^1.11.5":
+ version "1.11.6"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz#bb85378c527df824004812bbdb784eea539174a1"
+ integrity sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==
+ dependencies:
+ "@webassemblyjs/ast" "1.11.6"
+ "@webassemblyjs/helper-api-error" "1.11.6"
+ "@webassemblyjs/helper-wasm-bytecode" "1.11.6"
+ "@webassemblyjs/ieee754" "1.11.6"
+ "@webassemblyjs/leb128" "1.11.6"
+ "@webassemblyjs/utf8" "1.11.6"
+
+"@webassemblyjs/wast-printer@1.11.6":
+ version "1.11.6"
+ resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz#a7bf8dd7e362aeb1668ff43f35cb849f188eff20"
+ integrity sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==
+ dependencies:
+ "@webassemblyjs/ast" "1.11.6"
+ "@xtuc/long" "4.2.2"
+
+"@webpack-cli/configtest@^2.1.0":
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/@webpack-cli/configtest/-/configtest-2.1.1.tgz#3b2f852e91dac6e3b85fb2a314fb8bef46d94646"
+ integrity sha512-wy0mglZpDSiSS0XHrVR+BAdId2+yxPSoJW8fsna3ZpYSlufjvxnP4YbKTCBZnNIcGN4r6ZPXV55X4mYExOfLmw==
+
+"@webpack-cli/info@^2.0.1":
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/@webpack-cli/info/-/info-2.0.2.tgz#cc3fbf22efeb88ff62310cf885c5b09f44ae0fdd"
+ integrity sha512-zLHQdI/Qs1UyT5UBdWNqsARasIA+AaF8t+4u2aS2nEpBQh2mWIVb8qAklq0eUENnC5mOItrIB4LiS9xMtph18A==
+
+"@webpack-cli/serve@^2.0.3":
+ version "2.0.5"
+ resolved "https://registry.yarnpkg.com/@webpack-cli/serve/-/serve-2.0.5.tgz#325db42395cd49fe6c14057f9a900e427df8810e"
+ integrity sha512-lqaoKnRYBdo1UgDX8uF24AfGMifWK19TxPmM5FHc2vAGxrJ/qtyUyFBWoY1tISZdelsQ5fBcOusifo5o5wSJxQ==
+
+"@xtuc/ieee754@^1.2.0":
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/@xtuc/ieee754/-/ieee754-1.2.0.tgz#eef014a3145ae477a1cbc00cd1e552336dceb790"
+ integrity sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==
+
+"@xtuc/long@4.2.2":
+ version "4.2.2"
+ resolved "https://registry.yarnpkg.com/@xtuc/long/-/long-4.2.2.tgz#d291c6a4e97989b5c61d9acf396ae4fe133a718d"
+ integrity sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==
+
+abab@^2.0.6:
+ version "2.0.6"
+ resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.6.tgz#41b80f2c871d19686216b82309231cfd3cb3d291"
+ integrity sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==
+
+accepts@~1.3.4, accepts@~1.3.5, accepts@~1.3.8:
+ version "1.3.8"
+ resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.8.tgz#0bf0be125b67014adcb0b0921e62db7bffe16b2e"
+ integrity sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==
+ dependencies:
+ mime-types "~2.1.34"
+ negotiator "0.6.3"
+
+acorn-import-assertions@^1.7.6:
+ version "1.9.0"
+ resolved "https://registry.yarnpkg.com/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz#507276249d684797c84e0734ef84860334cfb1ac"
+ integrity sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==
+
+acorn@^8.7.1, acorn@^8.8.2:
+ version "8.10.0"
+ resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.10.0.tgz#8be5b3907a67221a81ab23c7889c4c5526b62ec5"
+ integrity sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==
+
+ajv-formats@^2.1.1:
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/ajv-formats/-/ajv-formats-2.1.1.tgz#6e669400659eb74973bbf2e33327180a0996b520"
+ integrity sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==
+ dependencies:
+ ajv "^8.0.0"
+
+ajv-keywords@^3.5.2:
+ version "3.5.2"
+ resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d"
+ integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==
+
+ajv-keywords@^5.1.0:
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-5.1.0.tgz#69d4d385a4733cdbeab44964a1170a88f87f0e16"
+ integrity sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==
+ dependencies:
+ fast-deep-equal "^3.1.3"
+
+ajv@^6.12.5:
+ version "6.12.6"
+ resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4"
+ integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==
+ dependencies:
+ fast-deep-equal "^3.1.1"
+ fast-json-stable-stringify "^2.0.0"
+ json-schema-traverse "^0.4.1"
+ uri-js "^4.2.2"
+
+ajv@^8.0.0, ajv@^8.9.0:
+ version "8.12.0"
+ resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.12.0.tgz#d1a0527323e22f53562c567c00991577dfbe19d1"
+ integrity sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==
+ dependencies:
+ fast-deep-equal "^3.1.1"
+ json-schema-traverse "^1.0.0"
+ require-from-string "^2.0.2"
+ uri-js "^4.2.2"
+
+ansi-colors@4.1.1:
+ version "4.1.1"
+ resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.1.tgz#cbb9ae256bf750af1eab344f229aa27fe94ba348"
+ integrity sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==
+
+ansi-html-community@^0.0.8:
+ version "0.0.8"
+ resolved "https://registry.yarnpkg.com/ansi-html-community/-/ansi-html-community-0.0.8.tgz#69fbc4d6ccbe383f9736934ae34c3f8290f1bf41"
+ integrity sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==
+
+ansi-regex@^5.0.1:
+ version "5.0.1"
+ resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304"
+ integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==
+
+ansi-styles@^4.0.0, ansi-styles@^4.1.0:
+ version "4.3.0"
+ resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937"
+ integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==
+ dependencies:
+ color-convert "^2.0.1"
+
+anymatch@~3.1.2:
+ version "3.1.3"
+ resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e"
+ integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==
+ dependencies:
+ normalize-path "^3.0.0"
+ picomatch "^2.0.4"
+
+argparse@^2.0.1:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38"
+ integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==
+
+array-flatten@1.1.1:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2"
+ integrity sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==
+
+array-flatten@^2.1.2:
+ version "2.1.2"
+ resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-2.1.2.tgz#24ef80a28c1a893617e2149b0c6d0d788293b099"
+ integrity sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==
+
+balanced-match@^1.0.0:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee"
+ integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==
+
+base64id@2.0.0, base64id@~2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/base64id/-/base64id-2.0.0.tgz#2770ac6bc47d312af97a8bf9a634342e0cd25cb6"
+ integrity sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog==
+
+batch@0.6.1:
+ version "0.6.1"
+ resolved "https://registry.yarnpkg.com/batch/-/batch-0.6.1.tgz#dc34314f4e679318093fc760272525f94bf25c16"
+ integrity sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==
+
+binary-extensions@^2.0.0:
+ version "2.2.0"
+ resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d"
+ integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==
+
+body-parser@1.20.1:
+ version "1.20.1"
+ resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.20.1.tgz#b1812a8912c195cd371a3ee5e66faa2338a5c668"
+ integrity sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==
+ dependencies:
+ bytes "3.1.2"
+ content-type "~1.0.4"
+ debug "2.6.9"
+ depd "2.0.0"
+ destroy "1.2.0"
+ http-errors "2.0.0"
+ iconv-lite "0.4.24"
+ on-finished "2.4.1"
+ qs "6.11.0"
+ raw-body "2.5.1"
+ type-is "~1.6.18"
+ unpipe "1.0.0"
+
+body-parser@^1.19.0:
+ version "1.20.2"
+ resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.20.2.tgz#6feb0e21c4724d06de7ff38da36dad4f57a747fd"
+ integrity sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==
+ dependencies:
+ bytes "3.1.2"
+ content-type "~1.0.5"
+ debug "2.6.9"
+ depd "2.0.0"
+ destroy "1.2.0"
+ http-errors "2.0.0"
+ iconv-lite "0.4.24"
+ on-finished "2.4.1"
+ qs "6.11.0"
+ raw-body "2.5.2"
+ type-is "~1.6.18"
+ unpipe "1.0.0"
+
+bonjour-service@^1.0.11:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/bonjour-service/-/bonjour-service-1.1.1.tgz#960948fa0e0153f5d26743ab15baf8e33752c135"
+ integrity sha512-Z/5lQRMOG9k7W+FkeGTNjh7htqn/2LMnfOvBZ8pynNZCM9MwkQkI3zeI4oz09uWdcgmgHugVvBqxGg4VQJ5PCg==
+ dependencies:
+ array-flatten "^2.1.2"
+ dns-equal "^1.0.0"
+ fast-deep-equal "^3.1.3"
+ multicast-dns "^7.2.5"
+
+brace-expansion@^1.1.7:
+ version "1.1.11"
+ resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
+ integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==
+ dependencies:
+ balanced-match "^1.0.0"
+ concat-map "0.0.1"
+
+brace-expansion@^2.0.1:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae"
+ integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==
+ dependencies:
+ balanced-match "^1.0.0"
+
+braces@^3.0.2, braces@~3.0.2:
+ version "3.0.2"
+ resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107"
+ integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==
+ dependencies:
+ fill-range "^7.0.1"
+
+browser-stdout@1.3.1:
+ version "1.3.1"
+ resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.1.tgz#baa559ee14ced73452229bad7326467c61fabd60"
+ integrity sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==
+
+browserslist@^4.14.5:
+ version "4.22.1"
+ resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.22.1.tgz#ba91958d1a59b87dab6fed8dfbcb3da5e2e9c619"
+ integrity sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==
+ dependencies:
+ caniuse-lite "^1.0.30001541"
+ electron-to-chromium "^1.4.535"
+ node-releases "^2.0.13"
+ update-browserslist-db "^1.0.13"
+
+buffer-from@^1.0.0:
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5"
+ integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==
+
+bytes@3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048"
+ integrity sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==
+
+bytes@3.1.2:
+ version "3.1.2"
+ resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.2.tgz#8b0beeb98605adf1b128fa4386403c009e0221a5"
+ integrity sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==
+
+call-bind@^1.0.0:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c"
+ integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==
+ dependencies:
+ function-bind "^1.1.1"
+ get-intrinsic "^1.0.2"
+
+camelcase@^6.0.0:
+ version "6.3.0"
+ resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a"
+ integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==
+
+caniuse-lite@^1.0.30001541:
+ version "1.0.30001541"
+ resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001541.tgz#b1aef0fadd87fb72db4dcb55d220eae17b81cdb1"
+ integrity sha512-bLOsqxDgTqUBkzxbNlSBt8annkDpQB9NdzdTbO2ooJ+eC/IQcvDspDc058g84ejCelF7vHUx57KIOjEecOHXaw==
+
+chalk@^4.1.0:
+ version "4.1.2"
+ resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01"
+ integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==
+ dependencies:
+ ansi-styles "^4.1.0"
+ supports-color "^7.1.0"
+
+chokidar@3.5.3, chokidar@^3.5.1, chokidar@^3.5.3:
+ version "3.5.3"
+ resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd"
+ integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==
+ dependencies:
+ anymatch "~3.1.2"
+ braces "~3.0.2"
+ glob-parent "~5.1.2"
+ is-binary-path "~2.1.0"
+ is-glob "~4.0.1"
+ normalize-path "~3.0.0"
+ readdirp "~3.6.0"
+ optionalDependencies:
+ fsevents "~2.3.2"
+
+chrome-trace-event@^1.0.2:
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz#1015eced4741e15d06664a957dbbf50d041e26ac"
+ integrity sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==
+
+cliui@^7.0.2:
+ version "7.0.4"
+ resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f"
+ integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==
+ dependencies:
+ string-width "^4.2.0"
+ strip-ansi "^6.0.0"
+ wrap-ansi "^7.0.0"
+
+clone-deep@^4.0.1:
+ version "4.0.1"
+ resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387"
+ integrity sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==
+ dependencies:
+ is-plain-object "^2.0.4"
+ kind-of "^6.0.2"
+ shallow-clone "^3.0.0"
+
+color-convert@^2.0.1:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3"
+ integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==
+ dependencies:
+ color-name "~1.1.4"
+
+color-name@~1.1.4:
+ version "1.1.4"
+ resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
+ integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
+
+colorette@^2.0.10, colorette@^2.0.14:
+ version "2.0.20"
+ resolved "https://registry.yarnpkg.com/colorette/-/colorette-2.0.20.tgz#9eb793e6833067f7235902fcd3b09917a000a95a"
+ integrity sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==
+
+commander@^10.0.1:
+ version "10.0.1"
+ resolved "https://registry.yarnpkg.com/commander/-/commander-10.0.1.tgz#881ee46b4f77d1c1dccc5823433aa39b022cbe06"
+ integrity sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==
+
+commander@^2.20.0:
+ version "2.20.3"
+ resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33"
+ integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==
+
+compressible@~2.0.16:
+ version "2.0.18"
+ resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.18.tgz#af53cca6b070d4c3c0750fbd77286a6d7cc46fba"
+ integrity sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==
+ dependencies:
+ mime-db ">= 1.43.0 < 2"
+
+compression@^1.7.4:
+ version "1.7.4"
+ resolved "https://registry.yarnpkg.com/compression/-/compression-1.7.4.tgz#95523eff170ca57c29a0ca41e6fe131f41e5bb8f"
+ integrity sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==
+ dependencies:
+ accepts "~1.3.5"
+ bytes "3.0.0"
+ compressible "~2.0.16"
+ debug "2.6.9"
+ on-headers "~1.0.2"
+ safe-buffer "5.1.2"
+ vary "~1.1.2"
+
+concat-map@0.0.1:
+ version "0.0.1"
+ resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
+ integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==
+
+connect-history-api-fallback@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz#647264845251a0daf25b97ce87834cace0f5f1c8"
+ integrity sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==
+
+connect@^3.7.0:
+ version "3.7.0"
+ resolved "https://registry.yarnpkg.com/connect/-/connect-3.7.0.tgz#5d49348910caa5e07a01800b030d0c35f20484f8"
+ integrity sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==
+ dependencies:
+ debug "2.6.9"
+ finalhandler "1.1.2"
+ parseurl "~1.3.3"
+ utils-merge "1.0.1"
+
+content-disposition@0.5.4:
+ version "0.5.4"
+ resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.4.tgz#8b82b4efac82512a02bb0b1dcec9d2c5e8eb5bfe"
+ integrity sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==
+ dependencies:
+ safe-buffer "5.2.1"
+
+content-type@~1.0.4, content-type@~1.0.5:
+ version "1.0.5"
+ resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.5.tgz#8b773162656d1d1086784c8f23a54ce6d73d7918"
+ integrity sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==
+
+cookie-signature@1.0.6:
+ version "1.0.6"
+ resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c"
+ integrity sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==
+
+cookie@0.5.0:
+ version "0.5.0"
+ resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.5.0.tgz#d1f5d71adec6558c58f389987c366aa47e994f8b"
+ integrity sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==
+
+cookie@~0.4.1:
+ version "0.4.2"
+ resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.4.2.tgz#0e41f24de5ecf317947c82fc789e06a884824432"
+ integrity sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==
+
+core-util-is@~1.0.0:
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.3.tgz#a6042d3634c2b27e9328f837b965fac83808db85"
+ integrity sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==
+
+cors@~2.8.5:
+ version "2.8.5"
+ resolved "https://registry.yarnpkg.com/cors/-/cors-2.8.5.tgz#eac11da51592dd86b9f06f6e7ac293b3df875d29"
+ integrity sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==
+ dependencies:
+ object-assign "^4"
+ vary "^1"
+
+cross-spawn@^7.0.3:
+ version "7.0.3"
+ resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6"
+ integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==
+ dependencies:
+ path-key "^3.1.0"
+ shebang-command "^2.0.0"
+ which "^2.0.1"
+
+custom-event@~1.0.0:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/custom-event/-/custom-event-1.0.1.tgz#5d02a46850adf1b4a317946a3928fccb5bfd0425"
+ integrity sha512-GAj5FOq0Hd+RsCGVJxZuKaIDXDf3h6GQoNEjFgbLLI/trgtavwUbSnZ5pVfg27DVCaWjIohryS0JFwIJyT2cMg==
+
+date-format@^4.0.14:
+ version "4.0.14"
+ resolved "https://registry.yarnpkg.com/date-format/-/date-format-4.0.14.tgz#7a8e584434fb169a521c8b7aa481f355810d9400"
+ integrity sha512-39BOQLs9ZjKh0/patS9nrT8wc3ioX3/eA/zgbKNopnF2wCqJEoxywwwElATYvRsXdnOxA/OQeQoFZ3rFjVajhg==
+
+debug@2.6.9:
+ version "2.6.9"
+ resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
+ integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==
+ dependencies:
+ ms "2.0.0"
+
+debug@4.3.4, debug@^4.1.0, debug@^4.3.4, debug@~4.3.1, debug@~4.3.2:
+ version "4.3.4"
+ resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865"
+ integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==
+ dependencies:
+ ms "2.1.2"
+
+decamelize@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-4.0.0.tgz#aa472d7bf660eb15f3494efd531cab7f2a709837"
+ integrity sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==
+
+default-gateway@^6.0.3:
+ version "6.0.3"
+ resolved "https://registry.yarnpkg.com/default-gateway/-/default-gateway-6.0.3.tgz#819494c888053bdb743edbf343d6cdf7f2943a71"
+ integrity sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==
+ dependencies:
+ execa "^5.0.0"
+
+define-lazy-prop@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz#3f7ae421129bcaaac9bc74905c98a0009ec9ee7f"
+ integrity sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==
+
+depd@2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df"
+ integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==
+
+depd@~1.1.2:
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9"
+ integrity sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==
+
+destroy@1.2.0:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.2.0.tgz#4803735509ad8be552934c67df614f94e66fa015"
+ integrity sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==
+
+detect-node@^2.0.4:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/detect-node/-/detect-node-2.1.0.tgz#c9c70775a49c3d03bc2c06d9a73be550f978f8b1"
+ integrity sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==
+
+di@^0.0.1:
+ version "0.0.1"
+ resolved "https://registry.yarnpkg.com/di/-/di-0.0.1.tgz#806649326ceaa7caa3306d75d985ea2748ba913c"
+ integrity sha512-uJaamHkagcZtHPqCIHZxnFrXlunQXgBOsZSUOWwFw31QJCAbyTBoHMW75YOTur5ZNx8pIeAKgf6GWIgaqqiLhA==
+
+diff@5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/diff/-/diff-5.0.0.tgz#7ed6ad76d859d030787ec35855f5b1daf31d852b"
+ integrity sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w==
+
+dns-equal@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/dns-equal/-/dns-equal-1.0.0.tgz#b39e7f1da6eb0a75ba9c17324b34753c47e0654d"
+ integrity sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==
+
+dns-packet@^5.2.2:
+ version "5.6.1"
+ resolved "https://registry.yarnpkg.com/dns-packet/-/dns-packet-5.6.1.tgz#ae888ad425a9d1478a0674256ab866de1012cf2f"
+ integrity sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==
+ dependencies:
+ "@leichtgewicht/ip-codec" "^2.0.1"
+
+dom-serialize@^2.2.1:
+ version "2.2.1"
+ resolved "https://registry.yarnpkg.com/dom-serialize/-/dom-serialize-2.2.1.tgz#562ae8999f44be5ea3076f5419dcd59eb43ac95b"
+ integrity sha512-Yra4DbvoW7/Z6LBN560ZwXMjoNOSAN2wRsKFGc4iBeso+mpIA6qj1vfdf9HpMaKAqG6wXTy+1SYEzmNpKXOSsQ==
+ dependencies:
+ custom-event "~1.0.0"
+ ent "~2.2.0"
+ extend "^3.0.0"
+ void-elements "^2.0.0"
+
+ee-first@1.1.1:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d"
+ integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==
+
+electron-to-chromium@^1.4.535:
+ version "1.4.537"
+ resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.537.tgz#aac4101db53066be1e49baedd000a26bc754adc9"
+ integrity sha512-W1+g9qs9hviII0HAwOdehGYkr+zt7KKdmCcJcjH0mYg6oL8+ioT3Skjmt7BLoAQqXhjf40AXd+HlR4oAWMlXjA==
+
+emoji-regex@^8.0.0:
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37"
+ integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==
+
+encodeurl@~1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59"
+ integrity sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==
+
+engine.io-parser@~5.2.1:
+ version "5.2.1"
+ resolved "https://registry.yarnpkg.com/engine.io-parser/-/engine.io-parser-5.2.1.tgz#9f213c77512ff1a6cc0c7a86108a7ffceb16fcfb"
+ integrity sha512-9JktcM3u18nU9N2Lz3bWeBgxVgOKpw7yhRaoxQA3FUDZzzw+9WlA6p4G4u0RixNkg14fH7EfEc/RhpurtiROTQ==
+
+engine.io@~6.5.2:
+ version "6.5.2"
+ resolved "https://registry.yarnpkg.com/engine.io/-/engine.io-6.5.2.tgz#769348ced9d56bd47bd83d308ec1c3375e85937c"
+ integrity sha512-IXsMcGpw/xRfjra46sVZVHiSWo/nJ/3g1337q9KNXtS6YRzbW5yIzTCb9DjhrBe7r3GZQR0I4+nq+4ODk5g/cA==
+ dependencies:
+ "@types/cookie" "^0.4.1"
+ "@types/cors" "^2.8.12"
+ "@types/node" ">=10.0.0"
+ accepts "~1.3.4"
+ base64id "2.0.0"
+ cookie "~0.4.1"
+ cors "~2.8.5"
+ debug "~4.3.1"
+ engine.io-parser "~5.2.1"
+ ws "~8.11.0"
+
+enhanced-resolve@^5.13.0:
+ version "5.15.0"
+ resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz#1af946c7d93603eb88e9896cee4904dc012e9c35"
+ integrity sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==
+ dependencies:
+ graceful-fs "^4.2.4"
+ tapable "^2.2.0"
+
+ent@~2.2.0:
+ version "2.2.0"
+ resolved "https://registry.yarnpkg.com/ent/-/ent-2.2.0.tgz#e964219325a21d05f44466a2f686ed6ce5f5dd1d"
+ integrity sha512-GHrMyVZQWvTIdDtpiEXdHZnFQKzeO09apj8Cbl4pKWy4i0Oprcq17usfDt5aO63swf0JOeMWjWQE/LzgSRuWpA==
+
+envinfo@^7.7.3:
+ version "7.10.0"
+ resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.10.0.tgz#55146e3909cc5fe63c22da63fb15b05aeac35b13"
+ integrity sha512-ZtUjZO6l5mwTHvc1L9+1q5p/R3wTopcfqMW8r5t8SJSKqeVI/LtajORwRFEKpEFuekjD0VBjwu1HMxL4UalIRw==
+
+es-module-lexer@^1.2.1:
+ version "1.3.1"
+ resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-1.3.1.tgz#c1b0dd5ada807a3b3155315911f364dc4e909db1"
+ integrity sha512-JUFAyicQV9mXc3YRxPnDlrfBKpqt6hUYzz9/boprUJHs4e4KVr3XwOF70doO6gwXUor6EWZJAyWAfKki84t20Q==
+
+escalade@^3.1.1:
+ version "3.1.1"
+ resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40"
+ integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==
+
+escape-html@~1.0.3:
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988"
+ integrity sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==
+
+escape-string-regexp@4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34"
+ integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==
+
+eslint-scope@5.1.1:
+ version "5.1.1"
+ resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c"
+ integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==
+ dependencies:
+ esrecurse "^4.3.0"
+ estraverse "^4.1.1"
+
+esrecurse@^4.3.0:
+ version "4.3.0"
+ resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921"
+ integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==
+ dependencies:
+ estraverse "^5.2.0"
+
+estraverse@^4.1.1:
+ version "4.3.0"
+ resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d"
+ integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==
+
+estraverse@^5.2.0:
+ version "5.3.0"
+ resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123"
+ integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==
+
+etag@~1.8.1:
+ version "1.8.1"
+ resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887"
+ integrity sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==
+
+eventemitter3@^4.0.0:
+ version "4.0.7"
+ resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f"
+ integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==
+
+events@^3.2.0:
+ version "3.3.0"
+ resolved "https://registry.yarnpkg.com/events/-/events-3.3.0.tgz#31a95ad0a924e2d2c419a813aeb2c4e878ea7400"
+ integrity sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==
+
+execa@^5.0.0:
+ version "5.1.1"
+ resolved "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd"
+ integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==
+ dependencies:
+ cross-spawn "^7.0.3"
+ get-stream "^6.0.0"
+ human-signals "^2.1.0"
+ is-stream "^2.0.0"
+ merge-stream "^2.0.0"
+ npm-run-path "^4.0.1"
+ onetime "^5.1.2"
+ signal-exit "^3.0.3"
+ strip-final-newline "^2.0.0"
+
+express@^4.17.3:
+ version "4.18.2"
+ resolved "https://registry.yarnpkg.com/express/-/express-4.18.2.tgz#3fabe08296e930c796c19e3c516979386ba9fd59"
+ integrity sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==
+ dependencies:
+ accepts "~1.3.8"
+ array-flatten "1.1.1"
+ body-parser "1.20.1"
+ content-disposition "0.5.4"
+ content-type "~1.0.4"
+ cookie "0.5.0"
+ cookie-signature "1.0.6"
+ debug "2.6.9"
+ depd "2.0.0"
+ encodeurl "~1.0.2"
+ escape-html "~1.0.3"
+ etag "~1.8.1"
+ finalhandler "1.2.0"
+ fresh "0.5.2"
+ http-errors "2.0.0"
+ merge-descriptors "1.0.1"
+ methods "~1.1.2"
+ on-finished "2.4.1"
+ parseurl "~1.3.3"
+ path-to-regexp "0.1.7"
+ proxy-addr "~2.0.7"
+ qs "6.11.0"
+ range-parser "~1.2.1"
+ safe-buffer "5.2.1"
+ send "0.18.0"
+ serve-static "1.15.0"
+ setprototypeof "1.2.0"
+ statuses "2.0.1"
+ type-is "~1.6.18"
+ utils-merge "1.0.1"
+ vary "~1.1.2"
+
+extend@^3.0.0:
+ version "3.0.2"
+ resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa"
+ integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==
+
+fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3:
+ version "3.1.3"
+ resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525"
+ integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==
+
+fast-json-stable-stringify@^2.0.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633"
+ integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==
+
+fastest-levenshtein@^1.0.12:
+ version "1.0.16"
+ resolved "https://registry.yarnpkg.com/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz#210e61b6ff181de91ea9b3d1b84fdedd47e034e5"
+ integrity sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==
+
+faye-websocket@^0.11.3:
+ version "0.11.4"
+ resolved "https://registry.yarnpkg.com/faye-websocket/-/faye-websocket-0.11.4.tgz#7f0d9275cfdd86a1c963dc8b65fcc451edcbb1da"
+ integrity sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==
+ dependencies:
+ websocket-driver ">=0.5.1"
+
+fill-range@^7.0.1:
+ version "7.0.1"
+ resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40"
+ integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==
+ dependencies:
+ to-regex-range "^5.0.1"
+
+finalhandler@1.1.2:
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.2.tgz#b7e7d000ffd11938d0fdb053506f6ebabe9f587d"
+ integrity sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==
+ dependencies:
+ debug "2.6.9"
+ encodeurl "~1.0.2"
+ escape-html "~1.0.3"
+ on-finished "~2.3.0"
+ parseurl "~1.3.3"
+ statuses "~1.5.0"
+ unpipe "~1.0.0"
+
+finalhandler@1.2.0:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.2.0.tgz#7d23fe5731b207b4640e4fcd00aec1f9207a7b32"
+ integrity sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==
+ dependencies:
+ debug "2.6.9"
+ encodeurl "~1.0.2"
+ escape-html "~1.0.3"
+ on-finished "2.4.1"
+ parseurl "~1.3.3"
+ statuses "2.0.1"
+ unpipe "~1.0.0"
+
+find-up@5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc"
+ integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==
+ dependencies:
+ locate-path "^6.0.0"
+ path-exists "^4.0.0"
+
+find-up@^4.0.0:
+ version "4.1.0"
+ resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19"
+ integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==
+ dependencies:
+ locate-path "^5.0.0"
+ path-exists "^4.0.0"
+
+flat@^5.0.2:
+ version "5.0.2"
+ resolved "https://registry.yarnpkg.com/flat/-/flat-5.0.2.tgz#8ca6fe332069ffa9d324c327198c598259ceb241"
+ integrity sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==
+
+flatted@^3.2.7:
+ version "3.2.9"
+ resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.9.tgz#7eb4c67ca1ba34232ca9d2d93e9886e611ad7daf"
+ integrity sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==
+
+follow-redirects@^1.0.0:
+ version "1.15.3"
+ resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.3.tgz#fe2f3ef2690afce7e82ed0b44db08165b207123a"
+ integrity sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q==
+
+format-util@^1.0.5:
+ version "1.0.5"
+ resolved "https://registry.yarnpkg.com/format-util/-/format-util-1.0.5.tgz#1ffb450c8a03e7bccffe40643180918cc297d271"
+ integrity sha512-varLbTj0e0yVyRpqQhuWV+8hlePAgaoFRhNFj50BNjEIrw1/DphHSObtqwskVCPWNgzwPoQrZAbfa/SBiicNeg==
+
+forwarded@0.2.0:
+ version "0.2.0"
+ resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.2.0.tgz#2269936428aad4c15c7ebe9779a84bf0b2a81811"
+ integrity sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==
+
+fresh@0.5.2:
+ version "0.5.2"
+ resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7"
+ integrity sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==
+
+fs-extra@^8.1.0:
+ version "8.1.0"
+ resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0"
+ integrity sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==
+ dependencies:
+ graceful-fs "^4.2.0"
+ jsonfile "^4.0.0"
+ universalify "^0.1.0"
+
+fs-monkey@^1.0.4:
+ version "1.0.5"
+ resolved "https://registry.yarnpkg.com/fs-monkey/-/fs-monkey-1.0.5.tgz#fe450175f0db0d7ea758102e1d84096acb925788"
+ integrity sha512-8uMbBjrhzW76TYgEV27Y5E//W2f/lTFmx78P2w19FZSxarhI/798APGQyuGCwmkNxgwGRhrLfvWyLBvNtuOmew==
+
+fs.realpath@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
+ integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==
+
+fsevents@~2.3.2:
+ version "2.3.3"
+ resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6"
+ integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==
+
+function-bind@^1.1.1:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
+ integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
+
+get-caller-file@^2.0.5:
+ version "2.0.5"
+ resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e"
+ integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==
+
+get-intrinsic@^1.0.2:
+ version "1.2.1"
+ resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.1.tgz#d295644fed4505fc9cde952c37ee12b477a83d82"
+ integrity sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==
+ dependencies:
+ function-bind "^1.1.1"
+ has "^1.0.3"
+ has-proto "^1.0.1"
+ has-symbols "^1.0.3"
+
+get-stream@^6.0.0:
+ version "6.0.1"
+ resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7"
+ integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==
+
+glob-parent@~5.1.2:
+ version "5.1.2"
+ resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4"
+ integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==
+ dependencies:
+ is-glob "^4.0.1"
+
+glob-to-regexp@^0.4.1:
+ version "0.4.1"
+ resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz#c75297087c851b9a578bd217dd59a92f59fe546e"
+ integrity sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==
+
+glob@7.2.0:
+ version "7.2.0"
+ resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.0.tgz#d15535af7732e02e948f4c41628bd910293f6023"
+ integrity sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==
+ dependencies:
+ fs.realpath "^1.0.0"
+ inflight "^1.0.4"
+ inherits "2"
+ minimatch "^3.0.4"
+ once "^1.3.0"
+ path-is-absolute "^1.0.0"
+
+glob@^7.1.3, glob@^7.1.7:
+ version "7.2.3"
+ resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b"
+ integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==
+ dependencies:
+ fs.realpath "^1.0.0"
+ inflight "^1.0.4"
+ inherits "2"
+ minimatch "^3.1.1"
+ once "^1.3.0"
+ path-is-absolute "^1.0.0"
+
+graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.10, graceful-fs@^4.2.4, graceful-fs@^4.2.6, graceful-fs@^4.2.9:
+ version "4.2.11"
+ resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3"
+ integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==
+
+handle-thing@^2.0.0:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/handle-thing/-/handle-thing-2.0.1.tgz#857f79ce359580c340d43081cc648970d0bb234e"
+ integrity sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==
+
+has-flag@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b"
+ integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
+
+has-proto@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.1.tgz#1885c1305538958aff469fef37937c22795408e0"
+ integrity sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==
+
+has-symbols@^1.0.3:
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8"
+ integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==
+
+has@^1.0.3:
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
+ integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==
+ dependencies:
+ function-bind "^1.1.1"
+
+he@1.2.0:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f"
+ integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==
+
+hpack.js@^2.1.6:
+ version "2.1.6"
+ resolved "https://registry.yarnpkg.com/hpack.js/-/hpack.js-2.1.6.tgz#87774c0949e513f42e84575b3c45681fade2a0b2"
+ integrity sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==
+ dependencies:
+ inherits "^2.0.1"
+ obuf "^1.0.0"
+ readable-stream "^2.0.1"
+ wbuf "^1.1.0"
+
+html-entities@^2.3.2:
+ version "2.4.0"
+ resolved "https://registry.yarnpkg.com/html-entities/-/html-entities-2.4.0.tgz#edd0cee70402584c8c76cc2c0556db09d1f45061"
+ integrity sha512-igBTJcNNNhvZFRtm8uA6xMY6xYleeDwn3PeBCkDz7tHttv4F2hsDI2aPgNERWzvRcNYHNT3ymRaQzllmXj4YsQ==
+
+http-deceiver@^1.2.7:
+ version "1.2.7"
+ resolved "https://registry.yarnpkg.com/http-deceiver/-/http-deceiver-1.2.7.tgz#fa7168944ab9a519d337cb0bec7284dc3e723d87"
+ integrity sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==
+
+http-errors@2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-2.0.0.tgz#b7774a1486ef73cf7667ac9ae0858c012c57b9d3"
+ integrity sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==
+ dependencies:
+ depd "2.0.0"
+ inherits "2.0.4"
+ setprototypeof "1.2.0"
+ statuses "2.0.1"
+ toidentifier "1.0.1"
+
+http-errors@~1.6.2:
+ version "1.6.3"
+ resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.3.tgz#8b55680bb4be283a0b5bf4ea2e38580be1d9320d"
+ integrity sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==
+ dependencies:
+ depd "~1.1.2"
+ inherits "2.0.3"
+ setprototypeof "1.1.0"
+ statuses ">= 1.4.0 < 2"
+
+http-parser-js@>=0.5.1:
+ version "0.5.8"
+ resolved "https://registry.yarnpkg.com/http-parser-js/-/http-parser-js-0.5.8.tgz#af23090d9ac4e24573de6f6aecc9d84a48bf20e3"
+ integrity sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==
+
+http-proxy-middleware@^2.0.3:
+ version "2.0.6"
+ resolved "https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz#e1a4dd6979572c7ab5a4e4b55095d1f32a74963f"
+ integrity sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==
+ dependencies:
+ "@types/http-proxy" "^1.17.8"
+ http-proxy "^1.18.1"
+ is-glob "^4.0.1"
+ is-plain-obj "^3.0.0"
+ micromatch "^4.0.2"
+
+http-proxy@^1.18.1:
+ version "1.18.1"
+ resolved "https://registry.yarnpkg.com/http-proxy/-/http-proxy-1.18.1.tgz#401541f0534884bbf95260334e72f88ee3976549"
+ integrity sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==
+ dependencies:
+ eventemitter3 "^4.0.0"
+ follow-redirects "^1.0.0"
+ requires-port "^1.0.0"
+
+human-signals@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0"
+ integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==
+
+iconv-lite@0.4.24:
+ version "0.4.24"
+ resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b"
+ integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==
+ dependencies:
+ safer-buffer ">= 2.1.2 < 3"
+
+iconv-lite@^0.6.3:
+ version "0.6.3"
+ resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.3.tgz#a52f80bf38da1952eb5c681790719871a1a72501"
+ integrity sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==
+ dependencies:
+ safer-buffer ">= 2.1.2 < 3.0.0"
+
+import-local@^3.0.2:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/import-local/-/import-local-3.1.0.tgz#b4479df8a5fd44f6cdce24070675676063c95cb4"
+ integrity sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==
+ dependencies:
+ pkg-dir "^4.2.0"
+ resolve-cwd "^3.0.0"
+
+inflight@^1.0.4:
+ version "1.0.6"
+ resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
+ integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==
+ dependencies:
+ once "^1.3.0"
+ wrappy "1"
+
+inherits@2, inherits@2.0.4, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.3:
+ version "2.0.4"
+ resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
+ integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
+
+inherits@2.0.3:
+ version "2.0.3"
+ resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
+ integrity sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==
+
+interpret@^3.1.1:
+ version "3.1.1"
+ resolved "https://registry.yarnpkg.com/interpret/-/interpret-3.1.1.tgz#5be0ceed67ca79c6c4bc5cf0d7ee843dcea110c4"
+ integrity sha512-6xwYfHbajpoF0xLW+iwLkhwgvLoZDfjYfoFNu8ftMoXINzwuymNLd9u/KmwtdT2GbR+/Cz66otEGEVVUHX9QLQ==
+
+ipaddr.js@1.9.1:
+ version "1.9.1"
+ resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3"
+ integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==
+
+ipaddr.js@^2.0.1:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-2.1.0.tgz#2119bc447ff8c257753b196fc5f1ce08a4cdf39f"
+ integrity sha512-LlbxQ7xKzfBusov6UMi4MFpEg0m+mAm9xyNGEduwXMEDuf4WfzB/RZwMVYEd7IKGvh4IUkEXYxtAVu9T3OelJQ==
+
+is-binary-path@~2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09"
+ integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==
+ dependencies:
+ binary-extensions "^2.0.0"
+
+is-core-module@^2.13.0:
+ version "2.13.0"
+ resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.13.0.tgz#bb52aa6e2cbd49a30c2ba68c42bf3435ba6072db"
+ integrity sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==
+ dependencies:
+ has "^1.0.3"
+
+is-docker@^2.0.0, is-docker@^2.1.1:
+ version "2.2.1"
+ resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz#33eeabe23cfe86f14bde4408a02c0cfb853acdaa"
+ integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==
+
+is-extglob@^2.1.1:
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
+ integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==
+
+is-fullwidth-code-point@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d"
+ integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==
+
+is-glob@^4.0.1, is-glob@~4.0.1:
+ version "4.0.3"
+ resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084"
+ integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==
+ dependencies:
+ is-extglob "^2.1.1"
+
+is-number@^7.0.0:
+ version "7.0.0"
+ resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b"
+ integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==
+
+is-plain-obj@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287"
+ integrity sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==
+
+is-plain-obj@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-3.0.0.tgz#af6f2ea14ac5a646183a5bbdb5baabbc156ad9d7"
+ integrity sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==
+
+is-plain-object@^2.0.4:
+ version "2.0.4"
+ resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677"
+ integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==
+ dependencies:
+ isobject "^3.0.1"
+
+is-stream@^2.0.0:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077"
+ integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==
+
+is-unicode-supported@^0.1.0:
+ version "0.1.0"
+ resolved "https://registry.yarnpkg.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz#3f26c76a809593b52bfa2ecb5710ed2779b522a7"
+ integrity sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==
+
+is-wsl@^2.2.0:
+ version "2.2.0"
+ resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271"
+ integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==
+ dependencies:
+ is-docker "^2.0.0"
+
+isarray@~1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
+ integrity sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==
+
+isbinaryfile@^4.0.8:
+ version "4.0.10"
+ resolved "https://registry.yarnpkg.com/isbinaryfile/-/isbinaryfile-4.0.10.tgz#0c5b5e30c2557a2f06febd37b7322946aaee42b3"
+ integrity sha512-iHrqe5shvBUcFbmZq9zOQHBoeOhZJu6RQGrDpBgenUm/Am+F3JM2MgQj+rK3Z601fzrL5gLZWtAPH2OBaSVcyw==
+
+isexe@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
+ integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==
+
+isobject@^3.0.1:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df"
+ integrity sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==
+
+jest-worker@^27.4.5:
+ version "27.5.1"
+ resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-27.5.1.tgz#8d146f0900e8973b106b6f73cc1e9a8cb86f8db0"
+ integrity sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==
+ dependencies:
+ "@types/node" "*"
+ merge-stream "^2.0.0"
+ supports-color "^8.0.0"
+
+js-yaml@4.1.0:
+ version "4.1.0"
+ resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602"
+ integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==
+ dependencies:
+ argparse "^2.0.1"
+
+json-parse-even-better-errors@^2.3.1:
+ version "2.3.1"
+ resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d"
+ integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==
+
+json-schema-traverse@^0.4.1:
+ version "0.4.1"
+ resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660"
+ integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==
+
+json-schema-traverse@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2"
+ integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==
+
+jsonfile@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb"
+ integrity sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==
+ optionalDependencies:
+ graceful-fs "^4.1.6"
+
+karma-chrome-launcher@3.2.0:
+ version "3.2.0"
+ resolved "https://registry.yarnpkg.com/karma-chrome-launcher/-/karma-chrome-launcher-3.2.0.tgz#eb9c95024f2d6dfbb3748d3415ac9b381906b9a9"
+ integrity sha512-rE9RkUPI7I9mAxByQWkGJFXfFD6lE4gC5nPuZdobf/QdTEJI6EU4yIay/cfU/xV4ZxlM5JiTv7zWYgA64NpS5Q==
+ dependencies:
+ which "^1.2.1"
+
+karma-mocha@2.0.1:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/karma-mocha/-/karma-mocha-2.0.1.tgz#4b0254a18dfee71bdbe6188d9a6861bf86b0cd7d"
+ integrity sha512-Tzd5HBjm8his2OA4bouAsATYEpZrp9vC7z5E5j4C5Of5Rrs1jY67RAwXNcVmd/Bnk1wgvQRou0zGVLey44G4tQ==
+ dependencies:
+ minimist "^1.2.3"
+
+karma-sourcemap-loader@0.4.0:
+ version "0.4.0"
+ resolved "https://registry.yarnpkg.com/karma-sourcemap-loader/-/karma-sourcemap-loader-0.4.0.tgz#b01d73f8f688f533bcc8f5d273d43458e13b5488"
+ integrity sha512-xCRL3/pmhAYF3I6qOrcn0uhbQevitc2DERMPH82FMnG+4WReoGcGFZb1pURf2a5apyrOHRdvD+O6K7NljqKHyA==
+ dependencies:
+ graceful-fs "^4.2.10"
+
+karma-webpack@5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/karma-webpack/-/karma-webpack-5.0.0.tgz#2a2c7b80163fe7ffd1010f83f5507f95ef39f840"
+ integrity sha512-+54i/cd3/piZuP3dr54+NcFeKOPnys5QeM1IY+0SPASwrtHsliXUiCL50iW+K9WWA7RvamC4macvvQ86l3KtaA==
+ dependencies:
+ glob "^7.1.3"
+ minimatch "^3.0.4"
+ webpack-merge "^4.1.5"
+
+karma@6.4.2:
+ version "6.4.2"
+ resolved "https://registry.yarnpkg.com/karma/-/karma-6.4.2.tgz#a983f874cee6f35990c4b2dcc3d274653714de8e"
+ integrity sha512-C6SU/53LB31BEgRg+omznBEMY4SjHU3ricV6zBcAe1EeILKkeScr+fZXtaI5WyDbkVowJxxAI6h73NcFPmXolQ==
+ dependencies:
+ "@colors/colors" "1.5.0"
+ body-parser "^1.19.0"
+ braces "^3.0.2"
+ chokidar "^3.5.1"
+ connect "^3.7.0"
+ di "^0.0.1"
+ dom-serialize "^2.2.1"
+ glob "^7.1.7"
+ graceful-fs "^4.2.6"
+ http-proxy "^1.18.1"
+ isbinaryfile "^4.0.8"
+ lodash "^4.17.21"
+ log4js "^6.4.1"
+ mime "^2.5.2"
+ minimatch "^3.0.4"
+ mkdirp "^0.5.5"
+ qjobs "^1.2.0"
+ range-parser "^1.2.1"
+ rimraf "^3.0.2"
+ socket.io "^4.4.1"
+ source-map "^0.6.1"
+ tmp "^0.2.1"
+ ua-parser-js "^0.7.30"
+ yargs "^16.1.1"
+
+kind-of@^6.0.2:
+ version "6.0.3"
+ resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd"
+ integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==
+
+launch-editor@^2.6.0:
+ version "2.6.1"
+ resolved "https://registry.yarnpkg.com/launch-editor/-/launch-editor-2.6.1.tgz#f259c9ef95cbc9425620bbbd14b468fcdb4ffe3c"
+ integrity sha512-eB/uXmFVpY4zezmGp5XtU21kwo7GBbKB+EQ+UZeWtGb9yAM5xt/Evk+lYH3eRNAtId+ej4u7TYPFZ07w4s7rRw==
+ dependencies:
+ picocolors "^1.0.0"
+ shell-quote "^1.8.1"
+
+loader-runner@^4.2.0:
+ version "4.3.0"
+ resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-4.3.0.tgz#c1b4a163b99f614830353b16755e7149ac2314e1"
+ integrity sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==
+
+locate-path@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0"
+ integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==
+ dependencies:
+ p-locate "^4.1.0"
+
+locate-path@^6.0.0:
+ version "6.0.0"
+ resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286"
+ integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==
+ dependencies:
+ p-locate "^5.0.0"
+
+lodash@^4.17.15, lodash@^4.17.21:
+ version "4.17.21"
+ resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
+ integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
+
+log-symbols@4.1.0:
+ version "4.1.0"
+ resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.1.0.tgz#3fbdbb95b4683ac9fc785111e792e558d4abd503"
+ integrity sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==
+ dependencies:
+ chalk "^4.1.0"
+ is-unicode-supported "^0.1.0"
+
+log4js@^6.4.1:
+ version "6.9.1"
+ resolved "https://registry.yarnpkg.com/log4js/-/log4js-6.9.1.tgz#aba5a3ff4e7872ae34f8b4c533706753709e38b6"
+ integrity sha512-1somDdy9sChrr9/f4UlzhdaGfDR2c/SaD2a4T7qEkG4jTS57/B3qmnjLYePwQ8cqWnUHZI0iAKxMBpCZICiZ2g==
+ dependencies:
+ date-format "^4.0.14"
+ debug "^4.3.4"
+ flatted "^3.2.7"
+ rfdc "^1.3.0"
+ streamroller "^3.1.5"
+
+media-typer@0.3.0:
+ version "0.3.0"
+ resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748"
+ integrity sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==
+
+memfs@^3.4.3:
+ version "3.6.0"
+ resolved "https://registry.yarnpkg.com/memfs/-/memfs-3.6.0.tgz#d7a2110f86f79dd950a8b6df6d57bc984aa185f6"
+ integrity sha512-EGowvkkgbMcIChjMTMkESFDbZeSh8xZ7kNSF0hAiAN4Jh6jgHCRS0Ga/+C8y6Au+oqpezRHCfPsmJ2+DwAgiwQ==
+ dependencies:
+ fs-monkey "^1.0.4"
+
+merge-descriptors@1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61"
+ integrity sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==
+
+merge-stream@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60"
+ integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==
+
+methods@~1.1.2:
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee"
+ integrity sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==
+
+micromatch@^4.0.2:
+ version "4.0.5"
+ resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6"
+ integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==
+ dependencies:
+ braces "^3.0.2"
+ picomatch "^2.3.1"
+
+mime-db@1.52.0, "mime-db@>= 1.43.0 < 2":
+ version "1.52.0"
+ resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70"
+ integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==
+
+mime-types@^2.1.27, mime-types@^2.1.31, mime-types@~2.1.17, mime-types@~2.1.24, mime-types@~2.1.34:
+ version "2.1.35"
+ resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a"
+ integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==
+ dependencies:
+ mime-db "1.52.0"
+
+mime@1.6.0:
+ version "1.6.0"
+ resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1"
+ integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==
+
+mime@^2.5.2:
+ version "2.6.0"
+ resolved "https://registry.yarnpkg.com/mime/-/mime-2.6.0.tgz#a2a682a95cd4d0cb1d6257e28f83da7e35800367"
+ integrity sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==
+
+mimic-fn@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b"
+ integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==
+
+minimalistic-assert@^1.0.0:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7"
+ integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==
+
+minimatch@5.0.1:
+ version "5.0.1"
+ resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-5.0.1.tgz#fb9022f7528125187c92bd9e9b6366be1cf3415b"
+ integrity sha512-nLDxIFRyhDblz3qMuq+SoRZED4+miJ/G+tdDrjkkkRnjAsBexeGpgjLEQ0blJy7rHhR2b93rhQY4SvyWu9v03g==
+ dependencies:
+ brace-expansion "^2.0.1"
+
+minimatch@^3.0.4, minimatch@^3.1.1:
+ version "3.1.2"
+ resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b"
+ integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==
+ dependencies:
+ brace-expansion "^1.1.7"
+
+minimist@^1.2.3, minimist@^1.2.6:
+ version "1.2.8"
+ resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c"
+ integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==
+
+mkdirp@^0.5.5:
+ version "0.5.6"
+ resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.6.tgz#7def03d2432dcae4ba1d611445c48396062255f6"
+ integrity sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==
+ dependencies:
+ minimist "^1.2.6"
+
+mocha@10.2.0:
+ version "10.2.0"
+ resolved "https://registry.yarnpkg.com/mocha/-/mocha-10.2.0.tgz#1fd4a7c32ba5ac372e03a17eef435bd00e5c68b8"
+ integrity sha512-IDY7fl/BecMwFHzoqF2sg/SHHANeBoMMXFlS9r0OXKDssYE1M5O43wUY/9BVPeIvfH2zmEbBfseqN9gBQZzXkg==
+ dependencies:
+ ansi-colors "4.1.1"
+ browser-stdout "1.3.1"
+ chokidar "3.5.3"
+ debug "4.3.4"
+ diff "5.0.0"
+ escape-string-regexp "4.0.0"
+ find-up "5.0.0"
+ glob "7.2.0"
+ he "1.2.0"
+ js-yaml "4.1.0"
+ log-symbols "4.1.0"
+ minimatch "5.0.1"
+ ms "2.1.3"
+ nanoid "3.3.3"
+ serialize-javascript "6.0.0"
+ strip-json-comments "3.1.1"
+ supports-color "8.1.1"
+ workerpool "6.2.1"
+ yargs "16.2.0"
+ yargs-parser "20.2.4"
+ yargs-unparser "2.0.0"
+
+ms@2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
+ integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==
+
+ms@2.1.2:
+ version "2.1.2"
+ resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
+ integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
+
+ms@2.1.3:
+ version "2.1.3"
+ resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2"
+ integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==
+
+multicast-dns@^7.2.5:
+ version "7.2.5"
+ resolved "https://registry.yarnpkg.com/multicast-dns/-/multicast-dns-7.2.5.tgz#77eb46057f4d7adbd16d9290fa7299f6fa64cced"
+ integrity sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==
+ dependencies:
+ dns-packet "^5.2.2"
+ thunky "^1.0.2"
+
+nanoid@3.3.3:
+ version "3.3.3"
+ resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.3.tgz#fd8e8b7aa761fe807dba2d1b98fb7241bb724a25"
+ integrity sha512-p1sjXuopFs0xg+fPASzQ28agW1oHD7xDsd9Xkf3T15H3c/cifrFHVwrh74PdoklAPi+i7MdRsE47vm2r6JoB+w==
+
+negotiator@0.6.3:
+ version "0.6.3"
+ resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.3.tgz#58e323a72fedc0d6f9cd4d31fe49f51479590ccd"
+ integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==
+
+neo-async@^2.6.2:
+ version "2.6.2"
+ resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f"
+ integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==
+
+node-forge@^1:
+ version "1.3.1"
+ resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-1.3.1.tgz#be8da2af243b2417d5f646a770663a92b7e9ded3"
+ integrity sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==
+
+node-releases@^2.0.13:
+ version "2.0.13"
+ resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.13.tgz#d5ed1627c23e3461e819b02e57b75e4899b1c81d"
+ integrity sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==
+
+normalize-path@^3.0.0, normalize-path@~3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65"
+ integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==
+
+npm-run-path@^4.0.1:
+ version "4.0.1"
+ resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea"
+ integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==
+ dependencies:
+ path-key "^3.0.0"
+
+object-assign@^4:
+ version "4.1.1"
+ resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
+ integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==
+
+object-inspect@^1.9.0:
+ version "1.12.3"
+ resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.3.tgz#ba62dffd67ee256c8c086dfae69e016cd1f198b9"
+ integrity sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==
+
+obuf@^1.0.0, obuf@^1.1.2:
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/obuf/-/obuf-1.1.2.tgz#09bea3343d41859ebd446292d11c9d4db619084e"
+ integrity sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==
+
+on-finished@2.4.1:
+ version "2.4.1"
+ resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.4.1.tgz#58c8c44116e54845ad57f14ab10b03533184ac3f"
+ integrity sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==
+ dependencies:
+ ee-first "1.1.1"
+
+on-finished@~2.3.0:
+ version "2.3.0"
+ resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947"
+ integrity sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==
+ dependencies:
+ ee-first "1.1.1"
+
+on-headers@~1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.2.tgz#772b0ae6aaa525c399e489adfad90c403eb3c28f"
+ integrity sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==
+
+once@^1.3.0:
+ version "1.4.0"
+ resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
+ integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==
+ dependencies:
+ wrappy "1"
+
+onetime@^5.1.2:
+ version "5.1.2"
+ resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e"
+ integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==
+ dependencies:
+ mimic-fn "^2.1.0"
+
+open@^8.0.9:
+ version "8.4.2"
+ resolved "https://registry.yarnpkg.com/open/-/open-8.4.2.tgz#5b5ffe2a8f793dcd2aad73e550cb87b59cb084f9"
+ integrity sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==
+ dependencies:
+ define-lazy-prop "^2.0.0"
+ is-docker "^2.1.1"
+ is-wsl "^2.2.0"
+
+p-limit@^2.2.0:
+ version "2.3.0"
+ resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1"
+ integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==
+ dependencies:
+ p-try "^2.0.0"
+
+p-limit@^3.0.2:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b"
+ integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==
+ dependencies:
+ yocto-queue "^0.1.0"
+
+p-locate@^4.1.0:
+ version "4.1.0"
+ resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07"
+ integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==
+ dependencies:
+ p-limit "^2.2.0"
+
+p-locate@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834"
+ integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==
+ dependencies:
+ p-limit "^3.0.2"
+
+p-retry@^4.5.0:
+ version "4.6.2"
+ resolved "https://registry.yarnpkg.com/p-retry/-/p-retry-4.6.2.tgz#9baae7184057edd4e17231cee04264106e092a16"
+ integrity sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==
+ dependencies:
+ "@types/retry" "0.12.0"
+ retry "^0.13.1"
+
+p-try@^2.0.0:
+ version "2.2.0"
+ resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6"
+ integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==
+
+parseurl@~1.3.2, parseurl@~1.3.3:
+ version "1.3.3"
+ resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4"
+ integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==
+
+path-exists@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3"
+ integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==
+
+path-is-absolute@^1.0.0:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
+ integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==
+
+path-key@^3.0.0, path-key@^3.1.0:
+ version "3.1.1"
+ resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375"
+ integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==
+
+path-parse@^1.0.7:
+ version "1.0.7"
+ resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735"
+ integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==
+
+path-to-regexp@0.1.7:
+ version "0.1.7"
+ resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c"
+ integrity sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==
+
+picocolors@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c"
+ integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==
+
+picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.3.1:
+ version "2.3.1"
+ resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42"
+ integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==
+
+pkg-dir@^4.2.0:
+ version "4.2.0"
+ resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3"
+ integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==
+ dependencies:
+ find-up "^4.0.0"
+
+process-nextick-args@~2.0.0:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2"
+ integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==
+
+proxy-addr@~2.0.7:
+ version "2.0.7"
+ resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.7.tgz#f19fe69ceab311eeb94b42e70e8c2070f9ba1025"
+ integrity sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==
+ dependencies:
+ forwarded "0.2.0"
+ ipaddr.js "1.9.1"
+
+punycode@^2.1.0:
+ version "2.3.0"
+ resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.0.tgz#f67fa67c94da8f4d0cfff981aee4118064199b8f"
+ integrity sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==
+
+qjobs@^1.2.0:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/qjobs/-/qjobs-1.2.0.tgz#c45e9c61800bd087ef88d7e256423bdd49e5d071"
+ integrity sha512-8YOJEHtxpySA3fFDyCRxA+UUV+fA+rTWnuWvylOK/NCjhY+b4ocCtmu8TtsWb+mYeU+GCHf/S66KZF/AsteKHg==
+
+qs@6.11.0:
+ version "6.11.0"
+ resolved "https://registry.yarnpkg.com/qs/-/qs-6.11.0.tgz#fd0d963446f7a65e1367e01abd85429453f0c37a"
+ integrity sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==
+ dependencies:
+ side-channel "^1.0.4"
+
+randombytes@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a"
+ integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==
+ dependencies:
+ safe-buffer "^5.1.0"
+
+range-parser@^1.2.1, range-parser@~1.2.1:
+ version "1.2.1"
+ resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031"
+ integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==
+
+raw-body@2.5.1:
+ version "2.5.1"
+ resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.5.1.tgz#fe1b1628b181b700215e5fd42389f98b71392857"
+ integrity sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==
+ dependencies:
+ bytes "3.1.2"
+ http-errors "2.0.0"
+ iconv-lite "0.4.24"
+ unpipe "1.0.0"
+
+raw-body@2.5.2:
+ version "2.5.2"
+ resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.5.2.tgz#99febd83b90e08975087e8f1f9419a149366b68a"
+ integrity sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==
+ dependencies:
+ bytes "3.1.2"
+ http-errors "2.0.0"
+ iconv-lite "0.4.24"
+ unpipe "1.0.0"
+
+readable-stream@^2.0.1:
+ version "2.3.8"
+ resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.8.tgz#91125e8042bba1b9887f49345f6277027ce8be9b"
+ integrity sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==
+ dependencies:
+ core-util-is "~1.0.0"
+ inherits "~2.0.3"
+ isarray "~1.0.0"
+ process-nextick-args "~2.0.0"
+ safe-buffer "~5.1.1"
+ string_decoder "~1.1.1"
+ util-deprecate "~1.0.1"
+
+readable-stream@^3.0.6:
+ version "3.6.2"
+ resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967"
+ integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==
+ dependencies:
+ inherits "^2.0.3"
+ string_decoder "^1.1.1"
+ util-deprecate "^1.0.1"
+
+readdirp@~3.6.0:
+ version "3.6.0"
+ resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7"
+ integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==
+ dependencies:
+ picomatch "^2.2.1"
+
+rechoir@^0.8.0:
+ version "0.8.0"
+ resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.8.0.tgz#49f866e0d32146142da3ad8f0eff352b3215ff22"
+ integrity sha512-/vxpCXddiX8NGfGO/mTafwjq4aFa/71pvamip0++IQk3zG8cbCj0fifNPrjjF1XMXUne91jL9OoxmdykoEtifQ==
+ dependencies:
+ resolve "^1.20.0"
+
+require-directory@^2.1.1:
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"
+ integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==
+
+require-from-string@^2.0.2:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909"
+ integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==
+
+requires-port@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff"
+ integrity sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==
+
+resolve-cwd@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz#0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d"
+ integrity sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==
+ dependencies:
+ resolve-from "^5.0.0"
+
+resolve-from@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69"
+ integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==
+
+resolve@^1.20.0:
+ version "1.22.6"
+ resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.6.tgz#dd209739eca3aef739c626fea1b4f3c506195362"
+ integrity sha512-njhxM7mV12JfufShqGy3Rz8j11RPdLy4xi15UurGJeoHLfJpVXKdh3ueuOqbYUcDZnffr6X739JBo5LzyahEsw==
+ dependencies:
+ is-core-module "^2.13.0"
+ path-parse "^1.0.7"
+ supports-preserve-symlinks-flag "^1.0.0"
+
+retry@^0.13.1:
+ version "0.13.1"
+ resolved "https://registry.yarnpkg.com/retry/-/retry-0.13.1.tgz#185b1587acf67919d63b357349e03537b2484658"
+ integrity sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==
+
+rfdc@^1.3.0:
+ version "1.3.0"
+ resolved "https://registry.yarnpkg.com/rfdc/-/rfdc-1.3.0.tgz#d0b7c441ab2720d05dc4cf26e01c89631d9da08b"
+ integrity sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA==
+
+rimraf@^3.0.0, rimraf@^3.0.2:
+ version "3.0.2"
+ resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a"
+ integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==
+ dependencies:
+ glob "^7.1.3"
+
+safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1:
+ version "5.1.2"
+ resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
+ integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==
+
+safe-buffer@5.2.1, safe-buffer@>=5.1.0, safe-buffer@^5.1.0, safe-buffer@~5.2.0:
+ version "5.2.1"
+ resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6"
+ integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==
+
+"safer-buffer@>= 2.1.2 < 3", "safer-buffer@>= 2.1.2 < 3.0.0":
+ version "2.1.2"
+ resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
+ integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==
+
+schema-utils@^3.1.1, schema-utils@^3.1.2:
+ version "3.3.0"
+ resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.3.0.tgz#f50a88877c3c01652a15b622ae9e9795df7a60fe"
+ integrity sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==
+ dependencies:
+ "@types/json-schema" "^7.0.8"
+ ajv "^6.12.5"
+ ajv-keywords "^3.5.2"
+
+schema-utils@^4.0.0:
+ version "4.2.0"
+ resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-4.2.0.tgz#70d7c93e153a273a805801882ebd3bff20d89c8b"
+ integrity sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==
+ dependencies:
+ "@types/json-schema" "^7.0.9"
+ ajv "^8.9.0"
+ ajv-formats "^2.1.1"
+ ajv-keywords "^5.1.0"
+
+select-hose@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/select-hose/-/select-hose-2.0.0.tgz#625d8658f865af43ec962bfc376a37359a4994ca"
+ integrity sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==
+
+selfsigned@^2.1.1:
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/selfsigned/-/selfsigned-2.1.1.tgz#18a7613d714c0cd3385c48af0075abf3f266af61"
+ integrity sha512-GSL3aowiF7wa/WtSFwnUrludWFoNhftq8bUkH9pkzjpN2XSPOAYEgg6e0sS9s0rZwgJzJiQRPU18A6clnoW5wQ==
+ dependencies:
+ node-forge "^1"
+
+send@0.18.0:
+ version "0.18.0"
+ resolved "https://registry.yarnpkg.com/send/-/send-0.18.0.tgz#670167cc654b05f5aa4a767f9113bb371bc706be"
+ integrity sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==
+ dependencies:
+ debug "2.6.9"
+ depd "2.0.0"
+ destroy "1.2.0"
+ encodeurl "~1.0.2"
+ escape-html "~1.0.3"
+ etag "~1.8.1"
+ fresh "0.5.2"
+ http-errors "2.0.0"
+ mime "1.6.0"
+ ms "2.1.3"
+ on-finished "2.4.1"
+ range-parser "~1.2.1"
+ statuses "2.0.1"
+
+serialize-javascript@6.0.0:
+ version "6.0.0"
+ resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-6.0.0.tgz#efae5d88f45d7924141da8b5c3a7a7e663fefeb8"
+ integrity sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==
+ dependencies:
+ randombytes "^2.1.0"
+
+serialize-javascript@^6.0.1:
+ version "6.0.1"
+ resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-6.0.1.tgz#b206efb27c3da0b0ab6b52f48d170b7996458e5c"
+ integrity sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==
+ dependencies:
+ randombytes "^2.1.0"
+
+serve-index@^1.9.1:
+ version "1.9.1"
+ resolved "https://registry.yarnpkg.com/serve-index/-/serve-index-1.9.1.tgz#d3768d69b1e7d82e5ce050fff5b453bea12a9239"
+ integrity sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==
+ dependencies:
+ accepts "~1.3.4"
+ batch "0.6.1"
+ debug "2.6.9"
+ escape-html "~1.0.3"
+ http-errors "~1.6.2"
+ mime-types "~2.1.17"
+ parseurl "~1.3.2"
+
+serve-static@1.15.0:
+ version "1.15.0"
+ resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.15.0.tgz#faaef08cffe0a1a62f60cad0c4e513cff0ac9540"
+ integrity sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==
+ dependencies:
+ encodeurl "~1.0.2"
+ escape-html "~1.0.3"
+ parseurl "~1.3.3"
+ send "0.18.0"
+
+setprototypeof@1.1.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.0.tgz#d0bd85536887b6fe7c0d818cb962d9d91c54e656"
+ integrity sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==
+
+setprototypeof@1.2.0:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.2.0.tgz#66c9a24a73f9fc28cbe66b09fed3d33dcaf1b424"
+ integrity sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==
+
+shallow-clone@^3.0.0:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-3.0.1.tgz#8f2981ad92531f55035b01fb230769a40e02efa3"
+ integrity sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==
+ dependencies:
+ kind-of "^6.0.2"
+
+shebang-command@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea"
+ integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==
+ dependencies:
+ shebang-regex "^3.0.0"
+
+shebang-regex@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172"
+ integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==
+
+shell-quote@^1.8.1:
+ version "1.8.1"
+ resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.8.1.tgz#6dbf4db75515ad5bac63b4f1894c3a154c766680"
+ integrity sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==
+
+side-channel@^1.0.4:
+ version "1.0.4"
+ resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf"
+ integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==
+ dependencies:
+ call-bind "^1.0.0"
+ get-intrinsic "^1.0.2"
+ object-inspect "^1.9.0"
+
+signal-exit@^3.0.3:
+ version "3.0.7"
+ resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9"
+ integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==
+
+socket.io-adapter@~2.5.2:
+ version "2.5.2"
+ resolved "https://registry.yarnpkg.com/socket.io-adapter/-/socket.io-adapter-2.5.2.tgz#5de9477c9182fdc171cd8c8364b9a8894ec75d12"
+ integrity sha512-87C3LO/NOMc+eMcpcxUBebGjkpMDkNBS9tf7KJqcDsmL936EChtVva71Dw2q4tQcuVC+hAUy4an2NO/sYXmwRA==
+ dependencies:
+ ws "~8.11.0"
+
+socket.io-parser@~4.2.4:
+ version "4.2.4"
+ resolved "https://registry.yarnpkg.com/socket.io-parser/-/socket.io-parser-4.2.4.tgz#c806966cf7270601e47469ddeec30fbdfda44c83"
+ integrity sha512-/GbIKmo8ioc+NIWIhwdecY0ge+qVBSMdgxGygevmdHj24bsfgtCmcUUcQ5ZzcylGFHsN3k4HB4Cgkl96KVnuew==
+ dependencies:
+ "@socket.io/component-emitter" "~3.1.0"
+ debug "~4.3.1"
+
+socket.io@^4.4.1:
+ version "4.7.2"
+ resolved "https://registry.yarnpkg.com/socket.io/-/socket.io-4.7.2.tgz#22557d76c3f3ca48f82e73d68b7add36a22df002"
+ integrity sha512-bvKVS29/I5fl2FGLNHuXlQaUH/BlzX1IN6S+NKLNZpBsPZIDH+90eQmCs2Railn4YUiww4SzUedJ6+uzwFnKLw==
+ dependencies:
+ accepts "~1.3.4"
+ base64id "~2.0.0"
+ cors "~2.8.5"
+ debug "~4.3.2"
+ engine.io "~6.5.2"
+ socket.io-adapter "~2.5.2"
+ socket.io-parser "~4.2.4"
+
+sockjs@^0.3.24:
+ version "0.3.24"
+ resolved "https://registry.yarnpkg.com/sockjs/-/sockjs-0.3.24.tgz#c9bc8995f33a111bea0395ec30aa3206bdb5ccce"
+ integrity sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==
+ dependencies:
+ faye-websocket "^0.11.3"
+ uuid "^8.3.2"
+ websocket-driver "^0.7.4"
+
+source-map-js@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c"
+ integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==
+
+source-map-loader@4.0.1:
+ version "4.0.1"
+ resolved "https://registry.yarnpkg.com/source-map-loader/-/source-map-loader-4.0.1.tgz#72f00d05f5d1f90f80974eda781cbd7107c125f2"
+ integrity sha512-oqXpzDIByKONVY8g1NUPOTQhe0UTU5bWUl32GSkqK2LjJj0HmwTMVKxcUip0RgAYhY1mqgOxjbQM48a0mmeNfA==
+ dependencies:
+ abab "^2.0.6"
+ iconv-lite "^0.6.3"
+ source-map-js "^1.0.2"
+
+source-map-support@0.5.21, source-map-support@~0.5.20:
+ version "0.5.21"
+ resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f"
+ integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==
+ dependencies:
+ buffer-from "^1.0.0"
+ source-map "^0.6.0"
+
+source-map@^0.6.0, source-map@^0.6.1:
+ version "0.6.1"
+ resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
+ integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==
+
+spdy-transport@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/spdy-transport/-/spdy-transport-3.0.0.tgz#00d4863a6400ad75df93361a1608605e5dcdcf31"
+ integrity sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==
+ dependencies:
+ debug "^4.1.0"
+ detect-node "^2.0.4"
+ hpack.js "^2.1.6"
+ obuf "^1.1.2"
+ readable-stream "^3.0.6"
+ wbuf "^1.7.3"
+
+spdy@^4.0.2:
+ version "4.0.2"
+ resolved "https://registry.yarnpkg.com/spdy/-/spdy-4.0.2.tgz#b74f466203a3eda452c02492b91fb9e84a27677b"
+ integrity sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==
+ dependencies:
+ debug "^4.1.0"
+ handle-thing "^2.0.0"
+ http-deceiver "^1.2.7"
+ select-hose "^2.0.0"
+ spdy-transport "^3.0.0"
+
+statuses@2.0.1:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/statuses/-/statuses-2.0.1.tgz#55cb000ccf1d48728bd23c685a063998cf1a1b63"
+ integrity sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==
+
+"statuses@>= 1.4.0 < 2", statuses@~1.5.0:
+ version "1.5.0"
+ resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c"
+ integrity sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==
+
+streamroller@^3.1.5:
+ version "3.1.5"
+ resolved "https://registry.yarnpkg.com/streamroller/-/streamroller-3.1.5.tgz#1263182329a45def1ffaef58d31b15d13d2ee7ff"
+ integrity sha512-KFxaM7XT+irxvdqSP1LGLgNWbYN7ay5owZ3r/8t77p+EtSUAfUgtl7be3xtqtOmGUl9K9YPO2ca8133RlTjvKw==
+ dependencies:
+ date-format "^4.0.14"
+ debug "^4.3.4"
+ fs-extra "^8.1.0"
+
+string-width@^4.1.0, string-width@^4.2.0:
+ version "4.2.3"
+ resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
+ integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
+ dependencies:
+ emoji-regex "^8.0.0"
+ is-fullwidth-code-point "^3.0.0"
+ strip-ansi "^6.0.1"
+
+string_decoder@^1.1.1:
+ version "1.3.0"
+ resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e"
+ integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==
+ dependencies:
+ safe-buffer "~5.2.0"
+
+string_decoder@~1.1.1:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8"
+ integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==
+ dependencies:
+ safe-buffer "~5.1.0"
+
+strip-ansi@^6.0.0, strip-ansi@^6.0.1:
+ version "6.0.1"
+ resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
+ integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
+ dependencies:
+ ansi-regex "^5.0.1"
+
+strip-final-newline@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad"
+ integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==
+
+strip-json-comments@3.1.1:
+ version "3.1.1"
+ resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006"
+ integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==
+
+supports-color@8.1.1, supports-color@^8.0.0:
+ version "8.1.1"
+ resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c"
+ integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==
+ dependencies:
+ has-flag "^4.0.0"
+
+supports-color@^7.1.0:
+ version "7.2.0"
+ resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da"
+ integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==
+ dependencies:
+ has-flag "^4.0.0"
+
+supports-preserve-symlinks-flag@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09"
+ integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==
+
+tapable@^2.1.1, tapable@^2.2.0:
+ version "2.2.1"
+ resolved "https://registry.yarnpkg.com/tapable/-/tapable-2.2.1.tgz#1967a73ef4060a82f12ab96af86d52fdb76eeca0"
+ integrity sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==
+
+terser-webpack-plugin@^5.3.7:
+ version "5.3.9"
+ resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-5.3.9.tgz#832536999c51b46d468067f9e37662a3b96adfe1"
+ integrity sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==
+ dependencies:
+ "@jridgewell/trace-mapping" "^0.3.17"
+ jest-worker "^27.4.5"
+ schema-utils "^3.1.1"
+ serialize-javascript "^6.0.1"
+ terser "^5.16.8"
+
+terser@^5.16.8:
+ version "5.20.0"
+ resolved "https://registry.yarnpkg.com/terser/-/terser-5.20.0.tgz#ea42aea62578703e33def47d5c5b93c49772423e"
+ integrity sha512-e56ETryaQDyebBwJIWYB2TT6f2EZ0fL0sW/JRXNMN26zZdKi2u/E/5my5lG6jNxym6qsrVXfFRmOdV42zlAgLQ==
+ dependencies:
+ "@jridgewell/source-map" "^0.3.3"
+ acorn "^8.8.2"
+ commander "^2.20.0"
+ source-map-support "~0.5.20"
+
+thunky@^1.0.2:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/thunky/-/thunky-1.1.0.tgz#5abaf714a9405db0504732bbccd2cedd9ef9537d"
+ integrity sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==
+
+tmp@^0.2.1:
+ version "0.2.1"
+ resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.2.1.tgz#8457fc3037dcf4719c251367a1af6500ee1ccf14"
+ integrity sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==
+ dependencies:
+ rimraf "^3.0.0"
+
+to-regex-range@^5.0.1:
+ version "5.0.1"
+ resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4"
+ integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==
+ dependencies:
+ is-number "^7.0.0"
+
+toidentifier@1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.1.tgz#3be34321a88a820ed1bd80dfaa33e479fbb8dd35"
+ integrity sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==
+
+type-is@~1.6.18:
+ version "1.6.18"
+ resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131"
+ integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==
+ dependencies:
+ media-typer "0.3.0"
+ mime-types "~2.1.24"
+
+typescript@5.0.4:
+ version "5.0.4"
+ resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.0.4.tgz#b217fd20119bd61a94d4011274e0ab369058da3b"
+ integrity sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw==
+
+ua-parser-js@^0.7.30:
+ version "0.7.36"
+ resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.36.tgz#382c5d6fc09141b6541be2cae446ecfcec284db2"
+ integrity sha512-CPPLoCts2p7D8VbybttE3P2ylv0OBZEAy7a12DsulIEcAiMtWJy+PBgMXgWDI80D5UwqE8oQPHYnk13tm38M2Q==
+
+universalify@^0.1.0:
+ version "0.1.2"
+ resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66"
+ integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==
+
+unpipe@1.0.0, unpipe@~1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec"
+ integrity sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==
+
+update-browserslist-db@^1.0.13:
+ version "1.0.13"
+ resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz#3c5e4f5c083661bd38ef64b6328c26ed6c8248c4"
+ integrity sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==
+ dependencies:
+ escalade "^3.1.1"
+ picocolors "^1.0.0"
+
+uri-js@^4.2.2:
+ version "4.4.1"
+ resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e"
+ integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==
+ dependencies:
+ punycode "^2.1.0"
+
+util-deprecate@^1.0.1, util-deprecate@~1.0.1:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
+ integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==
+
+utils-merge@1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713"
+ integrity sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==
+
+uuid@^8.3.2:
+ version "8.3.2"
+ resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2"
+ integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==
+
+vary@^1, vary@~1.1.2:
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc"
+ integrity sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==
+
+void-elements@^2.0.0:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/void-elements/-/void-elements-2.0.1.tgz#c066afb582bb1cb4128d60ea92392e94d5e9dbec"
+ integrity sha512-qZKX4RnBzH2ugr8Lxa7x+0V6XD9Sb/ouARtiasEQCHB1EVU4NXtmHsDDrx1dO4ne5fc3J6EW05BP1Dl0z0iung==
+
+watchpack@^2.4.0:
+ version "2.4.0"
+ resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.4.0.tgz#fa33032374962c78113f93c7f2fb4c54c9862a5d"
+ integrity sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==
+ dependencies:
+ glob-to-regexp "^0.4.1"
+ graceful-fs "^4.1.2"
+
+wbuf@^1.1.0, wbuf@^1.7.3:
+ version "1.7.3"
+ resolved "https://registry.yarnpkg.com/wbuf/-/wbuf-1.7.3.tgz#c1d8d149316d3ea852848895cb6a0bfe887b87df"
+ integrity sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==
+ dependencies:
+ minimalistic-assert "^1.0.0"
+
+webpack-cli@5.1.0:
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/webpack-cli/-/webpack-cli-5.1.0.tgz#abc4b1f44b50250f2632d8b8b536cfe2f6257891"
+ integrity sha512-a7KRJnCxejFoDpYTOwzm5o21ZXMaNqtRlvS183XzGDUPRdVEzJNImcQokqYZ8BNTnk9DkKiuWxw75+DCCoZ26w==
+ dependencies:
+ "@discoveryjs/json-ext" "^0.5.0"
+ "@webpack-cli/configtest" "^2.1.0"
+ "@webpack-cli/info" "^2.0.1"
+ "@webpack-cli/serve" "^2.0.3"
+ colorette "^2.0.14"
+ commander "^10.0.1"
+ cross-spawn "^7.0.3"
+ envinfo "^7.7.3"
+ fastest-levenshtein "^1.0.12"
+ import-local "^3.0.2"
+ interpret "^3.1.1"
+ rechoir "^0.8.0"
+ webpack-merge "^5.7.3"
+
+webpack-dev-middleware@^5.3.1:
+ version "5.3.3"
+ resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-5.3.3.tgz#efae67c2793908e7311f1d9b06f2a08dcc97e51f"
+ integrity sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==
+ dependencies:
+ colorette "^2.0.10"
+ memfs "^3.4.3"
+ mime-types "^2.1.31"
+ range-parser "^1.2.1"
+ schema-utils "^4.0.0"
+
+webpack-dev-server@4.15.0:
+ version "4.15.0"
+ resolved "https://registry.yarnpkg.com/webpack-dev-server/-/webpack-dev-server-4.15.0.tgz#87ba9006eca53c551607ea0d663f4ae88be7af21"
+ integrity sha512-HmNB5QeSl1KpulTBQ8UT4FPrByYyaLxpJoQ0+s7EvUrMc16m0ZS1sgb1XGqzmgCPk0c9y+aaXxn11tbLzuM7NQ==
+ dependencies:
+ "@types/bonjour" "^3.5.9"
+ "@types/connect-history-api-fallback" "^1.3.5"
+ "@types/express" "^4.17.13"
+ "@types/serve-index" "^1.9.1"
+ "@types/serve-static" "^1.13.10"
+ "@types/sockjs" "^0.3.33"
+ "@types/ws" "^8.5.1"
+ ansi-html-community "^0.0.8"
+ bonjour-service "^1.0.11"
+ chokidar "^3.5.3"
+ colorette "^2.0.10"
+ compression "^1.7.4"
+ connect-history-api-fallback "^2.0.0"
+ default-gateway "^6.0.3"
+ express "^4.17.3"
+ graceful-fs "^4.2.6"
+ html-entities "^2.3.2"
+ http-proxy-middleware "^2.0.3"
+ ipaddr.js "^2.0.1"
+ launch-editor "^2.6.0"
+ open "^8.0.9"
+ p-retry "^4.5.0"
+ rimraf "^3.0.2"
+ schema-utils "^4.0.0"
+ selfsigned "^2.1.1"
+ serve-index "^1.9.1"
+ sockjs "^0.3.24"
+ spdy "^4.0.2"
+ webpack-dev-middleware "^5.3.1"
+ ws "^8.13.0"
+
+webpack-merge@^4.1.5:
+ version "4.2.2"
+ resolved "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-4.2.2.tgz#a27c52ea783d1398afd2087f547d7b9d2f43634d"
+ integrity sha512-TUE1UGoTX2Cd42j3krGYqObZbOD+xF7u28WB7tfUordytSjbWTIjK/8V0amkBfTYN4/pB/GIDlJZZ657BGG19g==
+ dependencies:
+ lodash "^4.17.15"
+
+webpack-merge@^5.7.3:
+ version "5.9.0"
+ resolved "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-5.9.0.tgz#dc160a1c4cf512ceca515cc231669e9ddb133826"
+ integrity sha512-6NbRQw4+Sy50vYNTw7EyOn41OZItPiXB8GNv3INSoe3PSFaHJEz3SHTrYVaRm2LilNGnFUzh0FAwqPEmU/CwDg==
+ dependencies:
+ clone-deep "^4.0.1"
+ wildcard "^2.0.0"
+
+webpack-sources@^3.2.3:
+ version "3.2.3"
+ resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-3.2.3.tgz#2d4daab8451fd4b240cc27055ff6a0c2ccea0cde"
+ integrity sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==
+
+webpack@5.82.0:
+ version "5.82.0"
+ resolved "https://registry.yarnpkg.com/webpack/-/webpack-5.82.0.tgz#3c0d074dec79401db026b4ba0fb23d6333f88e7d"
+ integrity sha512-iGNA2fHhnDcV1bONdUu554eZx+XeldsaeQ8T67H6KKHl2nUSwX8Zm7cmzOA46ox/X1ARxf7Bjv8wQ/HsB5fxBg==
+ dependencies:
+ "@types/eslint-scope" "^3.7.3"
+ "@types/estree" "^1.0.0"
+ "@webassemblyjs/ast" "^1.11.5"
+ "@webassemblyjs/wasm-edit" "^1.11.5"
+ "@webassemblyjs/wasm-parser" "^1.11.5"
+ acorn "^8.7.1"
+ acorn-import-assertions "^1.7.6"
+ browserslist "^4.14.5"
+ chrome-trace-event "^1.0.2"
+ enhanced-resolve "^5.13.0"
+ es-module-lexer "^1.2.1"
+ eslint-scope "5.1.1"
+ events "^3.2.0"
+ glob-to-regexp "^0.4.1"
+ graceful-fs "^4.2.9"
+ json-parse-even-better-errors "^2.3.1"
+ loader-runner "^4.2.0"
+ mime-types "^2.1.27"
+ neo-async "^2.6.2"
+ schema-utils "^3.1.2"
+ tapable "^2.1.1"
+ terser-webpack-plugin "^5.3.7"
+ watchpack "^2.4.0"
+ webpack-sources "^3.2.3"
+
+websocket-driver@>=0.5.1, websocket-driver@^0.7.4:
+ version "0.7.4"
+ resolved "https://registry.yarnpkg.com/websocket-driver/-/websocket-driver-0.7.4.tgz#89ad5295bbf64b480abcba31e4953aca706f5760"
+ integrity sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==
+ dependencies:
+ http-parser-js ">=0.5.1"
+ safe-buffer ">=5.1.0"
+ websocket-extensions ">=0.1.1"
+
+websocket-extensions@>=0.1.1:
+ version "0.1.4"
+ resolved "https://registry.yarnpkg.com/websocket-extensions/-/websocket-extensions-0.1.4.tgz#7f8473bc839dfd87608adb95d7eb075211578a42"
+ integrity sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==
+
+which@^1.2.1:
+ version "1.3.1"
+ resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a"
+ integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==
+ dependencies:
+ isexe "^2.0.0"
+
+which@^2.0.1:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1"
+ integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==
+ dependencies:
+ isexe "^2.0.0"
+
+wildcard@^2.0.0:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/wildcard/-/wildcard-2.0.1.tgz#5ab10d02487198954836b6349f74fff961e10f67"
+ integrity sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==
+
+workerpool@6.2.1:
+ version "6.2.1"
+ resolved "https://registry.yarnpkg.com/workerpool/-/workerpool-6.2.1.tgz#46fc150c17d826b86a008e5a4508656777e9c343"
+ integrity sha512-ILEIE97kDZvF9Wb9f6h5aXK4swSlKGUcOEGiIYb2OOu/IrDU9iwj0fD//SsA6E5ibwJxpEvhullJY4Sl4GcpAw==
+
+wrap-ansi@^7.0.0:
+ version "7.0.0"
+ resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
+ integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
+ dependencies:
+ ansi-styles "^4.0.0"
+ string-width "^4.1.0"
+ strip-ansi "^6.0.0"
+
+wrappy@1:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
+ integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==
+
+ws@^8.13.0:
+ version "8.14.2"
+ resolved "https://registry.yarnpkg.com/ws/-/ws-8.14.2.tgz#6c249a806eb2db7a20d26d51e7709eab7b2e6c7f"
+ integrity sha512-wEBG1ftX4jcglPxgFCMJmZ2PLtSbJ2Peg6TmpJFTbe9GZYOQCDPdMYu/Tm0/bGZkw8paZnJY45J4K2PZrLYq8g==
+
+ws@~8.11.0:
+ version "8.11.0"
+ resolved "https://registry.yarnpkg.com/ws/-/ws-8.11.0.tgz#6a0d36b8edfd9f96d8b25683db2f8d7de6e8e143"
+ integrity sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==
+
+y18n@^5.0.5:
+ version "5.0.8"
+ resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55"
+ integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==
+
+yargs-parser@20.2.4:
+ version "20.2.4"
+ resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.4.tgz#b42890f14566796f85ae8e3a25290d205f154a54"
+ integrity sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==
+
+yargs-parser@^20.2.2:
+ version "20.2.9"
+ resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee"
+ integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==
+
+yargs-unparser@2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/yargs-unparser/-/yargs-unparser-2.0.0.tgz#f131f9226911ae5d9ad38c432fe809366c2325eb"
+ integrity sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==
+ dependencies:
+ camelcase "^6.0.0"
+ decamelize "^4.0.0"
+ flat "^5.0.2"
+ is-plain-obj "^2.1.0"
+
+yargs@16.2.0, yargs@^16.1.1:
+ version "16.2.0"
+ resolved "https://registry.yarnpkg.com/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66"
+ integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==
+ dependencies:
+ cliui "^7.0.2"
+ escalade "^3.1.1"
+ get-caller-file "^2.0.5"
+ require-directory "^2.1.1"
+ string-width "^4.2.0"
+ y18n "^5.0.5"
+ yargs-parser "^20.2.2"
+
+yocto-queue@^0.1.0:
+ version "0.1.0"
+ resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b"
+ integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==
diff --git a/kproject.lock b/kproject.lock
new file mode 100644
index 0000000..ee1dfcd
--- /dev/null
+++ b/kproject.lock
@@ -0,0 +1,4 @@
+https://github.com/korlibs/korge-dragonbones.git/korge-dragonbones#v1.0.0 ::: 11f0026a44d96e476949465aadbc6848d3fbb764:fa0608f303f40df7040ff7fd0ff605f00105f9f7fe090e0e080efd0700f500f7
+https://github.com/korlibs/korge-ldtk.git/korge-ldtk#v1.0.2 ::: 3cc31bddd707037084f8e0d764a9706cc99f0bfb:fefc01fef80bf6f10502fbf5f501fff20df40df6fefffc0efa0dfaf30e07f90c
+https://github.com/korlibs/korge-mascots.git/korge-mascots#v1.0.0 ::: dd8f5d14fa7b637dfdcfd2fc76d3cbf612f7b72e:0002fcfa0b0f0c0205f50a07fb0afd0b0008fe000af4030a050b08ff06f0f9fc
+https://github.com/korlibs/korge-virtualcontroller.git/korge-virtualcontroller#v1.0.2 ::: df0e840b8171bb3f5b8f7a86b77fbe39e725be16:0b02fb06f0000002f5f6f2f002fd00fff4f4f90a040307f207f8ff06fff5fef5
diff --git a/settings.gradle.kts b/settings.gradle.kts
new file mode 100644
index 0000000..ca4398f
--- /dev/null
+++ b/settings.gradle.kts
@@ -0,0 +1,25 @@
+pluginManagement {
+ repositories { mavenLocal(); mavenCentral(); google(); gradlePluginPortal() }
+}
+
+buildscript {
+ val libsTomlFile = File(this.sourceFile?.parentFile, "gradle/libs.versions.toml").readText()
+ var plugins = false
+ var version = ""
+ for (line in libsTomlFile.lines().map { it.trim() }) {
+ if (line.startsWith("#")) continue
+ if (line.startsWith("[plugins]")) plugins = true
+ if (plugins && line.startsWith("korge") && Regex("^korge\\s*=.*").containsMatchIn(line)) version = Regex("version\\s*=\\s*\"(.*?)\"").find(line)?.groupValues?.get(1) ?: error("Can't find korge version")
+ }
+ if (version.isEmpty()) error("Can't find korge version in $libsTomlFile")
+
+ repositories { mavenLocal(); mavenCentral(); google(); gradlePluginPortal() }
+
+ dependencies {
+ classpath("com.soywiz.korge.settings:com.soywiz.korge.settings.gradle.plugin:$version")
+ }
+}
+
+apply(plugin = "com.soywiz.korge.settings")
+
+rootProject.name = "korge-hello-world"
diff --git a/src/commonMain/kotlin/DragonbonesExt.kt b/src/commonMain/kotlin/DragonbonesExt.kt
new file mode 100644
index 0000000..3110b50
--- /dev/null
+++ b/src/commonMain/kotlin/DragonbonesExt.kt
@@ -0,0 +1,16 @@
+import com.dragonbones.core.*
+import korlibs.korge.dragonbones.*
+import korlibs.time.*
+
+fun KorgeDbArmatureDisplay.play(animationName: String): KorgeDbArmatureDisplay {
+ animation.play(animationName)
+ return this
+}
+
+fun KorgeDbArmatureDisplay.fadeIn(
+ animationName: String, fadeInTime: TimeSpan, playTimes: Int = -1,
+ layer: Int = 0, group: String? = null, fadeOutMode: AnimationFadeOutMode = AnimationFadeOutMode.SameLayerAndGroup
+): KorgeDbArmatureDisplay? {
+ animation.fadeIn(animationName, fadeInTime, playTimes, layer, group, fadeOutMode)
+ return this
+}
diff --git a/src/commonMain/kotlin/LDTKViewExt.kt b/src/commonMain/kotlin/LDTKViewExt.kt
new file mode 100644
index 0000000..7dab1a4
--- /dev/null
+++ b/src/commonMain/kotlin/LDTKViewExt.kt
@@ -0,0 +1,154 @@
+import korlibs.datastructure.*
+import korlibs.memory.*
+import korlibs.korge.view.*
+import korlibs.korge.view.tiles.*
+import korlibs.image.bitmap.*
+import korlibs.image.color.*
+import korlibs.image.format.*
+import korlibs.image.tiles.*
+import korlibs.io.file.*
+import korlibs.korge.ldtk.*
+import korlibs.korge.ldtk.view.*
+import korlibs.korge.view.filter.*
+import korlibs.math.geom.*
+
+//private val DO_EXTRUSION = false
+private val DO_EXTRUSION = true
+
+private fun IStackedIntArray2.getFirst(pos: PointInt): Int = getFirst(pos.x, pos.y)
+private fun IStackedIntArray2.getLast(pos: PointInt): Int = getLast(pos.x, pos.y)
+
+class LDTKCollisions(val world: LDTKWorld, val stack: IStackedIntArray2) {
+ fun tileToPixel(tilePos: PointInt): PointInt = (tilePos.toFloat() * world.ldtk.defaultGridSize).toIntFloor()
+ fun pixelToTile(pixelPos: PointInt): PointInt = (pixelPos.toFloat() / world.ldtk.defaultGridSize).toIntFloor()
+
+ fun getTile(tilePos: PointInt): Int = stack.getLast(tilePos)
+ fun getPixel(pixelPos: PointInt): Int = getTile(pixelToTile(pixelPos))
+ fun getPixel(pixelPos: Point): Int = getPixel(pixelPos.toIntFloor())
+}
+
+fun LDTKWorld.createCollisionMaps(layerId: String = "Collisions"): LDTKCollisions {
+ val ldtk = this.ldtk
+ val world = SparseChunkedStackedIntArray2()
+ for (level in ldtk.levels) {
+ //println("## level: ${level.identifier}")
+ for (layer in (level.layerInstances ?: emptyList()).asReversed()) {
+ if (layer.identifier != layerId) continue
+ val intGrid = IntArray2(layer.cWid, layer.cHei, layer.intGridCSV.copyOf(layer.cWid * layer.cHei))
+ //println("intGrid=$intGrid")
+ //println(" - layer=${layer.identifier}, level.worldX=${level.worldX}, level.worldY=${level.worldY}")
+ world.putChunk(
+ StackedIntArray2(intGrid, startX = level.worldX / ldtk.defaultGridSize, startY = level.worldY / ldtk.defaultGridSize)
+ )
+ }
+ }
+ return LDTKCollisions(this, world)
+}
+
+class LDTKViewExt(
+ val world: LDTKWorld,
+ val showCollisions: Boolean = false
+) : Container() {
+ init {
+ val ldtk = world.ldtk
+ val layersDefsById = world.layersDefsById
+ val tilesetDefsById = world.tilesetDefsById
+
+ val colors = Bitmap32((ldtk.defaultGridSize + 4) * 16, ldtk.defaultGridSize)
+ val intsTileSet = TileSet(
+ (0 until 16).map { TileSetTileInfo(it, colors.slice(RectangleInt((ldtk.defaultGridSize + 4) * it, 0, ldtk.defaultGridSize, ldtk.defaultGridSize))) }
+ )
+
+ // @TODO: Do this for each layer, since we might have several IntGrid layers
+ for (layer in ldtk.defs.layers) {
+ for (value in layer.intGridValues) {
+ colors.fill(Colors[value.color], (ldtk.defaultGridSize + 4) * value.value)
+ //println("COLOR: ${value.value} : ${value.color}")
+ }
+ }
+ container {
+ for (level in ldtk.levels) {
+ container {
+ val color = Colors[level.levelBgColor ?: ldtk.bgColor]
+ solidRect(level.pxWid, level.pxHei, color)
+ for (layer in (level.layerInstances ?: emptyList()).asReversed()) {
+ //for (layer in (level.layerInstances ?: emptyList())) {
+ val layerDef = layersDefsById[layer.layerDefUid] ?: continue
+ val tilesetExt = tilesetDefsById[layer.tilesetDefUid] ?: continue
+ val intGrid = IntArray2(layer.cWid, layer.cHei, layer.intGridCSV.copyOf(layer.cWid * layer.cHei))
+ val tileData = StackedIntArray2(layer.cWid, layer.cHei, -1)
+ val tileset = tilesetExt.def
+ val gridSize = tileset.tileGridSize
+
+ //val fsprites = FSprites(layer.autoLayerTiles.size)
+ //val view = fsprites.createView(bitmap).also { it.scale(2) }
+ //addChild(view)
+ for (tile in layer.autoLayerTiles) {
+ val (px, py) = tile.px
+ val (tileX, tileY) = tile.src
+ val x = px / gridSize
+ val y = py / gridSize
+ val dx = px % gridSize
+ val dy = py % gridSize
+ val tx = tileX / gridSize
+ val ty = tileY / gridSize
+ val cellsTilesPerRow = tileset.pxWid / gridSize
+ val tileId = ty * cellsTilesPerRow + tx
+ val flipX = tile.f.hasBitSet(0)
+ val flipY = tile.f.hasBitSet(1)
+ tileData.push(x, y, TileInfo(tileId, flipX = flipX, flipY = flipY, offsetX = dx, offsetY = dy).data)
+ }
+ if (tilesetExt.tileset != null) {
+ tileMap(tileData, tilesetExt.tileset!!, smoothing = false)
+ .alpha(layerDef.displayOpacity)
+ .also { if (!DO_EXTRUSION) it.filters(IdentityFilter.Nearest) }
+ .also { it.overdrawTiles = 1 }
+ tileMap(intGrid, intsTileSet, smoothing = false)
+ .visible(showCollisions)
+ .also { if (!DO_EXTRUSION) it.filters(IdentityFilter.Nearest) }
+ .also { it.overdrawTiles = 1 }
+ }
+ //tileset!!.
+ //println(intGrid)
+ }
+ }.xy(level.worldX, level.worldY)
+ //break // ONLY FIRST LEVEL
+ //}.filters(IdentityFilter.Nearest).scale(2)
+ }
+ //}.xy(300, 300)
+ }
+ }
+}
+
+
+class ExtTileset(val def: TilesetDefinition, val tileset: TileSet?)
+
+class LDTKWorld(
+ val ldtk: LDTKJson,
+ val tilesetDefsById: Map
+) {
+ val layersDefsById: Map = ldtk.defs.layers.associateBy { it.uid }
+}
+
+suspend fun VfsFile.readLDTKWorldExt(): LDTKWorld {
+ val file = this
+ val json = file.readString()
+ val ldtk = LDTKJson.load(json)
+ val tilesetDefsById: Map = ldtk.defs.tilesets.associate { def ->
+ val bitmap = def.relPath?.let {
+ val bmp = file.parent[it].readBitmap()
+ if (DO_EXTRUSION) bmp.toBMP32() else bmp
+ }
+ val tileSet = bitmap?.let {
+ val tset = TileSet(bitmap.slice(), def.tileGridSize, def.tileGridSize)
+ if (DO_EXTRUSION) tset.extrude(border = 2) else tset
+ }
+ def.uid to ExtTileset(def, tileSet)
+ }
+ return LDTKWorld(ldtk, tilesetDefsById)
+}
+
+fun TileSet.extrude(border: Int = 1, mipmaps: Boolean = false): TileSet {
+ val bitmaps = this.textures.map { (it as BmpSlice).extract().toBMP32() }
+ return TileSet.fromBitmaps(width, height, bitmaps, border, mipmaps = mipmaps)
+}
diff --git a/src/commonMain/kotlin/NumberExt.kt b/src/commonMain/kotlin/NumberExt.kt
new file mode 100644
index 0000000..8a7a4fd
--- /dev/null
+++ b/src/commonMain/kotlin/NumberExt.kt
@@ -0,0 +1,3 @@
+import kotlin.math.*
+
+fun Float.normalizeAlmostZero(epsilon: Float) = if (this.absoluteValue < epsilon) 0f else this
diff --git a/src/commonMain/kotlin/RaycastExt.kt b/src/commonMain/kotlin/RaycastExt.kt
new file mode 100644
index 0000000..6226f7b
--- /dev/null
+++ b/src/commonMain/kotlin/RaycastExt.kt
@@ -0,0 +1,84 @@
+import korlibs.datastructure.*
+import korlibs.math.geom.*
+import kotlin.math.*
+
+// @TODO: Move to KorGE and add companion to Ray, so this can be an static method
+fun RayFromTwoPoints(start: Point, end: Point): Ray = Ray(start, Angle.between(start, end))
+
+private fun sq(f: Double): Double = f * f
+
+// https://www.youtube.com/watch?v=NbSee-XM7WA
+fun Ray.firstCollisionInTileMap(
+ cellSize: Size = Size(1.0, 1.0),
+ maxTiles: Int = 10,
+ collides: (tilePos: PointInt) -> Boolean
+): Point? {
+ val ray = this
+ val vRayStart = this.point / cellSize
+ val vRayDir = ray.direction.normalized
+ val vRayUnitStepSize = Vector2D(
+ sqrt(1f + sq(vRayDir.y / vRayDir.x)),
+ sqrt(1f + sq(vRayDir.x / vRayDir.y)),
+ )
+ //println("vRayUnitStepSize=$vRayUnitStepSize")
+ var vMapCheckx = vRayStart.x.toInt()
+ var vMapChecky = vRayStart.y.toInt()
+ var vStepx = 0
+ var vStepy = 0
+ var vRayLength1Dx = 0.0
+ var vRayLength1Dy = 0.0
+ if (vRayDir.x < 0) {
+ vStepx = -1
+ vRayLength1Dx = (vRayStart.x - (vMapCheckx)) * vRayUnitStepSize.x
+ } else {
+ vStepx = +1
+ vRayLength1Dx = ((vMapCheckx + 1) - vRayStart.x) * vRayUnitStepSize.x
+ }
+
+ if (vRayDir.y < 0) {
+ vStepy = -1
+ vRayLength1Dy = (vRayStart.y - (vMapChecky)) * vRayUnitStepSize.y
+ } else {
+ vStepy = +1
+ vRayLength1Dy = ((vMapChecky + 1) - vRayStart.y) * vRayUnitStepSize.y
+ }
+
+ // Perform "Walk" until collision or range check
+ var bTileFound = false
+ val fMaxDistance = hypot(cellSize.width, cellSize.height) * maxTiles
+ var fDistance = 0.0
+ while (fDistance < fMaxDistance) {
+ // Walk along shortest path
+ if (vRayLength1Dx < vRayLength1Dy) {
+ vMapCheckx += vStepx
+ fDistance = vRayLength1Dx
+ vRayLength1Dx += vRayUnitStepSize.x
+ } else {
+ vMapChecky += vStepy
+ fDistance = vRayLength1Dy
+ vRayLength1Dy += vRayUnitStepSize.y
+ }
+
+ // Test tile at new test point
+ if (collides(PointInt(vMapCheckx, vMapChecky))) {
+ bTileFound = true
+ break
+ }
+ }
+
+ // Calculate intersection location
+ if (bTileFound) {
+ //println("vRayStart=$vRayStart: vRayDir=$vRayDir, fDistance=$fDistance")
+ return (vRayStart + vRayDir * fDistance) * cellSize
+ }
+ return null
+}
+
+fun IStackedIntArray2.raycast(
+ ray: Ray,
+ cellSize: Size = Size(1, 1),
+ maxTiles: Int = 10,
+ collides: IStackedIntArray2.(tilePos: PointInt) -> Boolean
+): Point? {
+ return ray.firstCollisionInTileMap(cellSize, maxTiles) { pos -> collides(this, pos) }
+}
diff --git a/src/commonMain/kotlin/RaycastingExampleScene.kt b/src/commonMain/kotlin/RaycastingExampleScene.kt
new file mode 100644
index 0000000..d823cdb
--- /dev/null
+++ b/src/commonMain/kotlin/RaycastingExampleScene.kt
@@ -0,0 +1,83 @@
+import korlibs.datastructure.*
+import korlibs.image.atlas.*
+import korlibs.image.bitmap.*
+import korlibs.image.color.*
+import korlibs.image.tiles.*
+import korlibs.korge.*
+import korlibs.korge.input.*
+import korlibs.korge.scene.*
+import korlibs.korge.view.*
+import korlibs.korge.view.tiles.*
+import korlibs.math.geom.*
+import korlibs.math.geom.Circle
+
+class RaycastingExampleScene : Scene() {
+ @KeepOnReload
+ var startPoint: Point = Point(100, 100)
+
+ @KeepOnReload
+ var endPoint: Point = Point(100, 100)
+
+ @KeepOnReload
+ var tileMap: IntArray2 = IntArray2(100, 100, 0)
+
+ override suspend fun SContainer.sceneMain() {
+ val atlas = MutableAtlasUnit()
+ val bmp0 = atlas.add(Bitmap32(16, 16, Colors.TRANSPARENT.premultiplied)).slice
+ val bmp1 = atlas.add(Bitmap32(16, 16, Colors.BLUE.premultiplied)).slice
+ val tileSet = TileSet(TileSetTileInfo(0, bmp0), TileSetTileInfo(0, bmp1))
+ val tileMap = tileMap(tileMap, tileSet)
+ val cellSize = Size(bmp0.width, bmp0.height)
+ val overlay = graphics(renderer = GraphicsRenderer.SYSTEM) { }
+
+ fun updateOverlay(
+ startPoint: Point,
+ endPoint: Point,
+ result: Point?
+ ) {
+ overlay.updateShape {
+ clear()
+ stroke(Colors.YELLOW) { line(startPoint, endPoint) }
+ stroke(Colors.GREEN) { circle(Circle(startPoint, 3f)) }
+ //stroke(Colors.WHITE) { circle(Circle(endPoint, 3f)) }
+
+ if (result != null) {
+ stroke(Colors.RED) {
+ circle(Circle(result, 3f))
+ }
+ }
+ }
+
+ }
+
+ fun downOnTileMapPos(mousePos: Point, add: Boolean, setStartPos: Boolean) {
+ if (setStartPos) {
+ startPoint = mousePos
+ return
+ }
+ val cell = (mousePos / cellSize).toInt()
+ tileMap.lock {
+ tileMap.stackedIntMap.setFirst(cell.x, cell.y, if (add) 1 else 0)
+ }
+ }
+ fun checkTileMap(mousePos: Point) {
+ val result = tileMap.stackedIntMap.raycast(RayFromTwoPoints(startPoint, mousePos), cellSize) {
+ //println("this.getLast(it.x, it.y): $it")
+ if (!this.inside(it.x, it.y)) return@raycast false
+ this.getLast(it.x, it.y) != 0
+ }
+ updateOverlay(startPoint, mousePos, result)
+ }
+
+ tileMap.mouse {
+ onDown {
+ downOnTileMapPos(it.currentPosLocal, !it.isShiftDown, it.isCtrlDown)
+ checkTileMap(it.currentPosLocal)
+ }
+ onMove {
+ if (it.pressing) downOnTileMapPos(it.currentPosLocal, !it.isShiftDown, it.isCtrlDown)
+ checkTileMap(it.currentPosLocal)
+ }
+ }
+ }
+}
diff --git a/src/commonMain/kotlin/RectangleExt.kt b/src/commonMain/kotlin/RectangleExt.kt
new file mode 100644
index 0000000..04eac45
--- /dev/null
+++ b/src/commonMain/kotlin/RectangleExt.kt
@@ -0,0 +1,23 @@
+import korlibs.math.geom.*
+import korlibs.math.interpolation.*
+
+fun Ratio.interpolate(l: Rectangle, r: Rectangle): Rectangle = Rectangle.interpolated(l, r, this)
+
+fun RectangleD.Companion.getRectWithAnchor(pos: Point, size: Size, anchor: Anchor = Anchor.CENTER): Rectangle {
+ val topLeft = pos - size * anchor
+ return Rectangle(topLeft, size)
+}
+
+fun RectangleD.Companion.getRectWithAnchorClamped(pos: Point, size: Size, anchor: Anchor = Anchor.CENTER, clampBounds: Rectangle, keepProportions: Boolean = true): Rectangle {
+ var rect = getRectWithAnchor(pos, size, anchor)
+ if (rect.right > clampBounds.right) rect = rect.copy(x = rect.x - (rect.right - clampBounds.right))
+ if (rect.bottom > clampBounds.bottom) rect = rect.copy(y = rect.y - (rect.bottom - clampBounds.bottom))
+ if (rect.left < clampBounds.left) rect = rect.copy(x = rect.x - (rect.left - clampBounds.left))
+ if (rect.top < clampBounds.top) rect = rect.copy(y = rect.y - (rect.top - clampBounds.top))
+
+ return when {
+ rect.right > clampBounds.right || rect.bottom > clampBounds.bottom ->
+ rect.applyScaleMode(clampBounds, ScaleMode.COVER, Anchor.TOP_LEFT)
+ else -> rect
+ }
+}
diff --git a/src/commonMain/kotlin/main.kt b/src/commonMain/kotlin/main.kt
new file mode 100644
index 0000000..b872350
--- /dev/null
+++ b/src/commonMain/kotlin/main.kt
@@ -0,0 +1,239 @@
+import com.dragonbones.core.*
+import korlibs.event.*
+import korlibs.image.color.*
+import korlibs.io.file.std.*
+import korlibs.korge.*
+import korlibs.korge.dragonbones.*
+import korlibs.korge.input.*
+import korlibs.korge.mascots.*
+import korlibs.korge.scene.*
+import korlibs.korge.view.*
+import korlibs.korge.view.property.*
+import korlibs.korge.virtualcontroller.*
+import korlibs.math.*
+import korlibs.math.geom.*
+import korlibs.math.interpolation.*
+import korlibs.time.*
+import kotlin.math.*
+
+suspend fun main() = Korge(
+ title = "Korge Platformer",
+ //windowSize = Size(1280, 720),
+ windowSize = Size(512, 512),
+ backgroundColor = Colors["#2b2b2b"],
+ displayMode = KorgeDisplayMode(ScaleMode.SHOW_ALL, Anchor.TOP_LEFT, clipBorders = false),
+) {
+ val sceneContainer = sceneContainer()
+
+ sceneContainer.changeTo { MyScene() }
+ //sceneContainer.changeTo({ RaycastingExampleScene() })
+}
+
+object COLLISIONS {
+ val OUTSIDE = -1
+ val EMPTY = 0
+ val DIRT = 1
+ val LADDER = 2
+ val STONE = 3
+
+ fun isSolid(type: Int, direction: Vector2D): Boolean {
+ return type == DIRT || type == STONE || type == OUTSIDE
+ }
+}
+
+class MyScene : Scene() {
+ @KeepOnReload
+ var currentPlayerPos = Point(200, 200)
+
+ @KeepOnReload
+ var initZoom = 32.0
+
+ @KeepOnReload
+ var zoom = 256.0
+
+ @ViewProperty
+ var gravity = Vector2D(0, 10)
+
+ lateinit var player: KorgeDbArmatureDisplay
+
+ @ViewProperty
+ fun teleportInitialPos() {
+ currentPlayerPos = Point(200, 200)
+ player.pos = currentPlayerPos
+ }
+
+ override suspend fun SContainer.sceneMain() {
+ var immediateSetCamera = false
+ onStageResized { width, height ->
+ size = Size(views.actualVirtualWidth, views.actualVirtualHeight)
+ immediateSetCamera = true
+ }
+ val world = resourcesVfs["ldtk/Typical_2D_platformer_example.ldtk"].readLDTKWorldExt()
+ val collisions = world.createCollisionMaps()
+ //val mapView = LDTKViewExt(world, showCollisions = true)
+ val mapView = LDTKViewExt(world, showCollisions = false)
+ //println(collisions)
+ val db = KorgeDbFactory()
+ db.loadKorgeMascots()
+
+ player = db.buildArmatureDisplayGest()!!
+ .xy(currentPlayerPos)
+ .play(KorgeMascotsAnimations.IDLE)
+ .scale(0.080)
+
+ val camera = camera {
+ this += mapView
+ this += player
+ }
+
+ text(
+ """
+ Use the arrow keys '<-' '->' to move Gest
+ 'z' for zoom
+ Space for jumping
+ startPos = $currentPlayerPos
+ """.trimIndent()
+ ).xy(8, 8)
+
+ //val textCoords = text("-").xy(8, 200)
+ //mapView.mouse { move { textCoords.text = collisions.pixelToTile(it.currentPosLocal.toInt()).toString() } }
+
+ val buttonRadius = 110f
+ val virtualController = virtualController(
+ buttons = listOf(
+ VirtualButtonConfig.SOUTH,
+ VirtualButtonConfig(Key.Z, GameButton.START, Anchor.BOTTOM_RIGHT, offset = Point(0, -buttonRadius * 1.5f))
+ ),
+ buttonRadius = buttonRadius
+ ).also { it.container.alpha(0.5f) }
+
+ var playerSpeed = Vector2D(0, 0)
+ val mapBounds = mapView.getLocalBounds()
+
+ fun tryMoveDelta(delta: Point): Boolean {
+ val newPos = player.pos + delta
+
+ val collisionPoints = listOf(
+ newPos,
+ newPos + Point(-5, 0),
+ newPos + Point(+5, 0),
+ newPos + Point(-5, -7),
+ newPos + Point(+5, -7),
+ newPos + Point(-5, -14),
+ newPos + Point(+5, -14),
+ )
+
+ var set = collisionPoints.all { !COLLISIONS.isSolid(collisions.getPixel(it), delta) }
+ if (set) {
+ player.pos = newPos
+ currentPlayerPos = newPos
+ }
+ return set
+ }
+
+ var playerState = "idle"
+ fun setState(name: String, time: TimeSpan) {
+ if (playerState != name) {
+ playerState = name
+ player.animation.fadeIn(playerState, time)
+ }
+ }
+
+ var jumping = false
+ var moving = false
+
+ fun updateState() {
+ when {
+ jumping -> setState("jump", 0.1.seconds)
+ moving -> setState("walk", 0.1.seconds)
+ else -> setState("idle", 0.3.seconds)
+ }
+ }
+
+ fun updated(right: Boolean, up: Boolean, scale: Float = 1f) {
+ if (!up) {
+ player.scaleX = player.scaleX.absoluteValue * if (right) +1f else -1f
+ tryMoveDelta(Point(2.0, 0) * (if (right) +1 else -1) * scale)
+ player.speed = 2.0 * scale
+ moving = true
+ } else {
+ player.speed = 1.0
+ moving = false
+ }
+ updateState()
+ //updateTextContainerPos()
+ }
+
+ virtualController.apply {
+ down(GameButton.BUTTON_SOUTH) {
+ val isInGround = playerSpeed.y.isAlmostZero()
+ //if (isInGround) {
+ if (true) {
+ if (!jumping) {
+ jumping = true
+ updateState()
+ }
+ playerSpeed += Vector2D(0, -5.5)
+ }
+ }
+ changed(GameButton.LX) {
+ if (it.new.normalizeAlmostZero(.075f) == 0f) {
+ updated(right = it.new > 0f, up = true, scale = 1f)
+ }
+ }
+ }
+
+ fun createSize(zoom: Double): Size {
+ return Size(zoom * (width / height), zoom)
+ }
+
+ var currentRect = Rectangle.getRectWithAnchorClamped(player.pos, createSize(initZoom), Anchor.CENTER, mapBounds)
+
+ virtualController.down(GameButton.START) {
+ val zoomC = zoom
+ val zoomC2 = if (zoomC >= 1024.0) 128.0 else zoomC * 2
+ zoom = zoomC2
+ }
+
+ val FREQ = 60.hz
+ addFixedUpdater(FREQ) {
+ // Move character
+ run {
+ val lx = virtualController.lx.normalizeAlmostZero(.075f)
+ when {
+ lx < 0f -> {
+ updated(right = false, up = false, scale = lx.absoluteValue)
+ }
+ lx > 0f -> {
+ updated(right = true, up = false, scale = lx.absoluteValue)
+ }
+ }
+ }
+
+ // Apply gravity
+ run {
+ playerSpeed += gravity * FREQ.timeSpan.seconds
+ if (!tryMoveDelta(playerSpeed)) {
+ playerSpeed = Vector2D.ZERO
+ if (jumping) {
+ jumping = false
+ updateState()
+ }
+ }
+ }
+
+ // Update camera
+ run {
+ val newRect = Rectangle.getRectWithAnchorClamped(player.pos, createSize(zoom), Anchor.CENTER, mapBounds)
+ if (immediateSetCamera) {
+ immediateSetCamera = false
+ currentRect = newRect
+ }
+ currentRect = (0.05 * 0.5).toRatio().interpolate(currentRect, newRect)
+ //camera.setTo(currentRect.rounded())
+ camera.setTo(currentRect)
+ initZoom = zoom
+ }
+ }
+ }
+}
diff --git a/src/commonMain/resources/korge.png b/src/commonMain/resources/korge.png
new file mode 100644
index 0000000..0526e1d
Binary files /dev/null and b/src/commonMain/resources/korge.png differ
diff --git a/src/commonMain/resources/ldtk/AutoLayers_4_Advanced.ldtk b/src/commonMain/resources/ldtk/AutoLayers_4_Advanced.ldtk
new file mode 100644
index 0000000..1364dec
--- /dev/null
+++ b/src/commonMain/resources/ldtk/AutoLayers_4_Advanced.ldtk
@@ -0,0 +1,2511 @@
+{
+ "__header__": {
+ "fileType": "LDtk Project JSON",
+ "app": "LDtk",
+ "doc": "https://ldtk.io/json",
+ "schema": "https://ldtk.io/files/JSON_SCHEMA.json",
+ "appAuthor": "Sebastien 'deepnight' Benard",
+ "appVersion": "1.1.3",
+ "url": "https://ldtk.io"
+ },
+ "jsonVersion": "1.1.3",
+ "appBuildId": 458364,
+ "nextUid": 104,
+ "identifierStyle": "Capitalize",
+ "worldLayout": "Free",
+ "worldGridWidth": 256,
+ "worldGridHeight": 256,
+ "defaultLevelWidth": 256,
+ "defaultLevelHeight": 256,
+ "defaultPivotX": 0,
+ "defaultPivotY": 0,
+ "defaultGridSize": 16,
+ "bgColor": "#1B2037",
+ "defaultLevelBgColor": "#1B2037",
+ "minifyJson": false,
+ "externalLevels": false,
+ "exportTiled": false,
+ "simplifiedExport": false,
+ "imageExportMode": "None",
+ "pngFilePattern": null,
+ "backupOnSave": false,
+ "backupLimit": 10,
+ "levelNamePattern": "%world_Level_%idx",
+ "tutorialDesc": "Rules can be used to render various biome elements, such as Dirt, Water or Lava.\n\nPress [SHIFT + R] to toggle auto-layers rendering",
+ "flags": ["UseMultilinesType"],
+ "defs": { "layers": [
+ {
+ "__type": "IntGrid",
+ "identifier": "IntGrid_layer",
+ "type": "IntGrid",
+ "uid": 10,
+ "gridSize": 8,
+ "guideGridWid": 0,
+ "guideGridHei": 0,
+ "displayOpacity": 1,
+ "inactiveOpacity": 1,
+ "hideInList": false,
+ "hideFieldsWhenInactive": true,
+ "pxOffsetX": 0,
+ "pxOffsetY": 0,
+ "parallaxFactorX": 0,
+ "parallaxFactorY": 0,
+ "parallaxScaling": true,
+ "requiredTags": [],
+ "excludedTags": [],
+ "intGridValues": [
+ { "value": 1, "identifier": "walls", "color": "#6C8F1D" },
+ { "value": 2, "identifier": "water", "color": "#33ADCC" },
+ { "value": 3, "identifier": "ladder", "color": "#CF805E" },
+ { "value": 4, "identifier": "lava", "color": "#FF0000" }
+ ],
+ "autoTilesetDefUid": 9,
+ "autoRuleGroups": [
+ {
+ "uid": 101,
+ "name": "Wall drop shadows",
+ "active": true,
+ "isOptional": false,
+ "rules": [
+ {
+ "uid": 103,
+ "active": true,
+ "size": 3,
+ "tileIds": [106],
+ "chance": 1,
+ "breakOnMatch": false,
+ "pattern": [0,0,0,1,-1000001,0,0,0,0],
+ "flipX": true,
+ "flipY": false,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 908770,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ },
+ {
+ "uid": 102,
+ "active": true,
+ "size": 5,
+ "tileIds": [118],
+ "chance": 1,
+ "breakOnMatch": false,
+ "pattern": [0,0,1,0,0,0,0,1,0,0,0,0,-1000001,0,0,0,0,0,0,0,0,0,0,0,0],
+ "flipX": false,
+ "flipY": false,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 6593596,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ }
+ ]
+ },
+ {
+ "uid": 98,
+ "name": "Wall fog",
+ "active": true,
+ "isOptional": false,
+ "rules": [
+ {
+ "uid": 100,
+ "active": true,
+ "size": 3,
+ "tileIds": [119],
+ "chance": 1,
+ "breakOnMatch": true,
+ "pattern": [1,1,1,1,1,1,1,1,-1],
+ "flipX": true,
+ "flipY": true,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": 1,
+ "perlinActive": false,
+ "perlinSeed": 6522365,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ },
+ {
+ "uid": 99,
+ "active": true,
+ "size": 3,
+ "tileIds": [95],
+ "chance": 1,
+ "breakOnMatch": true,
+ "pattern": [1,1,1,1,1,1,1,1,1],
+ "flipX": false,
+ "flipY": false,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": 1,
+ "perlinActive": false,
+ "perlinSeed": 7250971,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ }
+ ]
+ },
+ {
+ "uid": 74,
+ "name": "Water",
+ "active": true,
+ "isOptional": false,
+ "rules": [
+ {
+ "uid": 28,
+ "active": true,
+ "size": 3,
+ "tileIds": [120,121,122],
+ "chance": 1,
+ "breakOnMatch": true,
+ "pattern": [0,-2,0,-2,2,-2,0,0,0],
+ "flipX": false,
+ "flipY": false,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 313467,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ },
+ {
+ "uid": 31,
+ "active": true,
+ "size": 3,
+ "tileIds": [120,121,122],
+ "chance": 0.55,
+ "breakOnMatch": true,
+ "pattern": [0,-1000001,0,0,2,0,0,0,0],
+ "flipX": false,
+ "flipY": false,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 1550742,
+ "perlinScale": 0.06,
+ "perlinOctaves": 2
+ },
+ {
+ "uid": 42,
+ "active": true,
+ "size": 3,
+ "tileIds": [132],
+ "chance": 1,
+ "breakOnMatch": true,
+ "pattern": [0,2,0,0,-1000001,0,0,0,0],
+ "flipX": false,
+ "flipY": false,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 3205865,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ },
+ {
+ "uid": 43,
+ "active": true,
+ "size": 3,
+ "tileIds": [108,109,110],
+ "chance": 1,
+ "breakOnMatch": true,
+ "pattern": [0,0,0,-2,2,-2,2,2,2],
+ "flipX": false,
+ "flipY": false,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "checker": "None",
+ "tileMode": "Stamp",
+ "pivotX": 0.5,
+ "pivotY": 1,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 3564442,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ },
+ {
+ "uid": 44,
+ "active": true,
+ "size": 3,
+ "tileIds": [97],
+ "chance": 0.53,
+ "breakOnMatch": true,
+ "pattern": [0,2,0,-2,2,-2,0,0,0],
+ "flipX": false,
+ "flipY": false,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 4152691,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ },
+ {
+ "uid": 45,
+ "active": true,
+ "size": 3,
+ "tileIds": [123],
+ "chance": 1,
+ "breakOnMatch": true,
+ "pattern": [0,-2,0,0,2,0,0,0,0],
+ "flipX": false,
+ "flipY": false,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 1578000,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ },
+ {
+ "uid": 46,
+ "active": true,
+ "size": 1,
+ "tileIds": [134],
+ "chance": 1,
+ "breakOnMatch": true,
+ "pattern": [2],
+ "flipX": false,
+ "flipY": false,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 869252,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ },
+ {
+ "uid": 29,
+ "active": true,
+ "size": 5,
+ "tileIds": [15],
+ "chance": 1,
+ "breakOnMatch": true,
+ "pattern": [0,0,2,0,0,0,0,2,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0],
+ "flipX": true,
+ "flipY": false,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 2560524,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ },
+ {
+ "uid": 30,
+ "active": true,
+ "size": 5,
+ "tileIds": [16,49],
+ "chance": 1,
+ "breakOnMatch": true,
+ "pattern": [0,0,2,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0],
+ "flipX": false,
+ "flipY": false,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 902285,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ }
+ ]
+ },
+ {
+ "uid": 72,
+ "name": "Lava",
+ "active": true,
+ "isOptional": false,
+ "rules": [
+ {
+ "uid": 80,
+ "active": true,
+ "size": 3,
+ "tileIds": [99],
+ "chance": 1,
+ "breakOnMatch": false,
+ "pattern": [4,0,0,4,-4,0,4,4,0],
+ "flipX": true,
+ "flipY": false,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 4922461,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ },
+ {
+ "uid": 36,
+ "active": true,
+ "size": 3,
+ "tileIds": [112],
+ "chance": 1,
+ "breakOnMatch": true,
+ "pattern": [0,4,0,-4,4,-4,4,4,4],
+ "flipX": false,
+ "flipY": false,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 4390085,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ },
+ {
+ "uid": 37,
+ "active": true,
+ "size": 3,
+ "tileIds": [124],
+ "chance": 1,
+ "breakOnMatch": true,
+ "pattern": [0,-4,0,0,4,0,0,0,0],
+ "flipX": false,
+ "flipY": false,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 1365474,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ },
+ {
+ "uid": 38,
+ "active": true,
+ "size": 1,
+ "tileIds": [100],
+ "chance": 1,
+ "breakOnMatch": true,
+ "pattern": [4],
+ "flipX": false,
+ "flipY": false,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 8403599,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ }
+ ]
+ },
+ {
+ "uid": 81,
+ "name": "Misc props",
+ "active": true,
+ "isOptional": false,
+ "rules": [
+ {
+ "uid": 85,
+ "active": true,
+ "size": 5,
+ "tileIds": [64],
+ "chance": 0.2,
+ "breakOnMatch": false,
+ "pattern": [0,0,0,0,0,0,0,0,0,0,0,0,-1000001,0,0,0,0,1,0,0,0,0,1,0,0],
+ "flipX": false,
+ "flipY": false,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": true,
+ "perlinSeed": 8026598,
+ "perlinScale": 0.77,
+ "perlinOctaves": 2
+ },
+ {
+ "uid": 33,
+ "active": true,
+ "size": 5,
+ "tileIds": [65,77],
+ "chance": 0.17,
+ "breakOnMatch": false,
+ "pattern": [0,0,0,0,0,0,-1000001,-1000001,-1000001,0,0,-1000001,-1000001,-1000001,0,0,-1000001,-1000001,-1000001,0,0,1,1,1,0],
+ "flipX": false,
+ "flipY": false,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "checker": "None",
+ "tileMode": "Stamp",
+ "pivotX": 0.5,
+ "pivotY": 0.5,
+ "outOfBoundsValue": null,
+ "perlinActive": true,
+ "perlinSeed": 5431587,
+ "perlinScale": 0.99,
+ "perlinOctaves": 2
+ },
+ {
+ "uid": 49,
+ "active": true,
+ "size": 5,
+ "tileIds": [32,44,33,45,34,46,35,47],
+ "chance": 0.63,
+ "breakOnMatch": false,
+ "pattern": [0,0,0,0,0,0,0,0,0,0,0,0,-1000001,0,0,0,1,1,1,0,0,0,1,0,0],
+ "flipX": false,
+ "flipY": false,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 7824201,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ }
+ ]
+ },
+ {
+ "uid": 73,
+ "name": "Ladders",
+ "active": true,
+ "isOptional": false,
+ "rules": [
+ {
+ "uid": 64,
+ "active": true,
+ "size": 5,
+ "tileIds": [66],
+ "chance": 1,
+ "breakOnMatch": false,
+ "pattern": [0,0,0,0,0,0,0,0,0,0,0,0,-1000001,0,0,0,0,1,0,0,0,0,3,0,0],
+ "flipX": false,
+ "flipY": false,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 3079004,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ },
+ {
+ "uid": 63,
+ "active": true,
+ "size": 3,
+ "tileIds": [78],
+ "chance": 1,
+ "breakOnMatch": true,
+ "pattern": [0,-1000001,0,0,1,0,0,3,0],
+ "flipX": false,
+ "flipY": false,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 6162057,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ },
+ {
+ "uid": 40,
+ "active": true,
+ "size": 3,
+ "tileIds": [66],
+ "chance": 1,
+ "breakOnMatch": false,
+ "pattern": [0,0,0,0,-1000001,0,0,3,0],
+ "flipX": false,
+ "flipY": false,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 1137913,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ },
+ {
+ "uid": 41,
+ "active": true,
+ "size": 1,
+ "tileIds": [78],
+ "chance": 1,
+ "breakOnMatch": true,
+ "pattern": [3],
+ "flipX": false,
+ "flipY": false,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 6377351,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ }
+ ]
+ },
+ {
+ "uid": 77,
+ "name": "Thin platforms",
+ "active": true,
+ "isOptional": false,
+ "rules": [
+ {
+ "uid": 26,
+ "active": true,
+ "size": 3,
+ "tileIds": [30],
+ "chance": 1,
+ "breakOnMatch": true,
+ "pattern": [0,-1000001,0,0,1,1,0,-1,1],
+ "flipX": true,
+ "flipY": false,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 8308428,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ },
+ {
+ "uid": 66,
+ "active": true,
+ "size": 3,
+ "tileIds": [19],
+ "chance": 1,
+ "breakOnMatch": true,
+ "pattern": [0,-1000001,1,0,1,1,0,-1,0],
+ "flipX": false,
+ "flipY": false,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 6488958,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ },
+ {
+ "uid": 84,
+ "active": true,
+ "size": 3,
+ "tileIds": [105],
+ "chance": 1,
+ "breakOnMatch": false,
+ "pattern": [0,3,0,0,1,0,0,-1000001,0],
+ "flipX": false,
+ "flipY": false,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 1687944,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ },
+ {
+ "uid": 27,
+ "active": true,
+ "size": 3,
+ "tileIds": [105],
+ "chance": 1,
+ "breakOnMatch": false,
+ "pattern": [0,-1000001,0,0,1,0,0,-1,0],
+ "flipX": false,
+ "flipY": false,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 97504770,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ }
+ ]
+ },
+ {
+ "uid": 75,
+ "name": "Vegetation",
+ "active": true,
+ "isOptional": false,
+ "rules": [
+ {
+ "uid": 32,
+ "active": true,
+ "size": 5,
+ "tileIds": [252,264,276,288],
+ "chance": 0.3,
+ "breakOnMatch": true,
+ "pattern": [0,0,0,0,0,0,0,0,1,0,0,0,-1000001,1,1,0,0,-1000001,0,0,0,0,0,0,0],
+ "flipX": true,
+ "flipY": false,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 7023974,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ },
+ {
+ "uid": 34,
+ "active": true,
+ "size": 5,
+ "tileIds": [125,252,264,276,288],
+ "chance": 0.3,
+ "breakOnMatch": true,
+ "pattern": [0,0,0,0,0,0,0,0,0,0,0,0,-1000001,0,0,0,0,1,0,0,0,0,1,0,0],
+ "flipX": false,
+ "flipY": false,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 8901260,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ },
+ {
+ "uid": 47,
+ "active": true,
+ "size": 3,
+ "tileIds": [26],
+ "chance": 0.79,
+ "breakOnMatch": true,
+ "pattern": [0,0,0,1,-1,0,1,-1,0],
+ "flipX": true,
+ "flipY": false,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 1342479,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ },
+ {
+ "uid": 50,
+ "active": true,
+ "size": 3,
+ "tileIds": [38,56,57,58,59],
+ "chance": 0.8,
+ "breakOnMatch": false,
+ "pattern": [0,0,0,0,-1,0,0,1,0],
+ "flipX": false,
+ "flipY": false,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 4953503,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ },
+ {
+ "uid": 48,
+ "active": true,
+ "size": 5,
+ "tileIds": [126,127,147,148],
+ "chance": 0.42,
+ "breakOnMatch": false,
+ "pattern": [0,0,1,0,0,0,0,1,0,0,0,0,-1000001,0,0,0,0,-1000001,0,0,0,0,-1000001,0,0],
+ "flipX": false,
+ "flipY": false,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 9614313,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ }
+ ]
+ },
+ {
+ "uid": 76,
+ "name": "Walls",
+ "active": true,
+ "isOptional": false,
+ "rules": [
+ {
+ "uid": 67,
+ "active": true,
+ "size": 5,
+ "tileIds": [26],
+ "chance": 1,
+ "breakOnMatch": false,
+ "pattern": [0,0,0,0,0,0,1,0,0,0,-1,1,-1,0,0,0,0,0,0,0,0,0,0,0,0],
+ "flipX": false,
+ "flipY": false,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 4405514,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ },
+ {
+ "uid": 51,
+ "active": true,
+ "size": 3,
+ "tileIds": [12],
+ "chance": 1,
+ "breakOnMatch": true,
+ "pattern": [0,-1,0,-1,1,0,0,0,0],
+ "flipX": true,
+ "flipY": false,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 6909367,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ },
+ {
+ "uid": 52,
+ "active": true,
+ "size": 3,
+ "tileIds": [49],
+ "chance": 0.4,
+ "breakOnMatch": true,
+ "pattern": [0,-1,0,0,1,0,0,0,0],
+ "flipX": false,
+ "flipY": false,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 6210940,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ },
+ {
+ "uid": 53,
+ "active": true,
+ "size": 3,
+ "tileIds": [36],
+ "chance": 1,
+ "breakOnMatch": true,
+ "pattern": [0,0,0,-1,1,0,0,-1,0],
+ "flipX": true,
+ "flipY": false,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 142435,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ },
+ {
+ "uid": 54,
+ "active": true,
+ "size": 3,
+ "tileIds": [24],
+ "chance": 1,
+ "breakOnMatch": true,
+ "pattern": [0,0,0,-1,1,0,0,0,0],
+ "flipX": true,
+ "flipY": false,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 9150678,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ },
+ {
+ "uid": 55,
+ "active": true,
+ "size": 3,
+ "tileIds": [13],
+ "chance": 1,
+ "breakOnMatch": true,
+ "pattern": [0,-1,0,0,1,0,0,0,0],
+ "flipX": false,
+ "flipY": false,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 2976180,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ },
+ {
+ "uid": 56,
+ "active": true,
+ "size": 3,
+ "tileIds": [37],
+ "chance": 1,
+ "breakOnMatch": true,
+ "pattern": [0,0,0,0,1,0,0,-1,0],
+ "flipX": false,
+ "flipY": false,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 1358051,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ },
+ {
+ "uid": 57,
+ "active": true,
+ "size": 1,
+ "tileIds": [25],
+ "chance": 0.83,
+ "breakOnMatch": true,
+ "pattern": [1],
+ "flipX": false,
+ "flipY": false,
+ "xModulo": 2,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "checker": "Horizontal",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 1787092,
+ "perlinScale": 0.43,
+ "perlinOctaves": 2
+ },
+ {
+ "uid": 58,
+ "active": true,
+ "size": 1,
+ "tileIds": [1,2,3,4,5,6],
+ "chance": 0.41,
+ "breakOnMatch": true,
+ "pattern": [1],
+ "flipX": false,
+ "flipY": false,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 9436988,
+ "perlinScale": 0.29,
+ "perlinOctaves": 3
+ },
+ {
+ "uid": 59,
+ "active": true,
+ "size": 1,
+ "tileIds": [0],
+ "chance": 1,
+ "breakOnMatch": true,
+ "pattern": [1],
+ "flipX": false,
+ "flipY": false,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 7681030,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ }
+ ]
+ }
+ ],
+ "autoSourceLayerDefUid": null,
+ "tilesetDefUid": 9,
+ "tilePivotX": 0,
+ "tilePivotY": 0
+ },
+ {
+ "__type": "AutoLayer",
+ "identifier": "Sky",
+ "type": "AutoLayer",
+ "uid": 91,
+ "gridSize": 8,
+ "guideGridWid": 0,
+ "guideGridHei": 0,
+ "displayOpacity": 1,
+ "inactiveOpacity": 1,
+ "hideInList": false,
+ "hideFieldsWhenInactive": true,
+ "pxOffsetX": 0,
+ "pxOffsetY": 0,
+ "parallaxFactorX": 0,
+ "parallaxFactorY": 0,
+ "parallaxScaling": true,
+ "requiredTags": [],
+ "excludedTags": [],
+ "intGridValues": [],
+ "autoTilesetDefUid": 9,
+ "autoRuleGroups": [{
+ "uid": 92,
+ "name": "Stars",
+ "active": true,
+ "isOptional": false,
+ "rules": [
+ {
+ "uid": 93,
+ "active": true,
+ "size": 3,
+ "tileIds": [216,217,218,219],
+ "chance": 0.14,
+ "breakOnMatch": false,
+ "pattern": [0,0,0,0,-1000001,0,0,-1000001,0],
+ "flipX": false,
+ "flipY": false,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": true,
+ "perlinSeed": 7577971,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ }
+ ]
+ }],
+ "autoSourceLayerDefUid": 10,
+ "tilesetDefUid": 9,
+ "tilePivotX": 0,
+ "tilePivotY": 0
+ }
+ ], "entities": [], "tilesets": [
+ {
+ "__cWid": 12,
+ "__cHei": 32,
+ "identifier": "Cavernas_by_Adam_Saltsman",
+ "uid": 9,
+ "relPath": "atlas/Cavernas_by_Adam_Saltsman.png",
+ "embedAtlas": null,
+ "pxWid": 96,
+ "pxHei": 256,
+ "tileGridSize": 8,
+ "spacing": 0,
+ "padding": 0,
+ "tags": [],
+ "tagsSourceEnumUid": null,
+ "enumTags": [],
+ "customData": [],
+ "savedSelections": [
+ { "ids": [0,1,2,3,4,5,6], "mode": "Random" },
+ { "ids": [120,121,122], "mode": "Random" },
+ { "ids": [56,57,58,59], "mode": "Random" },
+ { "ids": [32,44,33,45,34,46,35,47], "mode": "Random" },
+ { "ids": [9,10], "mode": "Random" },
+ { "ids": [20,21,22], "mode": "Random" },
+ { "ids": [25,40], "mode": "Random" },
+ { "ids": [168,180], "mode": "Stamp" },
+ { "ids": [169,181], "mode": "Stamp" },
+ { "ids": [170,182], "mode": "Stamp" },
+ { "ids": [156,157,158], "mode": "Random" },
+ { "ids": [140,141], "mode": "Random" },
+ { "ids": [142,143], "mode": "Random" },
+ { "ids": [154,155], "mode": "Random" },
+ { "ids": [152,153], "mode": "Random" },
+ { "ids": [164,165], "mode": "Random" },
+ { "ids": [265,277,289], "mode": "Random" },
+ { "ids": [266,278,290], "mode": "Random" },
+ { "ids": [268,280,292], "mode": "Random" },
+ { "ids": [269,281,293], "mode": "Random" },
+ { "ids": [252,264,276,288], "mode": "Random" }
+ ],
+ "cachedPixelData": {
+ "opaqueTiles": "111111111111111111111110111111110000111111110000111111110000111111110000111111110000111111111001111111111100111111111100111111111100111111111111000111111111111001111100111000000000111000000000111000000000111000000000111100000000111111000000111111000000111111000000111111000000111111000000111111000000111111000000000000000000000000000000000000000000000000000000000000000000000000000000",
+ "averageColors": "f123f224f224f224f224f224f224f224f333f324f323f434f573f453f343f666f666f334f544f544f334f334f3340000f343f223f233f334f445f555f644f2344336323563464346f343f233f233f334f223f778f223f5337335523553366346f224f666f667f974f654f654f533f5332564256435642454f334f236f445f644f544f634f434f3344235000000000000f235f236f334f644f433f223f764f6660000000000000000f447f233f224f223fa54f224f335f446f75400000000f011f236f34af236f623fe41f555f999f888f644f5443000b011f888f78bf888f679fea8fdccfaaaf556f434f12330003111f66af67bf67bf349fe97f453f343f334f654f54410000000f226f224f338f236f423f224f224f224f623f623f267f267711271237112f333f343f224f224f123f852f852f326f325f112f112f11200000000f224f224f224f777f77700000000f744f459f112000000000000000000000000000000000000f743f338f111000000000000000000000000000000000000f223f223f223000000000000000000000000000000000000f223f223f123000000000000000000000000000000000000f223f223f123f22400000000000000000000000000000000f243f233f343f235f123f235000000000000000000000000f233f343f343f224f235f235000000000000000000000000f233f644f333f123f224f224000000000000000000000000f233f754f444f123f224f224000000000000000000000000f233f754f434f123f224f224000000000000000000000000f233f754f444f123f224f224000000000000000000000000f123f864f434f123f235f224000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"
+ }
+ }
+ ], "enums": [], "externalEnums": [], "levelFields": [] },
+ "levels": [
+ {
+ "identifier": "AutoLayers_advanced_demo",
+ "iid": "a2b563a0-66b0-11ec-9cd7-fd8a9b24800f",
+ "uid": 70,
+ "worldX": 0,
+ "worldY": 16,
+ "worldDepth": 0,
+ "pxWid": 296,
+ "pxHei": 304,
+ "__bgColor": "#1B2037",
+ "bgColor": null,
+ "useAutoIdentifier": false,
+ "bgRelPath": null,
+ "bgPos": null,
+ "bgPivotX": 0.5,
+ "bgPivotY": 0.5,
+ "__smartColor": "#828491",
+ "__bgPos": null,
+ "externalRelPath": null,
+ "fieldInstances": [],
+ "layerInstances": [
+ {
+ "__identifier": "IntGrid_layer",
+ "__type": "IntGrid",
+ "__cWid": 37,
+ "__cHei": 38,
+ "__gridSize": 8,
+ "__opacity": 1,
+ "__pxTotalOffsetX": 0,
+ "__pxTotalOffsetY": 0,
+ "__tilesetDefUid": 9,
+ "__tilesetRelPath": "atlas/Cavernas_by_Adam_Saltsman.png",
+ "iid": "a2b563a3-66b0-11ec-9cd7-3b4d61ca1d4f",
+ "levelId": 70,
+ "layerDefUid": 10,
+ "pxOffsetX": 0,
+ "pxOffsetY": 0,
+ "visible": true,
+ "optionalRules": [],
+ "intGridCsv": [
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,1,1,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,1,1,1,1,1,
+ 0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,2,2,2,2,1,0,0,0,0,0,0,0,0,0,
+ 1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,2,2,2,2,1,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,2,2,2,1,1,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,0,
+ 0,0,0,1,1,1,1,1,1,1,1,3,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,
+ 1,1,1,1,1,1,1,1,1,1,1,1,1,3,1,1,1,1,0,0,1,1,1,0,0,0,0,0,0,1,1,1,2,1,1,
+ 1,1,0,0,3,0,0,1,1,1,1,1,1,1,1,3,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,1,1,1,2,
+ 0,1,1,1,0,0,3,0,0,0,1,1,1,0,0,0,0,3,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,1,0,
+ 0,2,0,0,1,1,0,0,3,0,0,0,1,1,0,0,0,0,0,3,0,1,1,0,1,1,1,0,0,0,0,0,0,0,0,
+ 1,0,0,2,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,0,0,3,0,1,1,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,
+ 1,0,0,0,0,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,1,1,1,0,0,0,0,0,0,0,
+ 1,1,1,0,0,1,1,0,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,1,1,
+ 1,1,1,1,1,0,0,1,1,2,2,2,2,2,2,2,2,1,1,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,1,
+ 1,1,1,1,1,1,1,0,0,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
+ 1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,2,1,1,2,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,
+ 1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,
+ 0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,2,1,1,1,1,1,1,1,1,1,0,0,0,0,1,
+ 1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,2,1,1,1,1,1,1,1,1,0,0,0,0,
+ 1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,2,1,1,1,1,2,1,0,0,0,0,
+ 0,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,1,1,1,1,1,2,1,1,1,1,2,0,0,0,
+ 0,0,1,1,1,1,1,0,0,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,0,0,2,0,
+ 0,0,0,0,0,1,1,1,0,0,0,0,1,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,2,1,0,0,0,
+ 2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,4,4,4,4,1,1,1,1,1,1,1,1,1,1,1,0,2,0,0,
+ 0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,4,1,1,1,1,1,1,1,1,1,1,1,1,0,0,2,
+ 0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,4,1,1,1,1,1,1,1,1,1,1,1,1,0,
+ 0,2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,4,0,0,1,1,1,1,1,1,1,1,1,
+ 1,0,0,2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,4,0,0,1,1,1,1,1,1,1,
+ 1,1,0,0,0,2,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,1,1,4,4,4,4,4,4,1,1,1,1,1,
+ 1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,4,4,4,4,4,1,1,1,
+ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
+ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
+ 1,1,1,1,1,1
+ ],
+ "autoLayerTiles": [
+ { "px": [24,168], "src": [0,0], "f": 0, "t": 0, "d": [59,780] },
+ { "px": [152,216], "src": [0,0], "f": 0, "t": 0, "d": [59,1018] },
+ { "px": [208,248], "src": [0,0], "f": 0, "t": 0, "d": [59,1173] },
+ { "px": [224,88], "src": [48,0], "f": 0, "t": 6, "d": [58,435] },
+ { "px": [160,48], "src": [8,16], "f": 0, "t": 25, "d": [57,242] },
+ { "px": [128,96], "src": [8,16], "f": 0, "t": 25, "d": [57,460] },
+ { "px": [256,96], "src": [8,16], "f": 0, "t": 25, "d": [57,476] },
+ { "px": [104,200], "src": [8,16], "f": 0, "t": 25, "d": [57,938] },
+ { "px": [176,208], "src": [8,16], "f": 0, "t": 25, "d": [57,984] },
+ { "px": [136,56], "src": [8,24], "f": 0, "t": 37, "d": [56,276] },
+ { "px": [144,56], "src": [8,24], "f": 0, "t": 37, "d": [56,277] },
+ { "px": [232,88], "src": [8,24], "f": 0, "t": 37, "d": [56,436] },
+ { "px": [240,88], "src": [8,24], "f": 0, "t": 37, "d": [56,437] },
+ { "px": [88,96], "src": [8,24], "f": 0, "t": 37, "d": [56,455] },
+ { "px": [160,104], "src": [8,24], "f": 0, "t": 37, "d": [56,501] },
+ { "px": [168,104], "src": [8,24], "f": 0, "t": 37, "d": [56,502] },
+ { "px": [176,104], "src": [8,24], "f": 0, "t": 37, "d": [56,503] },
+ { "px": [32,112], "src": [8,24], "f": 0, "t": 37, "d": [56,522] },
+ { "px": [224,112], "src": [8,24], "f": 0, "t": 37, "d": [56,546] },
+ { "px": [240,120], "src": [8,24], "f": 0, "t": 37, "d": [56,585] },
+ { "px": [200,144], "src": [8,24], "f": 0, "t": 37, "d": [56,691] },
+ { "px": [216,176], "src": [8,24], "f": 0, "t": 37, "d": [56,841] },
+ { "px": [224,176], "src": [8,24], "f": 0, "t": 37, "d": [56,842] },
+ { "px": [96,200], "src": [8,24], "f": 0, "t": 37, "d": [56,937] },
+ { "px": [112,200], "src": [8,24], "f": 0, "t": 37, "d": [56,939] },
+ { "px": [80,216], "src": [8,24], "f": 0, "t": 37, "d": [56,1009] },
+ { "px": [160,224], "src": [8,24], "f": 0, "t": 37, "d": [56,1056] },
+ { "px": [216,248], "src": [8,24], "f": 0, "t": 37, "d": [56,1174] },
+ { "px": [248,248], "src": [8,24], "f": 0, "t": 37, "d": [56,1178] },
+ { "px": [152,40], "src": [8,8], "f": 0, "t": 13, "d": [55,204] },
+ { "px": [208,56], "src": [8,8], "f": 0, "t": 13, "d": [55,285] },
+ { "px": [216,56], "src": [8,8], "f": 0, "t": 13, "d": [55,286] },
+ { "px": [224,56], "src": [8,8], "f": 0, "t": 13, "d": [55,287] },
+ { "px": [240,56], "src": [8,8], "f": 0, "t": 13, "d": [55,289] },
+ { "px": [136,88], "src": [8,8], "f": 0, "t": 13, "d": [55,424] },
+ { "px": [152,88], "src": [8,8], "f": 0, "t": 13, "d": [55,426] },
+ { "px": [232,112], "src": [8,8], "f": 0, "t": 13, "d": [55,547] },
+ { "px": [192,136], "src": [8,8], "f": 0, "t": 13, "d": [55,653] },
+ { "px": [200,136], "src": [8,8], "f": 0, "t": 13, "d": [55,654] },
+ { "px": [280,144], "src": [8,8], "f": 0, "t": 13, "d": [55,701] },
+ { "px": [104,160], "src": [8,8], "f": 0, "t": 13, "d": [55,753] },
+ { "px": [32,168], "src": [8,8], "f": 0, "t": 13, "d": [55,781] },
+ { "px": [128,168], "src": [8,8], "f": 0, "t": 13, "d": [55,793] },
+ { "px": [208,168], "src": [8,8], "f": 0, "t": 13, "d": [55,803] },
+ { "px": [216,168], "src": [8,8], "f": 0, "t": 13, "d": [55,804] },
+ { "px": [248,240], "src": [8,8], "f": 0, "t": 13, "d": [55,1141] },
+ { "px": [192,248], "src": [8,8], "f": 0, "t": 13, "d": [55,1171] },
+ { "px": [200,248], "src": [8,8], "f": 0, "t": 13, "d": [55,1172] },
+ { "px": [32,288], "src": [8,8], "f": 0, "t": 13, "d": [55,1336] },
+ { "px": [40,288], "src": [8,8], "f": 0, "t": 13, "d": [55,1337] },
+ { "px": [64,288], "src": [8,8], "f": 0, "t": 13, "d": [55,1340] },
+ { "px": [72,288], "src": [8,8], "f": 0, "t": 13, "d": [55,1341] },
+ { "px": [80,288], "src": [8,8], "f": 0, "t": 13, "d": [55,1342] },
+ { "px": [112,288], "src": [8,8], "f": 0, "t": 13, "d": [55,1346] },
+ { "px": [120,288], "src": [8,8], "f": 0, "t": 13, "d": [55,1347] },
+ { "px": [144,288], "src": [8,8], "f": 0, "t": 13, "d": [55,1350] },
+ { "px": [168,288], "src": [8,8], "f": 0, "t": 13, "d": [55,1353] },
+ { "px": [216,288], "src": [8,8], "f": 0, "t": 13, "d": [55,1359] },
+ { "px": [224,288], "src": [8,8], "f": 0, "t": 13, "d": [55,1360] },
+ { "px": [232,288], "src": [8,8], "f": 0, "t": 13, "d": [55,1361] },
+ { "px": [240,288], "src": [8,8], "f": 0, "t": 13, "d": [55,1362] },
+ { "px": [72,48], "src": [0,16], "f": 0, "t": 24, "d": [54,231] },
+ { "px": [128,48], "src": [0,16], "f": 0, "t": 24, "d": [54,238] },
+ { "px": [72,56], "src": [0,16], "f": 0, "t": 24, "d": [54,268] },
+ { "px": [160,56], "src": [0,16], "f": 1, "t": 24, "d": [54,279] },
+ { "px": [24,64], "src": [0,16], "f": 0, "t": 24, "d": [54,299] },
+ { "px": [32,64], "src": [0,16], "f": 1, "t": 24, "d": [54,300] },
+ { "px": [72,64], "src": [0,16], "f": 0, "t": 24, "d": [54,305] },
+ { "px": [24,72], "src": [0,16], "f": 0, "t": 24, "d": [54,336] },
+ { "px": [32,72], "src": [0,16], "f": 1, "t": 24, "d": [54,337] },
+ { "px": [72,72], "src": [0,16], "f": 0, "t": 24, "d": [54,342] },
+ { "px": [256,72], "src": [0,16], "f": 1, "t": 24, "d": [54,365] },
+ { "px": [24,80], "src": [0,16], "f": 0, "t": 24, "d": [54,373] },
+ { "px": [32,80], "src": [0,16], "f": 1, "t": 24, "d": [54,374] },
+ { "px": [72,80], "src": [0,16], "f": 1, "t": 24, "d": [54,379] },
+ { "px": [224,80], "src": [0,16], "f": 0, "t": 24, "d": [54,398] },
+ { "px": [256,80], "src": [0,16], "f": 1, "t": 24, "d": [54,402] },
+ { "px": [24,88], "src": [0,16], "f": 0, "t": 24, "d": [54,410] },
+ { "px": [256,88], "src": [0,16], "f": 1, "t": 24, "d": [54,439] },
+ { "px": [24,96], "src": [0,16], "f": 0, "t": 24, "d": [54,447] },
+ { "px": [40,96], "src": [0,16], "f": 1, "t": 24, "d": [54,449] },
+ { "px": [56,96], "src": [0,16], "f": 0, "t": 24, "d": [54,451] },
+ { "px": [184,96], "src": [0,16], "f": 1, "t": 24, "d": [54,467] },
+ { "px": [200,96], "src": [0,16], "f": 0, "t": 24, "d": [54,469] },
+ { "px": [224,96], "src": [0,16], "f": 1, "t": 24, "d": [54,472] },
+ { "px": [248,96], "src": [0,16], "f": 0, "t": 24, "d": [54,475] },
+ { "px": [24,104], "src": [0,16], "f": 0, "t": 24, "d": [54,484] },
+ { "px": [40,104], "src": [0,16], "f": 1, "t": 24, "d": [54,486] },
+ { "px": [80,104], "src": [0,16], "f": 1, "t": 24, "d": [54,491] },
+ { "px": [200,104], "src": [0,16], "f": 0, "t": 24, "d": [54,506] },
+ { "px": [224,104], "src": [0,16], "f": 1, "t": 24, "d": [54,509] },
+ { "px": [256,104], "src": [0,16], "f": 1, "t": 24, "d": [54,513] },
+ { "px": [24,112], "src": [0,16], "f": 0, "t": 24, "d": [54,521] },
+ { "px": [80,112], "src": [0,16], "f": 1, "t": 24, "d": [54,528] },
+ { "px": [136,112], "src": [0,16], "f": 0, "t": 24, "d": [54,535] },
+ { "px": [24,120], "src": [0,16], "f": 1, "t": 24, "d": [54,558] },
+ { "px": [144,120], "src": [0,16], "f": 1, "t": 24, "d": [54,573] },
+ { "px": [208,120], "src": [0,16], "f": 0, "t": 24, "d": [54,581] },
+ { "px": [216,120], "src": [0,16], "f": 1, "t": 24, "d": [54,582] },
+ { "px": [144,128], "src": [0,16], "f": 0, "t": 24, "d": [54,610] },
+ { "px": [208,128], "src": [0,16], "f": 0, "t": 24, "d": [54,618] },
+ { "px": [208,136], "src": [0,16], "f": 1, "t": 24, "d": [54,655] },
+ { "px": [16,160], "src": [0,16], "f": 0, "t": 24, "d": [54,742] },
+ { "px": [24,160], "src": [0,16], "f": 1, "t": 24, "d": [54,743] },
+ { "px": [232,160], "src": [0,16], "f": 0, "t": 24, "d": [54,769] },
+ { "px": [96,168], "src": [0,16], "f": 0, "t": 24, "d": [54,789] },
+ { "px": [24,176], "src": [0,16], "f": 0, "t": 24, "d": [54,817] },
+ { "px": [48,176], "src": [0,16], "f": 1, "t": 24, "d": [54,820] },
+ { "px": [128,176], "src": [0,16], "f": 1, "t": 24, "d": [54,830] },
+ { "px": [24,184], "src": [0,16], "f": 0, "t": 24, "d": [54,854] },
+ { "px": [48,184], "src": [0,16], "f": 1, "t": 24, "d": [54,857] },
+ { "px": [64,184], "src": [0,16], "f": 0, "t": 24, "d": [54,859] },
+ { "px": [128,184], "src": [0,16], "f": 1, "t": 24, "d": [54,867] },
+ { "px": [232,184], "src": [0,16], "f": 0, "t": 24, "d": [54,880] },
+ { "px": [24,192], "src": [0,16], "f": 0, "t": 24, "d": [54,891] },
+ { "px": [48,192], "src": [0,16], "f": 1, "t": 24, "d": [54,894] },
+ { "px": [64,192], "src": [0,16], "f": 0, "t": 24, "d": [54,896] },
+ { "px": [48,200], "src": [0,16], "f": 1, "t": 24, "d": [54,931] },
+ { "px": [64,200], "src": [0,16], "f": 0, "t": 24, "d": [54,933] },
+ { "px": [176,200], "src": [0,16], "f": 1, "t": 24, "d": [54,947] },
+ { "px": [240,200], "src": [0,16], "f": 0, "t": 24, "d": [54,955] },
+ { "px": [48,208], "src": [0,16], "f": 1, "t": 24, "d": [54,968] },
+ { "px": [64,208], "src": [0,16], "f": 0, "t": 24, "d": [54,970] },
+ { "px": [88,208], "src": [0,16], "f": 1, "t": 24, "d": [54,973] },
+ { "px": [8,216], "src": [0,16], "f": 0, "t": 24, "d": [54,1000] },
+ { "px": [48,216], "src": [0,16], "f": 1, "t": 24, "d": [54,1005] },
+ { "px": [64,216], "src": [0,16], "f": 0, "t": 24, "d": [54,1007] },
+ { "px": [48,224], "src": [0,16], "f": 1, "t": 24, "d": [54,1042] },
+ { "px": [64,224], "src": [0,16], "f": 0, "t": 24, "d": [54,1044] },
+ { "px": [208,224], "src": [0,16], "f": 0, "t": 24, "d": [54,1062] },
+ { "px": [216,224], "src": [0,16], "f": 1, "t": 24, "d": [54,1063] },
+ { "px": [256,224], "src": [0,16], "f": 0, "t": 24, "d": [54,1068] },
+ { "px": [208,232], "src": [0,16], "f": 0, "t": 24, "d": [54,1099] },
+ { "px": [216,232], "src": [0,16], "f": 1, "t": 24, "d": [54,1100] },
+ { "px": [256,232], "src": [0,16], "f": 0, "t": 24, "d": [54,1105] },
+ { "px": [208,240], "src": [0,16], "f": 0, "t": 24, "d": [54,1136] },
+ { "px": [32,248], "src": [0,16], "f": 1, "t": 24, "d": [54,1151] },
+ { "px": [32,256], "src": [0,16], "f": 1, "t": 24, "d": [54,1188] },
+ { "px": [192,256], "src": [0,16], "f": 0, "t": 24, "d": [54,1208] },
+ { "px": [256,256], "src": [0,16], "f": 0, "t": 24, "d": [54,1216] },
+ { "px": [200,264], "src": [0,16], "f": 1, "t": 24, "d": [54,1246] },
+ { "px": [256,264], "src": [0,16], "f": 0, "t": 24, "d": [54,1253] },
+ { "px": [24,272], "src": [0,16], "f": 1, "t": 24, "d": [54,1261] },
+ { "px": [200,272], "src": [0,16], "f": 1, "t": 24, "d": [54,1283] },
+ { "px": [256,272], "src": [0,16], "f": 0, "t": 24, "d": [54,1290] },
+ { "px": [24,280], "src": [0,16], "f": 1, "t": 24, "d": [54,1298] },
+ { "px": [176,280], "src": [0,16], "f": 0, "t": 24, "d": [54,1317] },
+ { "px": [256,280], "src": [0,16], "f": 0, "t": 24, "d": [54,1327] },
+ { "px": [128,56], "src": [0,24], "f": 0, "t": 36, "d": [53,275] },
+ { "px": [152,64], "src": [0,24], "f": 0, "t": 36, "d": [53,315] },
+ { "px": [160,64], "src": [0,24], "f": 1, "t": 36, "d": [53,316] },
+ { "px": [208,64], "src": [0,24], "f": 0, "t": 36, "d": [53,322] },
+ { "px": [216,72], "src": [0,24], "f": 0, "t": 36, "d": [53,360] },
+ { "px": [56,104], "src": [0,24], "f": 0, "t": 36, "d": [53,488] },
+ { "px": [128,104], "src": [0,24], "f": 0, "t": 36, "d": [53,497] },
+ { "px": [184,104], "src": [0,24], "f": 1, "t": 36, "d": [53,504] },
+ { "px": [40,112], "src": [0,24], "f": 1, "t": 36, "d": [53,523] },
+ { "px": [64,112], "src": [0,24], "f": 0, "t": 36, "d": [53,526] },
+ { "px": [152,112], "src": [0,24], "f": 1, "t": 36, "d": [53,537] },
+ { "px": [200,112], "src": [0,24], "f": 0, "t": 36, "d": [53,543] },
+ { "px": [256,112], "src": [0,24], "f": 1, "t": 36, "d": [53,550] },
+ { "px": [72,120], "src": [0,24], "f": 0, "t": 36, "d": [53,564] },
+ { "px": [80,120], "src": [0,24], "f": 1, "t": 36, "d": [53,565] },
+ { "px": [136,120], "src": [0,24], "f": 0, "t": 36, "d": [53,572] },
+ { "px": [232,120], "src": [0,24], "f": 0, "t": 36, "d": [53,584] },
+ { "px": [248,120], "src": [0,24], "f": 1, "t": 36, "d": [53,586] },
+ { "px": [24,128], "src": [0,24], "f": 0, "t": 36, "d": [53,595] },
+ { "px": [216,128], "src": [0,24], "f": 1, "t": 36, "d": [53,619] },
+ { "px": [144,136], "src": [0,24], "f": 0, "t": 36, "d": [53,647] },
+ { "px": [192,144], "src": [0,24], "f": 0, "t": 36, "d": [53,690] },
+ { "px": [208,144], "src": [0,24], "f": 1, "t": 36, "d": [53,692] },
+ { "px": [16,168], "src": [0,24], "f": 0, "t": 36, "d": [53,779] },
+ { "px": [208,176], "src": [0,24], "f": 0, "t": 36, "d": [53,840] },
+ { "px": [128,192], "src": [0,24], "f": 1, "t": 36, "d": [53,904] },
+ { "px": [232,192], "src": [0,24], "f": 0, "t": 36, "d": [53,917] },
+ { "px": [120,200], "src": [0,24], "f": 1, "t": 36, "d": [53,940] },
+ { "px": [104,208], "src": [0,24], "f": 0, "t": 36, "d": [53,975] },
+ { "px": [240,208], "src": [0,24], "f": 0, "t": 36, "d": [53,992] },
+ { "px": [88,216], "src": [0,24], "f": 1, "t": 36, "d": [53,1010] },
+ { "px": [176,216], "src": [0,24], "f": 1, "t": 36, "d": [53,1021] },
+ { "px": [248,216], "src": [0,24], "f": 0, "t": 36, "d": [53,1030] },
+ { "px": [72,224], "src": [0,24], "f": 1, "t": 36, "d": [53,1045] },
+ { "px": [152,224], "src": [0,24], "f": 0, "t": 36, "d": [53,1055] },
+ { "px": [168,224], "src": [0,24], "f": 1, "t": 36, "d": [53,1057] },
+ { "px": [48,232], "src": [0,24], "f": 1, "t": 36, "d": [53,1079] },
+ { "px": [64,232], "src": [0,24], "f": 0, "t": 36, "d": [53,1081] },
+ { "px": [40,240], "src": [0,24], "f": 1, "t": 36, "d": [53,1115] },
+ { "px": [224,248], "src": [0,24], "f": 1, "t": 36, "d": [53,1175] },
+ { "px": [240,248], "src": [0,24], "f": 0, "t": 36, "d": [53,1177] },
+ { "px": [208,256], "src": [0,24], "f": 1, "t": 36, "d": [53,1210] },
+ { "px": [32,264], "src": [0,24], "f": 1, "t": 36, "d": [53,1225] },
+ { "px": [72,40], "src": [8,32], "f": 0, "t": 49, "d": [52,194] },
+ { "px": [128,40], "src": [8,32], "f": 0, "t": 49, "d": [52,201] },
+ { "px": [136,40], "src": [8,32], "f": 0, "t": 49, "d": [52,202] },
+ { "px": [144,40], "src": [8,32], "f": 0, "t": 49, "d": [52,203] },
+ { "px": [232,56], "src": [8,32], "f": 0, "t": 49, "d": [52,288] },
+ { "px": [80,88], "src": [8,32], "f": 0, "t": 49, "d": [52,417] },
+ { "px": [144,88], "src": [8,32], "f": 0, "t": 49, "d": [52,425] },
+ { "px": [160,88], "src": [8,32], "f": 0, "t": 49, "d": [52,427] },
+ { "px": [168,88], "src": [8,32], "f": 0, "t": 49, "d": [52,428] },
+ { "px": [176,88], "src": [8,32], "f": 0, "t": 49, "d": [52,429] },
+ { "px": [208,88], "src": [8,32], "f": 0, "t": 49, "d": [52,433] },
+ { "px": [216,88], "src": [8,32], "f": 0, "t": 49, "d": [52,434] },
+ { "px": [240,152], "src": [8,32], "f": 0, "t": 49, "d": [52,733] },
+ { "px": [248,152], "src": [8,32], "f": 0, "t": 49, "d": [52,734] },
+ { "px": [256,152], "src": [8,32], "f": 0, "t": 49, "d": [52,735] },
+ { "px": [264,152], "src": [8,32], "f": 0, "t": 49, "d": [52,736] },
+ { "px": [40,168], "src": [8,32], "f": 0, "t": 49, "d": [52,782] },
+ { "px": [120,168], "src": [8,32], "f": 0, "t": 49, "d": [52,792] },
+ { "px": [224,168], "src": [8,32], "f": 0, "t": 49, "d": [52,805] },
+ { "px": [0,224], "src": [8,32], "f": 0, "t": 49, "d": [52,1036] },
+ { "px": [48,288], "src": [8,32], "f": 0, "t": 49, "d": [52,1338] },
+ { "px": [88,288], "src": [8,32], "f": 0, "t": 49, "d": [52,1343] },
+ { "px": [104,288], "src": [8,32], "f": 0, "t": 49, "d": [52,1345] },
+ { "px": [128,288], "src": [8,32], "f": 0, "t": 49, "d": [52,1348] },
+ { "px": [136,288], "src": [8,32], "f": 0, "t": 49, "d": [52,1349] },
+ { "px": [152,288], "src": [8,32], "f": 0, "t": 49, "d": [52,1351] },
+ { "px": [160,288], "src": [8,32], "f": 0, "t": 49, "d": [52,1352] },
+ { "px": [248,288], "src": [8,32], "f": 0, "t": 49, "d": [52,1363] },
+ { "px": [160,40], "src": [0,8], "f": 1, "t": 12, "d": [51,205] },
+ { "px": [24,56], "src": [0,8], "f": 0, "t": 12, "d": [51,262] },
+ { "px": [32,56], "src": [0,8], "f": 1, "t": 12, "d": [51,263] },
+ { "px": [248,56], "src": [0,8], "f": 1, "t": 12, "d": [51,290] },
+ { "px": [256,64], "src": [0,8], "f": 1, "t": 12, "d": [51,328] },
+ { "px": [88,88], "src": [0,8], "f": 1, "t": 12, "d": [51,418] },
+ { "px": [128,88], "src": [0,8], "f": 0, "t": 12, "d": [51,423] },
+ { "px": [184,88], "src": [0,8], "f": 1, "t": 12, "d": [51,430] },
+ { "px": [200,88], "src": [0,8], "f": 0, "t": 12, "d": [51,432] },
+ { "px": [240,104], "src": [0,8], "f": 0, "t": 12, "d": [51,511] },
+ { "px": [288,136], "src": [0,8], "f": 0, "t": 12, "d": [51,665] },
+ { "px": [272,144], "src": [0,8], "f": 0, "t": 12, "d": [51,700] },
+ { "px": [16,152], "src": [0,8], "f": 0, "t": 12, "d": [51,705] },
+ { "px": [24,152], "src": [0,8], "f": 1, "t": 12, "d": [51,706] },
+ { "px": [232,152], "src": [0,8], "f": 0, "t": 12, "d": [51,732] },
+ { "px": [96,160], "src": [0,8], "f": 0, "t": 12, "d": [51,752] },
+ { "px": [112,160], "src": [0,8], "f": 1, "t": 12, "d": [51,754] },
+ { "px": [168,192], "src": [0,8], "f": 0, "t": 12, "d": [51,909] },
+ { "px": [176,192], "src": [0,8], "f": 1, "t": 12, "d": [51,910] },
+ { "px": [16,200], "src": [0,8], "f": 0, "t": 12, "d": [51,927] },
+ { "px": [160,200], "src": [0,8], "f": 0, "t": 12, "d": [51,945] },
+ { "px": [8,208], "src": [0,8], "f": 0, "t": 12, "d": [51,963] },
+ { "px": [152,208], "src": [0,8], "f": 0, "t": 12, "d": [51,981] },
+ { "px": [208,216], "src": [0,8], "f": 0, "t": 12, "d": [51,1025] },
+ { "px": [216,216], "src": [0,8], "f": 1, "t": 12, "d": [51,1026] },
+ { "px": [224,240], "src": [0,8], "f": 1, "t": 12, "d": [51,1138] },
+ { "px": [240,240], "src": [0,8], "f": 0, "t": 12, "d": [51,1140] },
+ { "px": [184,264], "src": [0,8], "f": 0, "t": 12, "d": [51,1244] },
+ { "px": [176,272], "src": [0,8], "f": 0, "t": 12, "d": [51,1280] },
+ { "px": [208,280], "src": [0,8], "f": 1, "t": 12, "d": [51,1321] },
+ { "px": [80,72], "src": [16,16], "f": 0, "t": 26, "d": [67,343] },
+ { "px": [32,128], "src": [16,16], "f": 0, "t": 26, "d": [67,596] },
+ { "px": [152,128], "src": [16,16], "f": 0, "t": 26, "d": [67,611] },
+ { "px": [160,112], "src": [32,96], "f": 0, "t": 148, "d": [48,538] },
+ { "px": [168,112], "src": [24,96], "f": 0, "t": 147, "d": [48,539] },
+ { "px": [176,112], "src": [24,96], "f": 0, "t": 147, "d": [48,540] },
+ { "px": [40,120], "src": [56,80], "f": 0, "t": 127, "d": [48,560] },
+ { "px": [72,128], "src": [48,80], "f": 0, "t": 126, "d": [48,601] },
+ { "px": [248,128], "src": [32,96], "f": 0, "t": 148, "d": [48,623] },
+ { "px": [208,184], "src": [56,80], "f": 0, "t": 127, "d": [48,877] },
+ { "px": [216,184], "src": [24,96], "f": 0, "t": 147, "d": [48,878] },
+ { "px": [128,200], "src": [32,96], "f": 0, "t": 148, "d": [48,941] },
+ { "px": [112,208], "src": [48,80], "f": 0, "t": 126, "d": [48,976] },
+ { "px": [104,216], "src": [56,80], "f": 0, "t": 127, "d": [48,1012] },
+ { "px": [88,224], "src": [24,96], "f": 0, "t": 147, "d": [48,1047] },
+ { "px": [72,232], "src": [56,80], "f": 0, "t": 127, "d": [48,1082] },
+ { "px": [152,232], "src": [32,96], "f": 0, "t": 148, "d": [48,1092] },
+ { "px": [64,240], "src": [56,80], "f": 0, "t": 127, "d": [48,1118] },
+ { "px": [80,32], "src": [64,32], "f": 0, "t": 56, "d": [50,158] },
+ { "px": [96,32], "src": [88,32], "f": 0, "t": 59, "d": [50,160] },
+ { "px": [104,32], "src": [72,32], "f": 0, "t": 57, "d": [50,161] },
+ { "px": [112,32], "src": [16,24], "f": 0, "t": 38, "d": [50,162] },
+ { "px": [120,32], "src": [16,24], "f": 0, "t": 38, "d": [50,163] },
+ { "px": [136,32], "src": [88,32], "f": 0, "t": 59, "d": [50,165] },
+ { "px": [144,32], "src": [72,32], "f": 0, "t": 57, "d": [50,166] },
+ { "px": [152,32], "src": [16,24], "f": 0, "t": 38, "d": [50,167] },
+ { "px": [160,32], "src": [16,24], "f": 0, "t": 38, "d": [50,168] },
+ { "px": [168,40], "src": [16,24], "f": 0, "t": 38, "d": [50,206] },
+ { "px": [24,48], "src": [88,32], "f": 0, "t": 59, "d": [50,225] },
+ { "px": [32,48], "src": [64,32], "f": 0, "t": 56, "d": [50,226] },
+ { "px": [192,48], "src": [72,32], "f": 0, "t": 57, "d": [50,246] },
+ { "px": [224,48], "src": [72,32], "f": 0, "t": 57, "d": [50,250] },
+ { "px": [232,48], "src": [64,32], "f": 0, "t": 56, "d": [50,251] },
+ { "px": [240,48], "src": [16,24], "f": 0, "t": 38, "d": [50,252] },
+ { "px": [256,56], "src": [16,24], "f": 0, "t": 38, "d": [50,291] },
+ { "px": [80,80], "src": [64,32], "f": 0, "t": 56, "d": [50,380] },
+ { "px": [88,80], "src": [16,24], "f": 0, "t": 38, "d": [50,381] },
+ { "px": [136,80], "src": [88,32], "f": 0, "t": 59, "d": [50,387] },
+ { "px": [144,80], "src": [16,24], "f": 0, "t": 38, "d": [50,388] },
+ { "px": [152,80], "src": [80,32], "f": 0, "t": 58, "d": [50,389] },
+ { "px": [168,80], "src": [80,32], "f": 0, "t": 58, "d": [50,391] },
+ { "px": [184,80], "src": [16,24], "f": 0, "t": 38, "d": [50,393] },
+ { "px": [208,80], "src": [72,32], "f": 0, "t": 57, "d": [50,396] },
+ { "px": [216,80], "src": [16,24], "f": 0, "t": 38, "d": [50,397] },
+ { "px": [120,88], "src": [80,32], "f": 0, "t": 58, "d": [50,422] },
+ { "px": [240,96], "src": [88,32], "f": 0, "t": 59, "d": [50,474] },
+ { "px": [16,112], "src": [64,32], "f": 0, "t": 56, "d": [50,520] },
+ { "px": [176,128], "src": [16,24], "f": 0, "t": 38, "d": [50,614] },
+ { "px": [184,128], "src": [64,32], "f": 0, "t": 56, "d": [50,615] },
+ { "px": [280,136], "src": [16,24], "f": 0, "t": 38, "d": [50,664] },
+ { "px": [16,144], "src": [64,32], "f": 0, "t": 56, "d": [50,668] },
+ { "px": [232,144], "src": [80,32], "f": 0, "t": 58, "d": [50,695] },
+ { "px": [256,144], "src": [64,32], "f": 0, "t": 56, "d": [50,698] },
+ { "px": [264,144], "src": [88,32], "f": 0, "t": 59, "d": [50,699] },
+ { "px": [112,152], "src": [72,32], "f": 0, "t": 57, "d": [50,717] },
+ { "px": [120,160], "src": [72,32], "f": 0, "t": 57, "d": [50,755] },
+ { "px": [136,160], "src": [16,24], "f": 0, "t": 38, "d": [50,757] },
+ { "px": [144,160], "src": [88,32], "f": 0, "t": 59, "d": [50,758] },
+ { "px": [152,160], "src": [88,32], "f": 0, "t": 59, "d": [50,759] },
+ { "px": [168,160], "src": [64,32], "f": 0, "t": 56, "d": [50,761] },
+ { "px": [176,160], "src": [88,32], "f": 0, "t": 59, "d": [50,762] },
+ { "px": [192,160], "src": [64,32], "f": 0, "t": 56, "d": [50,764] },
+ { "px": [16,192], "src": [16,24], "f": 0, "t": 38, "d": [50,890] },
+ { "px": [8,200], "src": [88,32], "f": 0, "t": 59, "d": [50,926] },
+ { "px": [152,200], "src": [88,32], "f": 0, "t": 59, "d": [50,944] },
+ { "px": [184,200], "src": [80,32], "f": 0, "t": 58, "d": [50,948] },
+ { "px": [192,200], "src": [16,24], "f": 0, "t": 38, "d": [50,949] },
+ { "px": [144,208], "src": [88,32], "f": 0, "t": 59, "d": [50,980] },
+ { "px": [208,208], "src": [72,32], "f": 0, "t": 57, "d": [50,988] },
+ { "px": [0,216], "src": [64,32], "f": 0, "t": 56, "d": [50,999] },
+ { "px": [176,240], "src": [80,32], "f": 0, "t": 58, "d": [50,1132] },
+ { "px": [184,240], "src": [72,32], "f": 0, "t": 57, "d": [50,1133] },
+ { "px": [192,240], "src": [80,32], "f": 0, "t": 58, "d": [50,1134] },
+ { "px": [184,256], "src": [16,24], "f": 0, "t": 38, "d": [50,1207] },
+ { "px": [176,264], "src": [72,32], "f": 0, "t": 57, "d": [50,1243] },
+ { "px": [64,48], "src": [16,16], "f": 1, "t": 26, "d": [47,230] },
+ { "px": [80,48], "src": [16,16], "f": 0, "t": 26, "d": [47,232] },
+ { "px": [120,48], "src": [16,16], "f": 1, "t": 26, "d": [47,237] },
+ { "px": [40,56], "src": [16,16], "f": 0, "t": 26, "d": [47,264] },
+ { "px": [64,56], "src": [16,16], "f": 1, "t": 26, "d": [47,267] },
+ { "px": [80,56], "src": [16,16], "f": 0, "t": 26, "d": [47,269] },
+ { "px": [16,64], "src": [16,16], "f": 1, "t": 26, "d": [47,298] },
+ { "px": [80,64], "src": [16,16], "f": 0, "t": 26, "d": [47,306] },
+ { "px": [16,80], "src": [16,16], "f": 1, "t": 26, "d": [47,372] },
+ { "px": [16,88], "src": [16,16], "f": 1, "t": 26, "d": [47,409] },
+ { "px": [16,96], "src": [16,16], "f": 1, "t": 26, "d": [47,446] },
+ { "px": [232,96], "src": [16,16], "f": 0, "t": 26, "d": [47,473] },
+ { "px": [16,104], "src": [16,16], "f": 1, "t": 26, "d": [47,483] },
+ { "px": [88,104], "src": [16,16], "f": 0, "t": 26, "d": [47,492] },
+ { "px": [264,104], "src": [16,16], "f": 0, "t": 26, "d": [47,514] },
+ { "px": [128,112], "src": [16,16], "f": 1, "t": 26, "d": [47,534] },
+ { "px": [152,120], "src": [16,16], "f": 0, "t": 26, "d": [47,574] },
+ { "px": [136,128], "src": [16,16], "f": 1, "t": 26, "d": [47,609] },
+ { "px": [8,152], "src": [16,16], "f": 1, "t": 26, "d": [47,704] },
+ { "px": [32,152], "src": [16,16], "f": 0, "t": 26, "d": [47,707] },
+ { "px": [224,152], "src": [16,16], "f": 1, "t": 26, "d": [47,731] },
+ { "px": [16,176], "src": [16,16], "f": 1, "t": 26, "d": [47,816] },
+ { "px": [136,176], "src": [16,16], "f": 0, "t": 26, "d": [47,831] },
+ { "px": [16,184], "src": [16,16], "f": 1, "t": 26, "d": [47,853] },
+ { "px": [136,184], "src": [16,16], "f": 0, "t": 26, "d": [47,868] },
+ { "px": [224,184], "src": [16,16], "f": 1, "t": 26, "d": [47,879] },
+ { "px": [184,192], "src": [16,16], "f": 0, "t": 26, "d": [47,911] },
+ { "px": [0,208], "src": [16,16], "f": 1, "t": 26, "d": [47,962] },
+ { "px": [200,216], "src": [16,16], "f": 1, "t": 26, "d": [47,1024] },
+ { "px": [224,216], "src": [16,16], "f": 0, "t": 26, "d": [47,1027] },
+ { "px": [200,224], "src": [16,16], "f": 1, "t": 26, "d": [47,1061] },
+ { "px": [224,224], "src": [16,16], "f": 0, "t": 26, "d": [47,1064] },
+ { "px": [200,232], "src": [16,16], "f": 1, "t": 26, "d": [47,1098] },
+ { "px": [40,256], "src": [16,16], "f": 0, "t": 26, "d": [47,1189] },
+ { "px": [248,256], "src": [16,16], "f": 1, "t": 26, "d": [47,1215] },
+ { "px": [248,264], "src": [16,16], "f": 1, "t": 26, "d": [47,1252] },
+ { "px": [168,272], "src": [16,16], "f": 1, "t": 26, "d": [47,1279] },
+ { "px": [72,32], "src": [0,184], "f": 0, "t": 276, "d": [34,157] },
+ { "px": [208,48], "src": [0,192], "f": 0, "t": 288, "d": [34,248] },
+ { "px": [248,48], "src": [0,168], "f": 0, "t": 252, "d": [34,253] },
+ { "px": [128,80], "src": [40,80], "f": 0, "t": 125, "d": [34,386] },
+ { "px": [200,80], "src": [40,80], "f": 0, "t": 125, "d": [34,395] },
+ { "px": [232,104], "src": [0,168], "f": 0, "t": 252, "d": [34,510] },
+ { "px": [248,144], "src": [0,192], "f": 0, "t": 288, "d": [34,697] },
+ { "px": [96,152], "src": [0,184], "f": 0, "t": 276, "d": [34,715] },
+ { "px": [168,184], "src": [40,80], "f": 0, "t": 125, "d": [34,872] },
+ { "px": [176,184], "src": [0,176], "f": 0, "t": 264, "d": [34,873] },
+ { "px": [200,240], "src": [0,168], "f": 0, "t": 252, "d": [34,1135] },
+ { "px": [120,56], "src": [0,176], "f": 0, "t": 264, "d": [32,274] },
+ { "px": [144,64], "src": [0,168], "f": 0, "t": 252, "d": [32,314] },
+ { "px": [168,64], "src": [0,184], "f": 1, "t": 276, "d": [32,317] },
+ { "px": [208,72], "src": [0,176], "f": 0, "t": 264, "d": [32,359] },
+ { "px": [264,72], "src": [0,192], "f": 1, "t": 288, "d": [32,366] },
+ { "px": [264,80], "src": [0,192], "f": 1, "t": 288, "d": [32,403] },
+ { "px": [56,112], "src": [0,168], "f": 0, "t": 252, "d": [32,525] },
+ { "px": [88,112], "src": [0,184], "f": 1, "t": 276, "d": [32,529] },
+ { "px": [264,112], "src": [0,176], "f": 1, "t": 264, "d": [32,551] },
+ { "px": [32,120], "src": [0,192], "f": 1, "t": 288, "d": [32,559] },
+ { "px": [64,120], "src": [0,168], "f": 0, "t": 252, "d": [32,563] },
+ { "px": [88,120], "src": [0,176], "f": 1, "t": 264, "d": [32,566] },
+ { "px": [200,120], "src": [0,192], "f": 0, "t": 288, "d": [32,580] },
+ { "px": [224,120], "src": [0,176], "f": 0, "t": 264, "d": [32,583] },
+ { "px": [136,136], "src": [0,176], "f": 0, "t": 264, "d": [32,646] },
+ { "px": [216,136], "src": [0,192], "f": 1, "t": 288, "d": [32,656] },
+ { "px": [216,144], "src": [0,168], "f": 1, "t": 252, "d": [32,693] },
+ { "px": [8,160], "src": [0,168], "f": 0, "t": 252, "d": [32,741] },
+ { "px": [8,168], "src": [0,176], "f": 0, "t": 264, "d": [32,778] },
+ { "px": [200,176], "src": [0,176], "f": 0, "t": 264, "d": [32,839] },
+ { "px": [232,208], "src": [0,176], "f": 0, "t": 264, "d": [32,991] },
+ { "px": [240,216], "src": [0,184], "f": 0, "t": 276, "d": [32,1029] },
+ { "px": [144,224], "src": [0,168], "f": 0, "t": 252, "d": [32,1054] },
+ { "px": [48,240], "src": [0,168], "f": 1, "t": 252, "d": [32,1116] },
+ { "px": [40,248], "src": [0,168], "f": 1, "t": 252, "d": [32,1152] },
+ { "px": [88,40], "src": [72,64], "f": 0, "t": 105, "d": [27,196] },
+ { "px": [96,40], "src": [72,64], "f": 0, "t": 105, "d": [27,197] },
+ { "px": [104,40], "src": [72,64], "f": 0, "t": 105, "d": [27,198] },
+ { "px": [112,40], "src": [72,64], "f": 0, "t": 105, "d": [27,199] },
+ { "px": [192,56], "src": [72,64], "f": 0, "t": 105, "d": [27,283] },
+ { "px": [96,96], "src": [72,64], "f": 0, "t": 105, "d": [27,456] },
+ { "px": [112,96], "src": [72,64], "f": 0, "t": 105, "d": [27,458] },
+ { "px": [152,136], "src": [72,64], "f": 0, "t": 105, "d": [27,648] },
+ { "px": [168,136], "src": [72,64], "f": 0, "t": 105, "d": [27,650] },
+ { "px": [176,136], "src": [72,64], "f": 0, "t": 105, "d": [27,651] },
+ { "px": [144,168], "src": [72,64], "f": 0, "t": 105, "d": [27,795] },
+ { "px": [152,168], "src": [72,64], "f": 0, "t": 105, "d": [27,796] },
+ { "px": [168,168], "src": [72,64], "f": 0, "t": 105, "d": [27,798] },
+ { "px": [176,168], "src": [72,64], "f": 0, "t": 105, "d": [27,799] },
+ { "px": [184,168], "src": [72,64], "f": 0, "t": 105, "d": [27,800] },
+ { "px": [192,168], "src": [72,64], "f": 0, "t": 105, "d": [27,801] },
+ { "px": [192,208], "src": [72,64], "f": 0, "t": 105, "d": [27,986] },
+ { "px": [176,248], "src": [72,64], "f": 0, "t": 105, "d": [27,1169] },
+ { "px": [160,168], "src": [72,64], "f": 0, "t": 105, "d": [84,797] },
+ { "px": [64,40], "src": [48,16], "f": 0, "t": 30, "d": [26,193] },
+ { "px": [80,40], "src": [48,16], "f": 1, "t": 30, "d": [26,195] },
+ { "px": [120,40], "src": [48,16], "f": 0, "t": 30, "d": [26,200] },
+ { "px": [168,48], "src": [48,16], "f": 1, "t": 30, "d": [26,243] },
+ { "px": [200,56], "src": [48,16], "f": 0, "t": 30, "d": [26,284] },
+ { "px": [120,96], "src": [48,16], "f": 0, "t": 30, "d": [26,459] },
+ { "px": [264,96], "src": [48,16], "f": 1, "t": 30, "d": [26,477] },
+ { "px": [16,120], "src": [48,16], "f": 0, "t": 30, "d": [26,557] },
+ { "px": [184,136], "src": [48,16], "f": 0, "t": 30, "d": [26,652] },
+ { "px": [136,168], "src": [48,16], "f": 1, "t": 30, "d": [26,794] },
+ { "px": [200,168], "src": [48,16], "f": 0, "t": 30, "d": [26,802] },
+ { "px": [184,208], "src": [48,16], "f": 1, "t": 30, "d": [26,985] },
+ { "px": [144,216], "src": [48,16], "f": 0, "t": 30, "d": [26,1017] },
+ { "px": [184,248], "src": [48,16], "f": 0, "t": 30, "d": [26,1170] },
+ { "px": [192,88], "src": [48,48], "f": 0, "t": 78, "d": [41,431] },
+ { "px": [192,96], "src": [48,48], "f": 0, "t": 78, "d": [41,468] },
+ { "px": [104,104], "src": [48,48], "f": 0, "t": 78, "d": [41,494] },
+ { "px": [192,104], "src": [48,48], "f": 0, "t": 78, "d": [41,505] },
+ { "px": [104,112], "src": [48,48], "f": 0, "t": 78, "d": [41,531] },
+ { "px": [192,112], "src": [48,48], "f": 0, "t": 78, "d": [41,542] },
+ { "px": [104,120], "src": [48,48], "f": 0, "t": 78, "d": [41,568] },
+ { "px": [192,120], "src": [48,48], "f": 0, "t": 78, "d": [41,579] },
+ { "px": [104,128], "src": [48,48], "f": 0, "t": 78, "d": [41,605] },
+ { "px": [192,128], "src": [48,48], "f": 0, "t": 78, "d": [41,616] },
+ { "px": [104,136], "src": [48,48], "f": 0, "t": 78, "d": [41,642] },
+ { "px": [104,144], "src": [48,48], "f": 0, "t": 78, "d": [41,679] },
+ { "px": [160,144], "src": [48,48], "f": 0, "t": 78, "d": [41,686] },
+ { "px": [104,152], "src": [48,48], "f": 0, "t": 78, "d": [41,716] },
+ { "px": [160,152], "src": [48,48], "f": 0, "t": 78, "d": [41,723] },
+ { "px": [160,160], "src": [48,48], "f": 0, "t": 78, "d": [41,760] },
+ { "px": [192,80], "src": [48,40], "f": 0, "t": 66, "d": [40,394] },
+ { "px": [104,96], "src": [48,48], "f": 0, "t": 78, "d": [63,457] },
+ { "px": [160,136], "src": [48,48], "f": 0, "t": 78, "d": [63,649] },
+ { "px": [104,88], "src": [48,40], "f": 0, "t": 66, "d": [64,420] },
+ { "px": [160,128], "src": [48,40], "f": 0, "t": 66, "d": [64,612] },
+ { "px": [72,32], "src": [88,16], "f": 0, "t": 35, "d": [49,157] },
+ { "px": [136,32], "src": [72,24], "f": 0, "t": 45, "d": [49,165] },
+ { "px": [144,32], "src": [80,24], "f": 0, "t": 46, "d": [49,166] },
+ { "px": [152,32], "src": [80,16], "f": 0, "t": 34, "d": [49,167] },
+ { "px": [216,48], "src": [72,24], "f": 0, "t": 45, "d": [49,249] },
+ { "px": [224,48], "src": [72,24], "f": 0, "t": 45, "d": [49,250] },
+ { "px": [240,48], "src": [64,24], "f": 0, "t": 44, "d": [49,252] },
+ { "px": [136,80], "src": [64,24], "f": 0, "t": 44, "d": [49,387] },
+ { "px": [152,80], "src": [72,16], "f": 0, "t": 33, "d": [49,389] },
+ { "px": [168,80], "src": [64,24], "f": 0, "t": 44, "d": [49,391] },
+ { "px": [216,80], "src": [80,24], "f": 0, "t": 46, "d": [49,397] },
+ { "px": [248,144], "src": [80,24], "f": 0, "t": 46, "d": [49,697] },
+ { "px": [256,144], "src": [80,16], "f": 0, "t": 34, "d": [49,698] },
+ { "px": [264,144], "src": [80,24], "f": 0, "t": 46, "d": [49,699] },
+ { "px": [128,160], "src": [64,24], "f": 0, "t": 44, "d": [49,756] },
+ { "px": [208,160], "src": [80,24], "f": 0, "t": 46, "d": [49,766] },
+ { "px": [192,240], "src": [88,24], "f": 0, "t": 47, "d": [49,1134] },
+ { "px": [104,20], "src": [40,40], "f": 0, "t": 65, "d": [33,124] },
+ { "px": [104,28], "src": [40,48], "f": 0, "t": 77, "d": [33,124] },
+ { "px": [136,68], "src": [40,40], "f": 0, "t": 65, "d": [33,350] },
+ { "px": [136,76], "src": [40,48], "f": 0, "t": 77, "d": [33,350] },
+ { "px": [104,76], "src": [40,40], "f": 0, "t": 65, "d": [33,383] },
+ { "px": [104,84], "src": [40,48], "f": 0, "t": 77, "d": [33,383] },
+ { "px": [168,116], "src": [40,40], "f": 0, "t": 65, "d": [33,576] },
+ { "px": [168,124], "src": [40,48], "f": 0, "t": 77, "d": [33,576] },
+ { "px": [256,132], "src": [40,40], "f": 0, "t": 65, "d": [33,661] },
+ { "px": [256,140], "src": [40,48], "f": 0, "t": 77, "d": [33,661] },
+ { "px": [128,148], "src": [40,40], "f": 0, "t": 65, "d": [33,719] },
+ { "px": [128,156], "src": [40,48], "f": 0, "t": 77, "d": [33,719] },
+ { "px": [184,228], "src": [40,40], "f": 0, "t": 65, "d": [33,1096] },
+ { "px": [184,236], "src": [40,48], "f": 0, "t": 77, "d": [33,1096] },
+ { "px": [160,80], "src": [32,40], "f": 0, "t": 64, "d": [85,390] },
+ { "px": [200,128], "src": [32,40], "f": 0, "t": 64, "d": [85,617] },
+ { "px": [24,144], "src": [32,40], "f": 0, "t": 64, "d": [85,669] },
+ { "px": [240,144], "src": [32,40], "f": 0, "t": 64, "d": [85,696] },
+ { "px": [224,160], "src": [32,40], "f": 0, "t": 64, "d": [85,768] },
+ { "px": [216,208], "src": [32,40], "f": 0, "t": 64, "d": [85,989] },
+ { "px": [232,240], "src": [32,64], "f": 0, "t": 100, "d": [38,1139] },
+ { "px": [232,248], "src": [32,64], "f": 0, "t": 100, "d": [38,1176] },
+ { "px": [232,256], "src": [32,64], "f": 0, "t": 100, "d": [38,1213] },
+ { "px": [232,272], "src": [32,64], "f": 0, "t": 100, "d": [38,1287] },
+ { "px": [216,280], "src": [32,64], "f": 0, "t": 100, "d": [38,1322] },
+ { "px": [224,280], "src": [32,64], "f": 0, "t": 100, "d": [38,1323] },
+ { "px": [232,280], "src": [32,64], "f": 0, "t": 100, "d": [38,1324] },
+ { "px": [240,280], "src": [32,64], "f": 0, "t": 100, "d": [38,1325] },
+ { "px": [248,280], "src": [32,64], "f": 0, "t": 100, "d": [38,1326] },
+ { "px": [224,232], "src": [32,80], "f": 0, "t": 124, "d": [37,1101] },
+ { "px": [232,232], "src": [32,80], "f": 0, "t": 124, "d": [37,1102] },
+ { "px": [240,232], "src": [32,80], "f": 0, "t": 124, "d": [37,1103] },
+ { "px": [248,232], "src": [32,80], "f": 0, "t": 124, "d": [37,1104] },
+ { "px": [208,272], "src": [32,80], "f": 0, "t": 124, "d": [37,1284] },
+ { "px": [216,272], "src": [32,80], "f": 0, "t": 124, "d": [37,1285] },
+ { "px": [224,272], "src": [32,80], "f": 0, "t": 124, "d": [37,1286] },
+ { "px": [240,272], "src": [32,80], "f": 0, "t": 124, "d": [37,1288] },
+ { "px": [248,272], "src": [32,80], "f": 0, "t": 124, "d": [37,1289] },
+ { "px": [232,264], "src": [32,72], "f": 0, "t": 112, "d": [36,1250] },
+ { "px": [224,264], "src": [24,64], "f": 1, "t": 99, "d": [80,1249] },
+ { "px": [240,264], "src": [24,64], "f": 0, "t": 99, "d": [80,1251] },
+ { "px": [80,184], "src": [32,8], "f": 0, "t": 16, "d": [30,861] },
+ { "px": [56,288], "src": [8,32], "f": 0, "t": 49, "d": [30,1339] },
+ { "px": [96,288], "src": [8,32], "f": 0, "t": 49, "d": [30,1344] },
+ { "px": [64,80], "src": [24,8], "f": 0, "t": 15, "d": [29,378] },
+ { "px": [40,88], "src": [24,8], "f": 1, "t": 15, "d": [29,412] },
+ { "px": [56,88], "src": [24,8], "f": 0, "t": 15, "d": [29,414] },
+ { "px": [48,168], "src": [24,8], "f": 1, "t": 15, "d": [29,783] },
+ { "px": [64,176], "src": [24,8], "f": 0, "t": 15, "d": [29,822] },
+ { "px": [72,176], "src": [24,8], "f": 1, "t": 15, "d": [29,823] },
+ { "px": [88,176], "src": [24,8], "f": 0, "t": 15, "d": [29,825] },
+ { "px": [40,72], "src": [16,88], "f": 0, "t": 134, "d": [46,338] },
+ { "px": [48,72], "src": [16,88], "f": 0, "t": 134, "d": [46,339] },
+ { "px": [56,72], "src": [16,88], "f": 0, "t": 134, "d": [46,340] },
+ { "px": [64,72], "src": [16,88], "f": 0, "t": 134, "d": [46,341] },
+ { "px": [40,80], "src": [16,88], "f": 0, "t": 134, "d": [46,375] },
+ { "px": [48,80], "src": [16,88], "f": 0, "t": 134, "d": [46,376] },
+ { "px": [56,80], "src": [16,88], "f": 0, "t": 134, "d": [46,377] },
+ { "px": [48,112], "src": [16,88], "f": 0, "t": 134, "d": [46,524] },
+ { "px": [48,128], "src": [16,88], "f": 0, "t": 134, "d": [46,598] },
+ { "px": [48,144], "src": [16,88], "f": 0, "t": 134, "d": [46,672] },
+ { "px": [48,160], "src": [16,88], "f": 0, "t": 134, "d": [46,746] },
+ { "px": [56,168], "src": [16,88], "f": 0, "t": 134, "d": [46,784] },
+ { "px": [64,168], "src": [16,88], "f": 0, "t": 134, "d": [46,785] },
+ { "px": [72,168], "src": [16,88], "f": 0, "t": 134, "d": [46,786] },
+ { "px": [80,168], "src": [16,88], "f": 0, "t": 134, "d": [46,787] },
+ { "px": [88,168], "src": [16,88], "f": 0, "t": 134, "d": [46,788] },
+ { "px": [56,176], "src": [16,88], "f": 0, "t": 134, "d": [46,821] },
+ { "px": [80,176], "src": [16,88], "f": 0, "t": 134, "d": [46,824] },
+ { "px": [56,184], "src": [16,88], "f": 0, "t": 134, "d": [46,858] },
+ { "px": [56,192], "src": [16,88], "f": 0, "t": 134, "d": [46,895] },
+ { "px": [96,216], "src": [16,88], "f": 0, "t": 134, "d": [46,1011] },
+ { "px": [56,224], "src": [16,88], "f": 0, "t": 134, "d": [46,1043] },
+ { "px": [56,232], "src": [16,88], "f": 0, "t": 134, "d": [46,1080] },
+ { "px": [56,240], "src": [16,88], "f": 0, "t": 134, "d": [46,1117] },
+ { "px": [96,240], "src": [16,88], "f": 0, "t": 134, "d": [46,1122] },
+ { "px": [56,256], "src": [16,88], "f": 0, "t": 134, "d": [46,1191] },
+ { "px": [56,264], "src": [16,88], "f": 0, "t": 134, "d": [46,1228] },
+ { "px": [96,264], "src": [16,88], "f": 0, "t": 134, "d": [46,1233] },
+ { "px": [56,280], "src": [16,88], "f": 0, "t": 134, "d": [46,1302] },
+ { "px": [96,280], "src": [16,88], "f": 0, "t": 134, "d": [46,1307] },
+ { "px": [40,64], "src": [24,80], "f": 0, "t": 123, "d": [45,301] },
+ { "px": [56,64], "src": [24,80], "f": 0, "t": 123, "d": [45,303] },
+ { "px": [64,64], "src": [24,80], "f": 0, "t": 123, "d": [45,304] },
+ { "px": [56,160], "src": [24,80], "f": 0, "t": 123, "d": [45,747] },
+ { "px": [64,160], "src": [24,80], "f": 0, "t": 123, "d": [45,748] },
+ { "px": [72,160], "src": [24,80], "f": 0, "t": 123, "d": [45,749] },
+ { "px": [32,280], "src": [24,80], "f": 0, "t": 123, "d": [45,1299] },
+ { "px": [40,280], "src": [24,80], "f": 0, "t": 123, "d": [45,1300] },
+ { "px": [88,280], "src": [24,80], "f": 0, "t": 123, "d": [45,1306] },
+ { "px": [112,280], "src": [24,80], "f": 0, "t": 123, "d": [45,1309] },
+ { "px": [136,280], "src": [24,80], "f": 0, "t": 123, "d": [45,1312] },
+ { "px": [144,280], "src": [24,80], "f": 0, "t": 123, "d": [45,1313] },
+ { "px": [160,280], "src": [24,80], "f": 0, "t": 123, "d": [45,1315] },
+ { "px": [48,88], "src": [8,64], "f": 0, "t": 97, "d": [44,413] },
+ { "px": [48,96], "src": [8,64], "f": 0, "t": 97, "d": [44,450] },
+ { "px": [48,104], "src": [8,64], "f": 0, "t": 97, "d": [44,487] },
+ { "px": [48,120], "src": [8,64], "f": 0, "t": 97, "d": [44,561] },
+ { "px": [48,136], "src": [8,64], "f": 0, "t": 97, "d": [44,635] },
+ { "px": [56,200], "src": [8,64], "f": 0, "t": 97, "d": [44,932] },
+ { "px": [56,208], "src": [8,64], "f": 0, "t": 97, "d": [44,969] },
+ { "px": [56,216], "src": [8,64], "f": 0, "t": 97, "d": [44,1006] },
+ { "px": [96,224], "src": [8,64], "f": 0, "t": 97, "d": [44,1048] },
+ { "px": [96,232], "src": [8,64], "f": 0, "t": 97, "d": [44,1085] },
+ { "px": [56,248], "src": [8,64], "f": 0, "t": 97, "d": [44,1154] },
+ { "px": [96,248], "src": [8,64], "f": 0, "t": 97, "d": [44,1159] },
+ { "px": [96,256], "src": [8,64], "f": 0, "t": 97, "d": [44,1196] },
+ { "px": [40,152], "src": [0,72], "f": 0, "t": 108, "d": [43,709] },
+ { "px": [48,152], "src": [8,72], "f": 0, "t": 109, "d": [43,709] },
+ { "px": [56,152], "src": [16,72], "f": 0, "t": 110, "d": [43,709] },
+ { "px": [48,272], "src": [0,72], "f": 0, "t": 108, "d": [43,1265] },
+ { "px": [56,272], "src": [8,72], "f": 0, "t": 109, "d": [43,1265] },
+ { "px": [64,272], "src": [16,72], "f": 0, "t": 110, "d": [43,1265] },
+ { "px": [88,272], "src": [0,72], "f": 0, "t": 108, "d": [43,1270] },
+ { "px": [96,272], "src": [8,72], "f": 0, "t": 109, "d": [43,1270] },
+ { "px": [104,272], "src": [16,72], "f": 0, "t": 110, "d": [43,1270] },
+ { "px": [48,64], "src": [16,80], "f": 0, "t": 122, "d": [31,302] },
+ { "px": [32,160], "src": [8,80], "f": 0, "t": 121, "d": [31,744] },
+ { "px": [40,160], "src": [0,80], "f": 0, "t": 120, "d": [31,745] },
+ { "px": [80,160], "src": [16,80], "f": 0, "t": 122, "d": [31,750] },
+ { "px": [88,160], "src": [16,80], "f": 0, "t": 122, "d": [31,751] },
+ { "px": [48,280], "src": [0,80], "f": 0, "t": 120, "d": [31,1301] },
+ { "px": [64,280], "src": [16,80], "f": 0, "t": 122, "d": [31,1303] },
+ { "px": [72,280], "src": [16,80], "f": 0, "t": 122, "d": [31,1304] },
+ { "px": [80,280], "src": [16,80], "f": 0, "t": 122, "d": [31,1305] },
+ { "px": [104,280], "src": [8,80], "f": 0, "t": 121, "d": [31,1308] },
+ { "px": [120,280], "src": [0,80], "f": 0, "t": 120, "d": [31,1310] },
+ { "px": [128,280], "src": [0,80], "f": 0, "t": 120, "d": [31,1311] },
+ { "px": [152,280], "src": [0,80], "f": 0, "t": 120, "d": [31,1314] },
+ { "px": [168,280], "src": [0,80], "f": 0, "t": 120, "d": [31,1316] },
+ { "px": [96,208], "src": [16,80], "f": 0, "t": 122, "d": [28,974] },
+ { "px": [136,48], "src": [88,56], "f": 0, "t": 95, "d": [99,239] },
+ { "px": [144,48], "src": [88,56], "f": 0, "t": 95, "d": [99,240] },
+ { "px": [152,48], "src": [88,56], "f": 0, "t": 95, "d": [99,241] },
+ { "px": [224,64], "src": [88,56], "f": 0, "t": 95, "d": [99,324] },
+ { "px": [232,64], "src": [88,56], "f": 0, "t": 95, "d": [99,325] },
+ { "px": [240,64], "src": [88,56], "f": 0, "t": 95, "d": [99,326] },
+ { "px": [232,72], "src": [88,56], "f": 0, "t": 95, "d": [99,362] },
+ { "px": [240,72], "src": [88,56], "f": 0, "t": 95, "d": [99,363] },
+ { "px": [248,72], "src": [88,56], "f": 0, "t": 95, "d": [99,364] },
+ { "px": [232,80], "src": [88,56], "f": 0, "t": 95, "d": [99,399] },
+ { "px": [240,80], "src": [88,56], "f": 0, "t": 95, "d": [99,400] },
+ { "px": [248,80], "src": [88,56], "f": 0, "t": 95, "d": [99,401] },
+ { "px": [32,96], "src": [88,56], "f": 0, "t": 95, "d": [99,448] },
+ { "px": [64,96], "src": [88,56], "f": 0, "t": 95, "d": [99,452] },
+ { "px": [72,96], "src": [88,56], "f": 0, "t": 95, "d": [99,453] },
+ { "px": [136,96], "src": [88,56], "f": 0, "t": 95, "d": [99,461] },
+ { "px": [144,96], "src": [88,56], "f": 0, "t": 95, "d": [99,462] },
+ { "px": [152,96], "src": [88,56], "f": 0, "t": 95, "d": [99,463] },
+ { "px": [160,96], "src": [88,56], "f": 0, "t": 95, "d": [99,464] },
+ { "px": [168,96], "src": [88,56], "f": 0, "t": 95, "d": [99,465] },
+ { "px": [176,96], "src": [88,56], "f": 0, "t": 95, "d": [99,466] },
+ { "px": [208,96], "src": [88,56], "f": 0, "t": 95, "d": [99,470] },
+ { "px": [216,96], "src": [88,56], "f": 0, "t": 95, "d": [99,471] },
+ { "px": [32,104], "src": [88,56], "f": 0, "t": 95, "d": [99,485] },
+ { "px": [72,104], "src": [88,56], "f": 0, "t": 95, "d": [99,490] },
+ { "px": [144,104], "src": [88,56], "f": 0, "t": 95, "d": [99,499] },
+ { "px": [208,104], "src": [88,56], "f": 0, "t": 95, "d": [99,507] },
+ { "px": [216,104], "src": [88,56], "f": 0, "t": 95, "d": [99,508] },
+ { "px": [280,152], "src": [88,56], "f": 0, "t": 95, "d": [99,738] },
+ { "px": [288,152], "src": [88,56], "f": 0, "t": 95, "d": [99,739] },
+ { "px": [240,160], "src": [88,56], "f": 0, "t": 95, "d": [99,770] },
+ { "px": [248,160], "src": [88,56], "f": 0, "t": 95, "d": [99,771] },
+ { "px": [256,160], "src": [88,56], "f": 0, "t": 95, "d": [99,772] },
+ { "px": [264,160], "src": [88,56], "f": 0, "t": 95, "d": [99,773] },
+ { "px": [272,160], "src": [88,56], "f": 0, "t": 95, "d": [99,774] },
+ { "px": [280,160], "src": [88,56], "f": 0, "t": 95, "d": [99,775] },
+ { "px": [288,160], "src": [88,56], "f": 0, "t": 95, "d": [99,776] },
+ { "px": [104,168], "src": [88,56], "f": 0, "t": 95, "d": [99,790] },
+ { "px": [240,168], "src": [88,56], "f": 0, "t": 95, "d": [99,807] },
+ { "px": [248,168], "src": [88,56], "f": 0, "t": 95, "d": [99,808] },
+ { "px": [256,168], "src": [88,56], "f": 0, "t": 95, "d": [99,809] },
+ { "px": [264,168], "src": [88,56], "f": 0, "t": 95, "d": [99,810] },
+ { "px": [272,168], "src": [88,56], "f": 0, "t": 95, "d": [99,811] },
+ { "px": [280,168], "src": [88,56], "f": 0, "t": 95, "d": [99,812] },
+ { "px": [288,168], "src": [88,56], "f": 0, "t": 95, "d": [99,813] },
+ { "px": [32,176], "src": [88,56], "f": 0, "t": 95, "d": [99,818] },
+ { "px": [40,176], "src": [88,56], "f": 0, "t": 95, "d": [99,819] },
+ { "px": [104,176], "src": [88,56], "f": 0, "t": 95, "d": [99,827] },
+ { "px": [112,176], "src": [88,56], "f": 0, "t": 95, "d": [99,828] },
+ { "px": [120,176], "src": [88,56], "f": 0, "t": 95, "d": [99,829] },
+ { "px": [240,176], "src": [88,56], "f": 0, "t": 95, "d": [99,844] },
+ { "px": [248,176], "src": [88,56], "f": 0, "t": 95, "d": [99,845] },
+ { "px": [256,176], "src": [88,56], "f": 0, "t": 95, "d": [99,846] },
+ { "px": [264,176], "src": [88,56], "f": 0, "t": 95, "d": [99,847] },
+ { "px": [272,176], "src": [88,56], "f": 0, "t": 95, "d": [99,848] },
+ { "px": [280,176], "src": [88,56], "f": 0, "t": 95, "d": [99,849] },
+ { "px": [288,176], "src": [88,56], "f": 0, "t": 95, "d": [99,850] },
+ { "px": [32,184], "src": [88,56], "f": 0, "t": 95, "d": [99,855] },
+ { "px": [40,184], "src": [88,56], "f": 0, "t": 95, "d": [99,856] },
+ { "px": [96,184], "src": [88,56], "f": 0, "t": 95, "d": [99,863] },
+ { "px": [104,184], "src": [88,56], "f": 0, "t": 95, "d": [99,864] },
+ { "px": [112,184], "src": [88,56], "f": 0, "t": 95, "d": [99,865] },
+ { "px": [120,184], "src": [88,56], "f": 0, "t": 95, "d": [99,866] },
+ { "px": [240,184], "src": [88,56], "f": 0, "t": 95, "d": [99,881] },
+ { "px": [248,184], "src": [88,56], "f": 0, "t": 95, "d": [99,882] },
+ { "px": [256,184], "src": [88,56], "f": 0, "t": 95, "d": [99,883] },
+ { "px": [264,184], "src": [88,56], "f": 0, "t": 95, "d": [99,884] },
+ { "px": [272,184], "src": [88,56], "f": 0, "t": 95, "d": [99,885] },
+ { "px": [280,184], "src": [88,56], "f": 0, "t": 95, "d": [99,886] },
+ { "px": [288,184], "src": [88,56], "f": 0, "t": 95, "d": [99,887] },
+ { "px": [32,192], "src": [88,56], "f": 0, "t": 95, "d": [99,892] },
+ { "px": [40,192], "src": [88,56], "f": 0, "t": 95, "d": [99,893] },
+ { "px": [72,192], "src": [88,56], "f": 0, "t": 95, "d": [99,897] },
+ { "px": [80,192], "src": [88,56], "f": 0, "t": 95, "d": [99,898] },
+ { "px": [88,192], "src": [88,56], "f": 0, "t": 95, "d": [99,899] },
+ { "px": [96,192], "src": [88,56], "f": 0, "t": 95, "d": [99,900] },
+ { "px": [104,192], "src": [88,56], "f": 0, "t": 95, "d": [99,901] },
+ { "px": [112,192], "src": [88,56], "f": 0, "t": 95, "d": [99,902] },
+ { "px": [248,192], "src": [88,56], "f": 0, "t": 95, "d": [99,919] },
+ { "px": [256,192], "src": [88,56], "f": 0, "t": 95, "d": [99,920] },
+ { "px": [264,192], "src": [88,56], "f": 0, "t": 95, "d": [99,921] },
+ { "px": [272,192], "src": [88,56], "f": 0, "t": 95, "d": [99,922] },
+ { "px": [280,192], "src": [88,56], "f": 0, "t": 95, "d": [99,923] },
+ { "px": [288,192], "src": [88,56], "f": 0, "t": 95, "d": [99,924] },
+ { "px": [32,200], "src": [88,56], "f": 0, "t": 95, "d": [99,929] },
+ { "px": [40,200], "src": [88,56], "f": 0, "t": 95, "d": [99,930] },
+ { "px": [72,200], "src": [88,56], "f": 0, "t": 95, "d": [99,934] },
+ { "px": [80,200], "src": [88,56], "f": 0, "t": 95, "d": [99,935] },
+ { "px": [248,200], "src": [88,56], "f": 0, "t": 95, "d": [99,956] },
+ { "px": [256,200], "src": [88,56], "f": 0, "t": 95, "d": [99,957] },
+ { "px": [264,200], "src": [88,56], "f": 0, "t": 95, "d": [99,958] },
+ { "px": [272,200], "src": [88,56], "f": 0, "t": 95, "d": [99,959] },
+ { "px": [280,200], "src": [88,56], "f": 0, "t": 95, "d": [99,960] },
+ { "px": [288,200], "src": [88,56], "f": 0, "t": 95, "d": [99,961] },
+ { "px": [24,208], "src": [88,56], "f": 0, "t": 95, "d": [99,965] },
+ { "px": [32,208], "src": [88,56], "f": 0, "t": 95, "d": [99,966] },
+ { "px": [40,208], "src": [88,56], "f": 0, "t": 95, "d": [99,967] },
+ { "px": [72,208], "src": [88,56], "f": 0, "t": 95, "d": [99,971] },
+ { "px": [80,208], "src": [88,56], "f": 0, "t": 95, "d": [99,972] },
+ { "px": [168,208], "src": [88,56], "f": 0, "t": 95, "d": [99,983] },
+ { "px": [256,208], "src": [88,56], "f": 0, "t": 95, "d": [99,994] },
+ { "px": [264,208], "src": [88,56], "f": 0, "t": 95, "d": [99,995] },
+ { "px": [272,208], "src": [88,56], "f": 0, "t": 95, "d": [99,996] },
+ { "px": [280,208], "src": [88,56], "f": 0, "t": 95, "d": [99,997] },
+ { "px": [288,208], "src": [88,56], "f": 0, "t": 95, "d": [99,998] },
+ { "px": [16,216], "src": [88,56], "f": 0, "t": 95, "d": [99,1001] },
+ { "px": [24,216], "src": [88,56], "f": 0, "t": 95, "d": [99,1002] },
+ { "px": [32,216], "src": [88,56], "f": 0, "t": 95, "d": [99,1003] },
+ { "px": [40,216], "src": [88,56], "f": 0, "t": 95, "d": [99,1004] },
+ { "px": [160,216], "src": [88,56], "f": 0, "t": 95, "d": [99,1019] },
+ { "px": [264,216], "src": [88,56], "f": 0, "t": 95, "d": [99,1032] },
+ { "px": [272,216], "src": [88,56], "f": 0, "t": 95, "d": [99,1033] },
+ { "px": [280,216], "src": [88,56], "f": 0, "t": 95, "d": [99,1034] },
+ { "px": [288,216], "src": [88,56], "f": 0, "t": 95, "d": [99,1035] },
+ { "px": [16,224], "src": [88,56], "f": 0, "t": 95, "d": [99,1038] },
+ { "px": [24,224], "src": [88,56], "f": 0, "t": 95, "d": [99,1039] },
+ { "px": [32,224], "src": [88,56], "f": 0, "t": 95, "d": [99,1040] },
+ { "px": [40,224], "src": [88,56], "f": 0, "t": 95, "d": [99,1041] },
+ { "px": [264,224], "src": [88,56], "f": 0, "t": 95, "d": [99,1069] },
+ { "px": [272,224], "src": [88,56], "f": 0, "t": 95, "d": [99,1070] },
+ { "px": [280,224], "src": [88,56], "f": 0, "t": 95, "d": [99,1071] },
+ { "px": [288,224], "src": [88,56], "f": 0, "t": 95, "d": [99,1072] },
+ { "px": [0,232], "src": [88,56], "f": 0, "t": 95, "d": [99,1073] },
+ { "px": [8,232], "src": [88,56], "f": 0, "t": 95, "d": [99,1074] },
+ { "px": [16,232], "src": [88,56], "f": 0, "t": 95, "d": [99,1075] },
+ { "px": [24,232], "src": [88,56], "f": 0, "t": 95, "d": [99,1076] },
+ { "px": [32,232], "src": [88,56], "f": 0, "t": 95, "d": [99,1077] },
+ { "px": [264,232], "src": [88,56], "f": 0, "t": 95, "d": [99,1106] },
+ { "px": [272,232], "src": [88,56], "f": 0, "t": 95, "d": [99,1107] },
+ { "px": [280,232], "src": [88,56], "f": 0, "t": 95, "d": [99,1108] },
+ { "px": [288,232], "src": [88,56], "f": 0, "t": 95, "d": [99,1109] },
+ { "px": [0,240], "src": [88,56], "f": 0, "t": 95, "d": [99,1110] },
+ { "px": [8,240], "src": [88,56], "f": 0, "t": 95, "d": [99,1111] },
+ { "px": [16,240], "src": [88,56], "f": 0, "t": 95, "d": [99,1112] },
+ { "px": [24,240], "src": [88,56], "f": 0, "t": 95, "d": [99,1113] },
+ { "px": [264,240], "src": [88,56], "f": 0, "t": 95, "d": [99,1143] },
+ { "px": [272,240], "src": [88,56], "f": 0, "t": 95, "d": [99,1144] },
+ { "px": [280,240], "src": [88,56], "f": 0, "t": 95, "d": [99,1145] },
+ { "px": [288,240], "src": [88,56], "f": 0, "t": 95, "d": [99,1146] },
+ { "px": [0,248], "src": [88,56], "f": 0, "t": 95, "d": [99,1147] },
+ { "px": [8,248], "src": [88,56], "f": 0, "t": 95, "d": [99,1148] },
+ { "px": [16,248], "src": [88,56], "f": 0, "t": 95, "d": [99,1149] },
+ { "px": [24,248], "src": [88,56], "f": 0, "t": 95, "d": [99,1150] },
+ { "px": [264,248], "src": [88,56], "f": 0, "t": 95, "d": [99,1180] },
+ { "px": [272,248], "src": [88,56], "f": 0, "t": 95, "d": [99,1181] },
+ { "px": [280,248], "src": [88,56], "f": 0, "t": 95, "d": [99,1182] },
+ { "px": [288,248], "src": [88,56], "f": 0, "t": 95, "d": [99,1183] },
+ { "px": [0,256], "src": [88,56], "f": 0, "t": 95, "d": [99,1184] },
+ { "px": [8,256], "src": [88,56], "f": 0, "t": 95, "d": [99,1185] },
+ { "px": [16,256], "src": [88,56], "f": 0, "t": 95, "d": [99,1186] },
+ { "px": [24,256], "src": [88,56], "f": 0, "t": 95, "d": [99,1187] },
+ { "px": [264,256], "src": [88,56], "f": 0, "t": 95, "d": [99,1217] },
+ { "px": [272,256], "src": [88,56], "f": 0, "t": 95, "d": [99,1218] },
+ { "px": [280,256], "src": [88,56], "f": 0, "t": 95, "d": [99,1219] },
+ { "px": [288,256], "src": [88,56], "f": 0, "t": 95, "d": [99,1220] },
+ { "px": [0,264], "src": [88,56], "f": 0, "t": 95, "d": [99,1221] },
+ { "px": [8,264], "src": [88,56], "f": 0, "t": 95, "d": [99,1222] },
+ { "px": [16,264], "src": [88,56], "f": 0, "t": 95, "d": [99,1223] },
+ { "px": [264,264], "src": [88,56], "f": 0, "t": 95, "d": [99,1254] },
+ { "px": [272,264], "src": [88,56], "f": 0, "t": 95, "d": [99,1255] },
+ { "px": [280,264], "src": [88,56], "f": 0, "t": 95, "d": [99,1256] },
+ { "px": [288,264], "src": [88,56], "f": 0, "t": 95, "d": [99,1257] },
+ { "px": [0,272], "src": [88,56], "f": 0, "t": 95, "d": [99,1258] },
+ { "px": [8,272], "src": [88,56], "f": 0, "t": 95, "d": [99,1259] },
+ { "px": [16,272], "src": [88,56], "f": 0, "t": 95, "d": [99,1260] },
+ { "px": [192,272], "src": [88,56], "f": 0, "t": 95, "d": [99,1282] },
+ { "px": [264,272], "src": [88,56], "f": 0, "t": 95, "d": [99,1291] },
+ { "px": [272,272], "src": [88,56], "f": 0, "t": 95, "d": [99,1292] },
+ { "px": [280,272], "src": [88,56], "f": 0, "t": 95, "d": [99,1293] },
+ { "px": [288,272], "src": [88,56], "f": 0, "t": 95, "d": [99,1294] },
+ { "px": [0,280], "src": [88,56], "f": 0, "t": 95, "d": [99,1295] },
+ { "px": [8,280], "src": [88,56], "f": 0, "t": 95, "d": [99,1296] },
+ { "px": [16,280], "src": [88,56], "f": 0, "t": 95, "d": [99,1297] },
+ { "px": [184,280], "src": [88,56], "f": 0, "t": 95, "d": [99,1318] },
+ { "px": [192,280], "src": [88,56], "f": 0, "t": 95, "d": [99,1319] },
+ { "px": [264,280], "src": [88,56], "f": 0, "t": 95, "d": [99,1328] },
+ { "px": [272,280], "src": [88,56], "f": 0, "t": 95, "d": [99,1329] },
+ { "px": [280,280], "src": [88,56], "f": 0, "t": 95, "d": [99,1330] },
+ { "px": [288,280], "src": [88,56], "f": 0, "t": 95, "d": [99,1331] },
+ { "px": [0,288], "src": [88,56], "f": 0, "t": 95, "d": [99,1332] },
+ { "px": [8,288], "src": [88,56], "f": 0, "t": 95, "d": [99,1333] },
+ { "px": [16,288], "src": [88,56], "f": 0, "t": 95, "d": [99,1334] },
+ { "px": [184,288], "src": [88,56], "f": 0, "t": 95, "d": [99,1355] },
+ { "px": [192,288], "src": [88,56], "f": 0, "t": 95, "d": [99,1356] },
+ { "px": [200,288], "src": [88,56], "f": 0, "t": 95, "d": [99,1357] },
+ { "px": [264,288], "src": [88,56], "f": 0, "t": 95, "d": [99,1365] },
+ { "px": [272,288], "src": [88,56], "f": 0, "t": 95, "d": [99,1366] },
+ { "px": [280,288], "src": [88,56], "f": 0, "t": 95, "d": [99,1367] },
+ { "px": [288,288], "src": [88,56], "f": 0, "t": 95, "d": [99,1368] },
+ { "px": [0,296], "src": [88,56], "f": 0, "t": 95, "d": [99,1369] },
+ { "px": [8,296], "src": [88,56], "f": 0, "t": 95, "d": [99,1370] },
+ { "px": [16,296], "src": [88,56], "f": 0, "t": 95, "d": [99,1371] },
+ { "px": [24,296], "src": [88,56], "f": 0, "t": 95, "d": [99,1372] },
+ { "px": [32,296], "src": [88,56], "f": 0, "t": 95, "d": [99,1373] },
+ { "px": [40,296], "src": [88,56], "f": 0, "t": 95, "d": [99,1374] },
+ { "px": [48,296], "src": [88,56], "f": 0, "t": 95, "d": [99,1375] },
+ { "px": [56,296], "src": [88,56], "f": 0, "t": 95, "d": [99,1376] },
+ { "px": [64,296], "src": [88,56], "f": 0, "t": 95, "d": [99,1377] },
+ { "px": [72,296], "src": [88,56], "f": 0, "t": 95, "d": [99,1378] },
+ { "px": [80,296], "src": [88,56], "f": 0, "t": 95, "d": [99,1379] },
+ { "px": [88,296], "src": [88,56], "f": 0, "t": 95, "d": [99,1380] },
+ { "px": [96,296], "src": [88,56], "f": 0, "t": 95, "d": [99,1381] },
+ { "px": [104,296], "src": [88,56], "f": 0, "t": 95, "d": [99,1382] },
+ { "px": [112,296], "src": [88,56], "f": 0, "t": 95, "d": [99,1383] },
+ { "px": [120,296], "src": [88,56], "f": 0, "t": 95, "d": [99,1384] },
+ { "px": [128,296], "src": [88,56], "f": 0, "t": 95, "d": [99,1385] },
+ { "px": [136,296], "src": [88,56], "f": 0, "t": 95, "d": [99,1386] },
+ { "px": [144,296], "src": [88,56], "f": 0, "t": 95, "d": [99,1387] },
+ { "px": [152,296], "src": [88,56], "f": 0, "t": 95, "d": [99,1388] },
+ { "px": [160,296], "src": [88,56], "f": 0, "t": 95, "d": [99,1389] },
+ { "px": [168,296], "src": [88,56], "f": 0, "t": 95, "d": [99,1390] },
+ { "px": [176,296], "src": [88,56], "f": 0, "t": 95, "d": [99,1391] },
+ { "px": [184,296], "src": [88,56], "f": 0, "t": 95, "d": [99,1392] },
+ { "px": [192,296], "src": [88,56], "f": 0, "t": 95, "d": [99,1393] },
+ { "px": [200,296], "src": [88,56], "f": 0, "t": 95, "d": [99,1394] },
+ { "px": [208,296], "src": [88,56], "f": 0, "t": 95, "d": [99,1395] },
+ { "px": [216,296], "src": [88,56], "f": 0, "t": 95, "d": [99,1396] },
+ { "px": [224,296], "src": [88,56], "f": 0, "t": 95, "d": [99,1397] },
+ { "px": [232,296], "src": [88,56], "f": 0, "t": 95, "d": [99,1398] },
+ { "px": [240,296], "src": [88,56], "f": 0, "t": 95, "d": [99,1399] },
+ { "px": [248,296], "src": [88,56], "f": 0, "t": 95, "d": [99,1400] },
+ { "px": [256,296], "src": [88,56], "f": 0, "t": 95, "d": [99,1401] },
+ { "px": [264,296], "src": [88,56], "f": 0, "t": 95, "d": [99,1402] },
+ { "px": [272,296], "src": [88,56], "f": 0, "t": 95, "d": [99,1403] },
+ { "px": [280,296], "src": [88,56], "f": 0, "t": 95, "d": [99,1404] },
+ { "px": [288,296], "src": [88,56], "f": 0, "t": 95, "d": [99,1405] },
+ { "px": [152,56], "src": [88,72], "f": 1, "t": 119, "d": [100,278] },
+ { "px": [216,64], "src": [88,72], "f": 1, "t": 119, "d": [100,323] },
+ { "px": [248,64], "src": [88,72], "f": 2, "t": 119, "d": [100,327] },
+ { "px": [224,72], "src": [88,72], "f": 1, "t": 119, "d": [100,361] },
+ { "px": [32,88], "src": [88,72], "f": 2, "t": 119, "d": [100,411] },
+ { "px": [64,88], "src": [88,72], "f": 3, "t": 119, "d": [100,415] },
+ { "px": [72,88], "src": [88,72], "f": 2, "t": 119, "d": [100,416] },
+ { "px": [248,88], "src": [88,72], "f": 1, "t": 119, "d": [100,438] },
+ { "px": [80,96], "src": [88,72], "f": 0, "t": 119, "d": [100,454] },
+ { "px": [64,104], "src": [88,72], "f": 1, "t": 119, "d": [100,489] },
+ { "px": [136,104], "src": [88,72], "f": 1, "t": 119, "d": [100,498] },
+ { "px": [152,104], "src": [88,72], "f": 0, "t": 119, "d": [100,500] },
+ { "px": [248,104], "src": [88,72], "f": 3, "t": 119, "d": [100,512] },
+ { "px": [72,112], "src": [88,72], "f": 1, "t": 119, "d": [100,527] },
+ { "px": [144,112], "src": [88,72], "f": 0, "t": 119, "d": [100,536] },
+ { "px": [208,112], "src": [88,72], "f": 1, "t": 119, "d": [100,544] },
+ { "px": [216,112], "src": [88,72], "f": 0, "t": 119, "d": [100,545] },
+ { "px": [240,112], "src": [88,72], "f": 3, "t": 119, "d": [100,548] },
+ { "px": [248,112], "src": [88,72], "f": 0, "t": 119, "d": [100,549] },
+ { "px": [288,144], "src": [88,72], "f": 3, "t": 119, "d": [100,702] },
+ { "px": [272,152], "src": [88,72], "f": 3, "t": 119, "d": [100,737] },
+ { "px": [112,168], "src": [88,72], "f": 2, "t": 119, "d": [100,791] },
+ { "px": [232,168], "src": [88,72], "f": 3, "t": 119, "d": [100,806] },
+ { "px": [96,176], "src": [88,72], "f": 3, "t": 119, "d": [100,826] },
+ { "px": [232,176], "src": [88,72], "f": 1, "t": 119, "d": [100,843] },
+ { "px": [72,184], "src": [88,72], "f": 2, "t": 119, "d": [100,860] },
+ { "px": [88,184], "src": [88,72], "f": 3, "t": 119, "d": [100,862] },
+ { "px": [120,192], "src": [88,72], "f": 0, "t": 119, "d": [100,903] },
+ { "px": [240,192], "src": [88,72], "f": 1, "t": 119, "d": [100,918] },
+ { "px": [24,200], "src": [88,72], "f": 3, "t": 119, "d": [100,928] },
+ { "px": [88,200], "src": [88,72], "f": 0, "t": 119, "d": [100,936] },
+ { "px": [168,200], "src": [88,72], "f": 3, "t": 119, "d": [100,946] },
+ { "px": [16,208], "src": [88,72], "f": 3, "t": 119, "d": [100,964] },
+ { "px": [160,208], "src": [88,72], "f": 3, "t": 119, "d": [100,982] },
+ { "px": [248,208], "src": [88,72], "f": 1, "t": 119, "d": [100,993] },
+ { "px": [72,216], "src": [88,72], "f": 0, "t": 119, "d": [100,1008] },
+ { "px": [168,216], "src": [88,72], "f": 0, "t": 119, "d": [100,1020] },
+ { "px": [256,216], "src": [88,72], "f": 1, "t": 119, "d": [100,1031] },
+ { "px": [8,224], "src": [88,72], "f": 3, "t": 119, "d": [100,1037] },
+ { "px": [40,232], "src": [88,72], "f": 0, "t": 119, "d": [100,1078] },
+ { "px": [32,240], "src": [88,72], "f": 0, "t": 119, "d": [100,1114] },
+ { "px": [216,240], "src": [88,72], "f": 2, "t": 119, "d": [100,1137] },
+ { "px": [256,240], "src": [88,72], "f": 3, "t": 119, "d": [100,1142] },
+ { "px": [256,248], "src": [88,72], "f": 1, "t": 119, "d": [100,1179] },
+ { "px": [200,256], "src": [88,72], "f": 0, "t": 119, "d": [100,1209] },
+ { "px": [24,264], "src": [88,72], "f": 0, "t": 119, "d": [100,1224] },
+ { "px": [192,264], "src": [88,72], "f": 3, "t": 119, "d": [100,1245] },
+ { "px": [184,272], "src": [88,72], "f": 3, "t": 119, "d": [100,1281] },
+ { "px": [200,280], "src": [88,72], "f": 2, "t": 119, "d": [100,1320] },
+ { "px": [24,288], "src": [88,72], "f": 2, "t": 119, "d": [100,1335] },
+ { "px": [176,288], "src": [88,72], "f": 3, "t": 119, "d": [100,1354] },
+ { "px": [208,288], "src": [88,72], "f": 2, "t": 119, "d": [100,1358] },
+ { "px": [256,288], "src": [88,72], "f": 3, "t": 119, "d": [100,1364] },
+ { "px": [128,64], "src": [80,72], "f": 0, "t": 118, "d": [102,312] },
+ { "px": [136,64], "src": [80,72], "f": 0, "t": 118, "d": [102,313] },
+ { "px": [144,64], "src": [80,72], "f": 0, "t": 118, "d": [102,314] },
+ { "px": [152,72], "src": [80,72], "f": 0, "t": 118, "d": [102,352] },
+ { "px": [160,72], "src": [80,72], "f": 0, "t": 118, "d": [102,353] },
+ { "px": [208,72], "src": [80,72], "f": 0, "t": 118, "d": [102,359] },
+ { "px": [216,80], "src": [80,72], "f": 0, "t": 118, "d": [102,397] },
+ { "px": [232,96], "src": [80,72], "f": 0, "t": 118, "d": [102,473] },
+ { "px": [240,96], "src": [80,72], "f": 0, "t": 118, "d": [102,474] },
+ { "px": [88,104], "src": [80,72], "f": 0, "t": 118, "d": [102,492] },
+ { "px": [56,112], "src": [80,72], "f": 0, "t": 118, "d": [102,525] },
+ { "px": [128,112], "src": [80,72], "f": 0, "t": 118, "d": [102,534] },
+ { "px": [160,112], "src": [80,72], "f": 0, "t": 118, "d": [102,538] },
+ { "px": [168,112], "src": [80,72], "f": 0, "t": 118, "d": [102,539] },
+ { "px": [176,112], "src": [80,72], "f": 0, "t": 118, "d": [102,540] },
+ { "px": [184,112], "src": [80,72], "f": 0, "t": 118, "d": [102,541] },
+ { "px": [32,120], "src": [80,72], "f": 0, "t": 118, "d": [102,559] },
+ { "px": [40,120], "src": [80,72], "f": 0, "t": 118, "d": [102,560] },
+ { "px": [64,120], "src": [80,72], "f": 0, "t": 118, "d": [102,563] },
+ { "px": [152,120], "src": [80,72], "f": 0, "t": 118, "d": [102,574] },
+ { "px": [200,120], "src": [80,72], "f": 0, "t": 118, "d": [102,580] },
+ { "px": [224,120], "src": [80,72], "f": 0, "t": 118, "d": [102,583] },
+ { "px": [256,120], "src": [80,72], "f": 0, "t": 118, "d": [102,587] },
+ { "px": [72,128], "src": [80,72], "f": 0, "t": 118, "d": [102,601] },
+ { "px": [80,128], "src": [80,72], "f": 0, "t": 118, "d": [102,602] },
+ { "px": [136,128], "src": [80,72], "f": 0, "t": 118, "d": [102,609] },
+ { "px": [232,128], "src": [80,72], "f": 0, "t": 118, "d": [102,621] },
+ { "px": [240,128], "src": [80,72], "f": 0, "t": 118, "d": [102,622] },
+ { "px": [248,128], "src": [80,72], "f": 0, "t": 118, "d": [102,623] },
+ { "px": [24,136], "src": [80,72], "f": 0, "t": 118, "d": [102,632] },
+ { "px": [216,136], "src": [80,72], "f": 0, "t": 118, "d": [102,656] },
+ { "px": [144,144], "src": [80,72], "f": 0, "t": 118, "d": [102,684] },
+ { "px": [192,152], "src": [80,72], "f": 0, "t": 118, "d": [102,727] },
+ { "px": [200,152], "src": [80,72], "f": 0, "t": 118, "d": [102,728] },
+ { "px": [208,152], "src": [80,72], "f": 0, "t": 118, "d": [102,729] },
+ { "px": [16,176], "src": [80,72], "f": 0, "t": 118, "d": [102,816] },
+ { "px": [208,184], "src": [80,72], "f": 0, "t": 118, "d": [102,877] },
+ { "px": [216,184], "src": [80,72], "f": 0, "t": 118, "d": [102,878] },
+ { "px": [224,184], "src": [80,72], "f": 0, "t": 118, "d": [102,879] },
+ { "px": [128,200], "src": [80,72], "f": 0, "t": 118, "d": [102,941] },
+ { "px": [232,200], "src": [80,72], "f": 0, "t": 118, "d": [102,954] },
+ { "px": [112,208], "src": [80,72], "f": 0, "t": 118, "d": [102,976] },
+ { "px": [120,208], "src": [80,72], "f": 0, "t": 118, "d": [102,977] },
+ { "px": [104,216], "src": [80,72], "f": 0, "t": 118, "d": [102,1012] },
+ { "px": [240,216], "src": [80,72], "f": 0, "t": 118, "d": [102,1029] },
+ { "px": [80,224], "src": [80,72], "f": 0, "t": 118, "d": [102,1046] },
+ { "px": [88,224], "src": [80,72], "f": 0, "t": 118, "d": [102,1047] },
+ { "px": [176,224], "src": [80,72], "f": 0, "t": 118, "d": [102,1058] },
+ { "px": [248,224], "src": [80,72], "f": 0, "t": 118, "d": [102,1067] },
+ { "px": [72,232], "src": [80,72], "f": 0, "t": 118, "d": [102,1082] },
+ { "px": [152,232], "src": [80,72], "f": 0, "t": 118, "d": [102,1092] },
+ { "px": [160,232], "src": [80,72], "f": 0, "t": 118, "d": [102,1093] },
+ { "px": [168,232], "src": [80,72], "f": 0, "t": 118, "d": [102,1094] },
+ { "px": [48,240], "src": [80,72], "f": 0, "t": 118, "d": [102,1116] },
+ { "px": [64,240], "src": [80,72], "f": 0, "t": 118, "d": [102,1118] },
+ { "px": [40,248], "src": [80,72], "f": 0, "t": 118, "d": [102,1152] },
+ { "px": [216,256], "src": [80,72], "f": 0, "t": 118, "d": [102,1211] },
+ { "px": [224,256], "src": [80,72], "f": 0, "t": 118, "d": [102,1212] },
+ { "px": [240,256], "src": [80,72], "f": 0, "t": 118, "d": [102,1214] },
+ { "px": [248,256], "src": [80,72], "f": 0, "t": 118, "d": [102,1215] },
+ { "px": [208,264], "src": [80,72], "f": 0, "t": 118, "d": [102,1247] },
+ { "px": [32,272], "src": [80,72], "f": 0, "t": 118, "d": [102,1262] },
+ { "px": [56,40], "src": [80,64], "f": 1, "t": 106, "d": [103,192] },
+ { "px": [168,40], "src": [80,64], "f": 0, "t": 106, "d": [103,206] },
+ { "px": [64,48], "src": [80,64], "f": 1, "t": 106, "d": [103,230] },
+ { "px": [80,48], "src": [80,64], "f": 0, "t": 106, "d": [103,232] },
+ { "px": [120,48], "src": [80,64], "f": 1, "t": 106, "d": [103,237] },
+ { "px": [176,48], "src": [80,64], "f": 0, "t": 106, "d": [103,244] },
+ { "px": [16,56], "src": [80,64], "f": 1, "t": 106, "d": [103,261] },
+ { "px": [40,56], "src": [80,64], "f": 0, "t": 106, "d": [103,264] },
+ { "px": [64,56], "src": [80,64], "f": 1, "t": 106, "d": [103,267] },
+ { "px": [80,56], "src": [80,64], "f": 0, "t": 106, "d": [103,269] },
+ { "px": [120,56], "src": [80,64], "f": 1, "t": 106, "d": [103,274] },
+ { "px": [168,56], "src": [80,64], "f": 0, "t": 106, "d": [103,280] },
+ { "px": [184,56], "src": [80,64], "f": 1, "t": 106, "d": [103,282] },
+ { "px": [256,56], "src": [80,64], "f": 0, "t": 106, "d": [103,291] },
+ { "px": [16,64], "src": [80,64], "f": 1, "t": 106, "d": [103,298] },
+ { "px": [80,64], "src": [80,64], "f": 0, "t": 106, "d": [103,306] },
+ { "px": [144,64], "src": [80,64], "f": 1, "t": 106, "d": [103,314] },
+ { "px": [168,64], "src": [80,64], "f": 0, "t": 106, "d": [103,317] },
+ { "px": [200,64], "src": [80,64], "f": 1, "t": 106, "d": [103,321] },
+ { "px": [264,64], "src": [80,64], "f": 0, "t": 106, "d": [103,329] },
+ { "px": [16,72], "src": [80,64], "f": 1, "t": 106, "d": [103,335] },
+ { "px": [80,72], "src": [80,64], "f": 0, "t": 106, "d": [103,343] },
+ { "px": [208,72], "src": [80,64], "f": 1, "t": 106, "d": [103,359] },
+ { "px": [264,72], "src": [80,64], "f": 0, "t": 106, "d": [103,366] },
+ { "px": [16,80], "src": [80,64], "f": 1, "t": 106, "d": [103,372] },
+ { "px": [80,80], "src": [80,64], "f": 0, "t": 106, "d": [103,380] },
+ { "px": [216,80], "src": [80,64], "f": 1, "t": 106, "d": [103,397] },
+ { "px": [264,80], "src": [80,64], "f": 0, "t": 106, "d": [103,403] },
+ { "px": [16,88], "src": [80,64], "f": 1, "t": 106, "d": [103,409] },
+ { "px": [96,88], "src": [80,64], "f": 0, "t": 106, "d": [103,419] },
+ { "px": [120,88], "src": [80,64], "f": 1, "t": 106, "d": [103,422] },
+ { "px": [264,88], "src": [80,64], "f": 0, "t": 106, "d": [103,440] },
+ { "px": [16,96], "src": [80,64], "f": 1, "t": 106, "d": [103,446] },
+ { "px": [232,96], "src": [80,64], "f": 0, "t": 106, "d": [103,473] },
+ { "px": [240,96], "src": [80,64], "f": 1, "t": 106, "d": [103,474] },
+ { "px": [272,96], "src": [80,64], "f": 0, "t": 106, "d": [103,478] },
+ { "px": [16,104], "src": [80,64], "f": 1, "t": 106, "d": [103,483] },
+ { "px": [88,104], "src": [80,64], "f": 0, "t": 106, "d": [103,492] },
+ { "px": [120,104], "src": [80,64], "f": 1, "t": 106, "d": [103,496] },
+ { "px": [232,104], "src": [80,64], "f": 0, "t": 106, "d": [103,510] },
+ { "px": [264,104], "src": [80,64], "f": 0, "t": 106, "d": [103,514] },
+ { "px": [16,112], "src": [80,64], "f": 1, "t": 106, "d": [103,520] },
+ { "px": [56,112], "src": [80,64], "f": 1, "t": 106, "d": [103,525] },
+ { "px": [88,112], "src": [80,64], "f": 0, "t": 106, "d": [103,529] },
+ { "px": [128,112], "src": [80,64], "f": 1, "t": 106, "d": [103,534] },
+ { "px": [160,112], "src": [80,64], "f": 0, "t": 106, "d": [103,538] },
+ { "px": [264,112], "src": [80,64], "f": 0, "t": 106, "d": [103,551] },
+ { "px": [8,120], "src": [80,64], "f": 1, "t": 106, "d": [103,556] },
+ { "px": [32,120], "src": [80,64], "f": 0, "t": 106, "d": [103,559] },
+ { "px": [64,120], "src": [80,64], "f": 1, "t": 106, "d": [103,563] },
+ { "px": [88,120], "src": [80,64], "f": 0, "t": 106, "d": [103,566] },
+ { "px": [128,120], "src": [80,64], "f": 1, "t": 106, "d": [103,571] },
+ { "px": [152,120], "src": [80,64], "f": 0, "t": 106, "d": [103,574] },
+ { "px": [200,120], "src": [80,64], "f": 1, "t": 106, "d": [103,580] },
+ { "px": [224,120], "src": [80,64], "f": 0, "t": 106, "d": [103,583] },
+ { "px": [256,120], "src": [80,64], "f": 0, "t": 106, "d": [103,587] },
+ { "px": [16,128], "src": [80,64], "f": 1, "t": 106, "d": [103,594] },
+ { "px": [32,128], "src": [80,64], "f": 0, "t": 106, "d": [103,596] },
+ { "px": [136,128], "src": [80,64], "f": 1, "t": 106, "d": [103,609] },
+ { "px": [152,128], "src": [80,64], "f": 0, "t": 106, "d": [103,611] },
+ { "px": [200,128], "src": [80,64], "f": 1, "t": 106, "d": [103,617] },
+ { "px": [224,128], "src": [80,64], "f": 0, "t": 106, "d": [103,620] },
+ { "px": [136,136], "src": [80,64], "f": 1, "t": 106, "d": [103,646] },
+ { "px": [216,136], "src": [80,64], "f": 0, "t": 106, "d": [103,656] },
+ { "px": [280,136], "src": [80,64], "f": 1, "t": 106, "d": [103,664] },
+ { "px": [184,144], "src": [80,64], "f": 1, "t": 106, "d": [103,689] },
+ { "px": [216,144], "src": [80,64], "f": 0, "t": 106, "d": [103,693] },
+ { "px": [264,144], "src": [80,64], "f": 1, "t": 106, "d": [103,699] },
+ { "px": [8,152], "src": [80,64], "f": 1, "t": 106, "d": [103,704] },
+ { "px": [32,152], "src": [80,64], "f": 0, "t": 106, "d": [103,707] },
+ { "px": [224,152], "src": [80,64], "f": 1, "t": 106, "d": [103,731] },
+ { "px": [8,160], "src": [80,64], "f": 1, "t": 106, "d": [103,741] },
+ { "px": [120,160], "src": [80,64], "f": 0, "t": 106, "d": [103,755] },
+ { "px": [224,160], "src": [80,64], "f": 1, "t": 106, "d": [103,768] },
+ { "px": [8,168], "src": [80,64], "f": 1, "t": 106, "d": [103,778] },
+ { "px": [16,176], "src": [80,64], "f": 1, "t": 106, "d": [103,816] },
+ { "px": [136,176], "src": [80,64], "f": 0, "t": 106, "d": [103,831] },
+ { "px": [200,176], "src": [80,64], "f": 1, "t": 106, "d": [103,839] },
+ { "px": [16,184], "src": [80,64], "f": 1, "t": 106, "d": [103,853] },
+ { "px": [136,184], "src": [80,64], "f": 0, "t": 106, "d": [103,868] },
+ { "px": [224,184], "src": [80,64], "f": 1, "t": 106, "d": [103,879] },
+ { "px": [16,192], "src": [80,64], "f": 1, "t": 106, "d": [103,890] },
+ { "px": [136,192], "src": [80,64], "f": 0, "t": 106, "d": [103,905] },
+ { "px": [160,192], "src": [80,64], "f": 1, "t": 106, "d": [103,908] },
+ { "px": [184,192], "src": [80,64], "f": 0, "t": 106, "d": [103,911] },
+ { "px": [224,192], "src": [80,64], "f": 1, "t": 106, "d": [103,916] },
+ { "px": [8,200], "src": [80,64], "f": 1, "t": 106, "d": [103,926] },
+ { "px": [128,200], "src": [80,64], "f": 0, "t": 106, "d": [103,941] },
+ { "px": [152,200], "src": [80,64], "f": 1, "t": 106, "d": [103,944] },
+ { "px": [184,200], "src": [80,64], "f": 0, "t": 106, "d": [103,948] },
+ { "px": [232,200], "src": [80,64], "f": 1, "t": 106, "d": [103,954] },
+ { "px": [0,208], "src": [80,64], "f": 1, "t": 106, "d": [103,962] },
+ { "px": [112,208], "src": [80,64], "f": 0, "t": 106, "d": [103,976] },
+ { "px": [144,208], "src": [80,64], "f": 1, "t": 106, "d": [103,980] },
+ { "px": [200,208], "src": [80,64], "f": 0, "t": 106, "d": [103,987] },
+ { "px": [232,208], "src": [80,64], "f": 1, "t": 106, "d": [103,991] },
+ { "px": [0,216], "src": [80,64], "f": 1, "t": 106, "d": [103,999] },
+ { "px": [136,216], "src": [80,64], "f": 1, "t": 106, "d": [103,1016] },
+ { "px": [184,216], "src": [80,64], "f": 0, "t": 106, "d": [103,1022] },
+ { "px": [200,216], "src": [80,64], "f": 1, "t": 106, "d": [103,1024] },
+ { "px": [224,216], "src": [80,64], "f": 0, "t": 106, "d": [103,1027] },
+ { "px": [240,216], "src": [80,64], "f": 1, "t": 106, "d": [103,1029] },
+ { "px": [80,224], "src": [80,64], "f": 0, "t": 106, "d": [103,1046] },
+ { "px": [144,224], "src": [80,64], "f": 1, "t": 106, "d": [103,1054] },
+ { "px": [176,224], "src": [80,64], "f": 0, "t": 106, "d": [103,1058] },
+ { "px": [200,224], "src": [80,64], "f": 1, "t": 106, "d": [103,1061] },
+ { "px": [224,224], "src": [80,64], "f": 0, "t": 106, "d": [103,1064] },
+ { "px": [248,224], "src": [80,64], "f": 1, "t": 106, "d": [103,1067] },
+ { "px": [72,232], "src": [80,64], "f": 0, "t": 106, "d": [103,1082] },
+ { "px": [200,232], "src": [80,64], "f": 1, "t": 106, "d": [103,1098] },
+ { "px": [48,240], "src": [80,64], "f": 0, "t": 106, "d": [103,1116] },
+ { "px": [200,240], "src": [80,64], "f": 1, "t": 106, "d": [103,1135] },
+ { "px": [40,248], "src": [80,64], "f": 0, "t": 106, "d": [103,1152] },
+ { "px": [168,248], "src": [80,64], "f": 1, "t": 106, "d": [103,1168] },
+ { "px": [40,256], "src": [80,64], "f": 0, "t": 106, "d": [103,1189] },
+ { "px": [184,256], "src": [80,64], "f": 1, "t": 106, "d": [103,1207] },
+ { "px": [216,256], "src": [80,64], "f": 0, "t": 106, "d": [103,1211] },
+ { "px": [248,256], "src": [80,64], "f": 1, "t": 106, "d": [103,1215] },
+ { "px": [40,264], "src": [80,64], "f": 0, "t": 106, "d": [103,1226] },
+ { "px": [176,264], "src": [80,64], "f": 1, "t": 106, "d": [103,1243] },
+ { "px": [208,264], "src": [80,64], "f": 0, "t": 106, "d": [103,1247] },
+ { "px": [248,264], "src": [80,64], "f": 1, "t": 106, "d": [103,1252] },
+ { "px": [32,272], "src": [80,64], "f": 0, "t": 106, "d": [103,1262] },
+ { "px": [168,272], "src": [80,64], "f": 1, "t": 106, "d": [103,1279] }
+ ],
+ "seed": 2914559,
+ "overrideTilesetUid": null,
+ "gridTiles": [],
+ "entityInstances": []
+ },
+ {
+ "__identifier": "Sky",
+ "__type": "AutoLayer",
+ "__cWid": 37,
+ "__cHei": 38,
+ "__gridSize": 8,
+ "__opacity": 1,
+ "__pxTotalOffsetX": 0,
+ "__pxTotalOffsetY": 0,
+ "__tilesetDefUid": 9,
+ "__tilesetRelPath": "atlas/Cavernas_by_Adam_Saltsman.png",
+ "iid": "a2b5d8d0-66b0-11ec-9cd7-55963b489fe2",
+ "levelId": 70,
+ "layerDefUid": 91,
+ "pxOffsetX": 0,
+ "pxOffsetY": 0,
+ "visible": true,
+ "optionalRules": [],
+ "intGridCsv": [],
+ "autoLayerTiles": [
+ { "px": [0,0], "src": [16,144], "f": 0, "t": 218, "d": [93,0] },
+ { "px": [72,0], "src": [8,144], "f": 0, "t": 217, "d": [93,9] },
+ { "px": [80,0], "src": [0,144], "f": 0, "t": 216, "d": [93,10] },
+ { "px": [104,0], "src": [16,144], "f": 0, "t": 218, "d": [93,13] },
+ { "px": [280,0], "src": [16,144], "f": 0, "t": 218, "d": [93,35] },
+ { "px": [56,8], "src": [0,144], "f": 0, "t": 216, "d": [93,44] },
+ { "px": [64,8], "src": [16,144], "f": 0, "t": 218, "d": [93,45] },
+ { "px": [120,8], "src": [8,144], "f": 0, "t": 217, "d": [93,52] },
+ { "px": [160,8], "src": [24,144], "f": 0, "t": 219, "d": [93,57] },
+ { "px": [192,8], "src": [24,144], "f": 0, "t": 219, "d": [93,61] },
+ { "px": [0,16], "src": [0,144], "f": 0, "t": 216, "d": [93,74] },
+ { "px": [32,16], "src": [8,144], "f": 0, "t": 217, "d": [93,78] },
+ { "px": [96,16], "src": [0,144], "f": 0, "t": 216, "d": [93,86] },
+ { "px": [112,16], "src": [0,144], "f": 0, "t": 216, "d": [93,88] },
+ { "px": [176,16], "src": [24,144], "f": 0, "t": 219, "d": [93,96] },
+ { "px": [184,16], "src": [0,144], "f": 0, "t": 216, "d": [93,97] },
+ { "px": [216,16], "src": [0,144], "f": 0, "t": 216, "d": [93,101] },
+ { "px": [232,16], "src": [16,144], "f": 0, "t": 218, "d": [93,103] },
+ { "px": [264,48], "src": [0,144], "f": 0, "t": 216, "d": [93,255] },
+ { "px": [280,48], "src": [8,144], "f": 0, "t": 217, "d": [93,257] },
+ { "px": [88,56], "src": [8,144], "f": 0, "t": 217, "d": [93,270] },
+ { "px": [80,64], "src": [8,144], "f": 0, "t": 217, "d": [93,306] },
+ { "px": [88,64], "src": [8,144], "f": 0, "t": 217, "d": [93,307] },
+ { "px": [288,64], "src": [16,144], "f": 0, "t": 218, "d": [93,332] },
+ { "px": [120,72], "src": [0,144], "f": 0, "t": 216, "d": [93,348] },
+ { "px": [136,72], "src": [8,144], "f": 0, "t": 217, "d": [93,350] },
+ { "px": [16,104], "src": [0,144], "f": 0, "t": 216, "d": [93,483] },
+ { "px": [120,112], "src": [16,144], "f": 0, "t": 218, "d": [93,533] },
+ { "px": [280,120], "src": [8,144], "f": 0, "t": 217, "d": [93,590] },
+ { "px": [224,128], "src": [8,144], "f": 0, "t": 217, "d": [93,620] },
+ { "px": [56,136], "src": [16,144], "f": 0, "t": 218, "d": [93,636] },
+ { "px": [64,136], "src": [0,144], "f": 0, "t": 216, "d": [93,637] },
+ { "px": [232,136], "src": [16,144], "f": 0, "t": 218, "d": [93,658] },
+ { "px": [264,136], "src": [0,144], "f": 0, "t": 216, "d": [93,662] },
+ { "px": [176,152], "src": [0,144], "f": 0, "t": 216, "d": [93,725] },
+ { "px": [8,168], "src": [0,144], "f": 0, "t": 216, "d": [93,778] },
+ { "px": [8,176], "src": [0,144], "f": 0, "t": 216, "d": [93,815] },
+ { "px": [184,176], "src": [0,144], "f": 0, "t": 216, "d": [93,837] },
+ { "px": [0,184], "src": [0,144], "f": 0, "t": 216, "d": [93,851] },
+ { "px": [184,184], "src": [0,144], "f": 0, "t": 216, "d": [93,874] },
+ { "px": [192,184], "src": [16,144], "f": 0, "t": 218, "d": [93,875] },
+ { "px": [200,200], "src": [8,144], "f": 0, "t": 217, "d": [93,950] },
+ { "px": [112,216], "src": [8,144], "f": 0, "t": 217, "d": [93,1013] },
+ { "px": [120,224], "src": [24,144], "f": 0, "t": 219, "d": [93,1051] },
+ { "px": [136,232], "src": [0,144], "f": 0, "t": 216, "d": [93,1090] },
+ { "px": [80,256], "src": [24,144], "f": 0, "t": 219, "d": [93,1194] },
+ { "px": [240,256], "src": [16,144], "f": 0, "t": 218, "d": [93,1214] },
+ { "px": [72,264], "src": [0,144], "f": 0, "t": 216, "d": [93,1230] }
+ ],
+ "seed": 6194527,
+ "overrideTilesetUid": null,
+ "gridTiles": [],
+ "entityInstances": []
+ }
+ ],
+ "__neighbours": []
+ }
+ ],
+ "worlds": []
+}
\ No newline at end of file
diff --git a/src/commonMain/resources/ldtk/Typical_2D_platformer_example.ldtk b/src/commonMain/resources/ldtk/Typical_2D_platformer_example.ldtk
new file mode 100644
index 0000000..f349805
--- /dev/null
+++ b/src/commonMain/resources/ldtk/Typical_2D_platformer_example.ldtk
@@ -0,0 +1,5523 @@
+{
+ "__header__": {
+ "fileType": "LDtk Project JSON",
+ "app": "LDtk",
+ "doc": "https://ldtk.io/json",
+ "schema": "https://ldtk.io/files/JSON_SCHEMA.json",
+ "appAuthor": "Sebastien 'deepnight' Benard",
+ "appVersion": "1.3.2",
+ "url": "https://ldtk.io"
+ },
+ "iid": "978b9240-c640-11ed-af8e-57af2ffcc155",
+ "jsonVersion": "1.3.2",
+ "appBuildId": 467536,
+ "nextUid": 105,
+ "identifierStyle": "Capitalize",
+ "toc": [],
+ "worldLayout": "Free",
+ "worldGridWidth": 256,
+ "worldGridHeight": 256,
+ "defaultLevelWidth": 256,
+ "defaultLevelHeight": 256,
+ "defaultPivotX": 0.5,
+ "defaultPivotY": 1,
+ "defaultGridSize": 16,
+ "bgColor": "#806262",
+ "defaultLevelBgColor": "#50506A",
+ "minifyJson": false,
+ "externalLevels": false,
+ "exportTiled": false,
+ "simplifiedExport": false,
+ "imageExportMode": "None",
+ "exportLevelBg": true,
+ "pngFilePattern": null,
+ "backupOnSave": false,
+ "backupLimit": 10,
+ "backupRelPath": null,
+ "levelNamePattern": "%world_Level_%idx",
+ "tutorialDesc": "This sample demonstrates a typical 2D platformer with auto-rendered walls and various gameplay entities.\nPress [A] to toggle \"Single layer mode\", which helps understanding which layer contains what.\nPress [SHIFT+R] to toggle auto-rendered layers.",
+ "customCommands": [],
+ "flags": ["UseMultilinesType"],
+ "defs": { "layers": [
+ {
+ "__type": "Entities",
+ "identifier": "Entities",
+ "type": "Entities",
+ "uid": 48,
+ "doc": null,
+ "uiColor": null,
+ "gridSize": 16,
+ "guideGridWid": 0,
+ "guideGridHei": 0,
+ "displayOpacity": 1,
+ "inactiveOpacity": 1,
+ "hideInList": false,
+ "hideFieldsWhenInactive": false,
+ "canSelectWhenInactive": true,
+ "renderInWorldView": true,
+ "pxOffsetX": 0,
+ "pxOffsetY": 0,
+ "parallaxFactorX": 0,
+ "parallaxFactorY": 0,
+ "parallaxScaling": true,
+ "requiredTags": [],
+ "excludedTags": [],
+ "intGridValues": [],
+ "autoRuleGroups": [],
+ "autoSourceLayerDefUid": null,
+ "tilesetDefUid": null,
+ "tilePivotX": 0,
+ "tilePivotY": 0
+ },
+ {
+ "__type": "AutoLayer",
+ "identifier": "Wall_shadows",
+ "type": "AutoLayer",
+ "uid": 97,
+ "doc": null,
+ "uiColor": null,
+ "gridSize": 16,
+ "guideGridWid": 0,
+ "guideGridHei": 0,
+ "displayOpacity": 0.17,
+ "inactiveOpacity": 1,
+ "hideInList": false,
+ "hideFieldsWhenInactive": true,
+ "canSelectWhenInactive": true,
+ "renderInWorldView": true,
+ "pxOffsetX": 0,
+ "pxOffsetY": 0,
+ "parallaxFactorX": 0,
+ "parallaxFactorY": 0,
+ "parallaxScaling": true,
+ "requiredTags": [],
+ "excludedTags": [],
+ "intGridValues": [],
+ "autoRuleGroups": [{ "uid": 98, "name": "shadows", "active": true, "isOptional": false, "rules": [
+ {
+ "uid": 100,
+ "active": true,
+ "size": 3,
+ "tileIds": [204],
+ "alpha": 1,
+ "chance": 1,
+ "breakOnMatch": false,
+ "pattern": [0,0,0,1000001,-1000001,0,0,0,0],
+ "flipX": true,
+ "flipY": false,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "tileXOffset": 0,
+ "tileYOffset": 0,
+ "tileRandomXMin": 0,
+ "tileRandomXMax": 0,
+ "tileRandomYMin": 0,
+ "tileRandomYMax": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 4888925,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ },
+ {
+ "uid": 99,
+ "active": true,
+ "size": 5,
+ "tileIds": [182],
+ "alpha": 1,
+ "chance": 1,
+ "breakOnMatch": false,
+ "pattern": [0,0,1000001,0,0,0,0,1000001,0,0,0,0,-1000001,0,0,0,0,0,0,0,0,0,0,0,0],
+ "flipX": false,
+ "flipY": true,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "tileXOffset": 0,
+ "tileYOffset": 0,
+ "tileRandomXMin": 0,
+ "tileRandomXMax": 0,
+ "tileRandomYMin": 0,
+ "tileRandomYMax": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 7250663,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ }
+ ], "usesWizard": false }],
+ "autoSourceLayerDefUid": 1,
+ "tilesetDefUid": 2,
+ "tilePivotX": 0,
+ "tilePivotY": 0
+ },
+ {
+ "__type": "IntGrid",
+ "identifier": "Collisions",
+ "type": "IntGrid",
+ "uid": 1,
+ "doc": null,
+ "uiColor": null,
+ "gridSize": 16,
+ "guideGridWid": 0,
+ "guideGridHei": 0,
+ "displayOpacity": 1,
+ "inactiveOpacity": 1,
+ "hideInList": false,
+ "hideFieldsWhenInactive": true,
+ "canSelectWhenInactive": true,
+ "renderInWorldView": true,
+ "pxOffsetX": 0,
+ "pxOffsetY": 0,
+ "parallaxFactorX": 0,
+ "parallaxFactorY": 0,
+ "parallaxScaling": true,
+ "requiredTags": [],
+ "excludedTags": [],
+ "intGridValues": [
+ { "value": 1, "identifier": "dirt", "color": "#93573E" },
+ { "value": 2, "identifier": "ladder", "color": "#BBAA96" },
+ { "value": 3, "identifier": "stone", "color": "#BD9261" }
+ ],
+ "autoRuleGroups": [
+ { "uid": 101, "name": "Inner wall fog", "active": true, "isOptional": false, "rules": [
+ {
+ "uid": 102,
+ "active": true,
+ "size": 7,
+ "tileIds": [48],
+ "alpha": 1,
+ "chance": 1,
+ "breakOnMatch": true,
+ "pattern": [0,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,0],
+ "flipX": false,
+ "flipY": false,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "tileXOffset": 0,
+ "tileYOffset": 0,
+ "tileRandomXMin": 0,
+ "tileRandomXMax": 0,
+ "tileRandomYMin": 0,
+ "tileRandomYMax": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": 1,
+ "perlinActive": false,
+ "perlinSeed": 5850020,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ }
+ ], "usesWizard": false },
+ { "uid": 40, "name": "ladders", "active": true, "isOptional": false, "rules": [
+ {
+ "uid": 41,
+ "active": true,
+ "size": 1,
+ "tileIds": [213],
+ "alpha": 1,
+ "chance": 1,
+ "breakOnMatch": true,
+ "pattern": [2],
+ "flipX": false,
+ "flipY": false,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "tileXOffset": 0,
+ "tileYOffset": 0,
+ "tileRandomXMin": 0,
+ "tileRandomXMax": 0,
+ "tileRandomYMin": 0,
+ "tileRandomYMax": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 8310255,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ }
+ ], "usesWizard": false },
+ { "uid": 43, "name": "thin platforms", "active": true, "isOptional": false, "rules": [
+ {
+ "uid": 85,
+ "active": true,
+ "size": 3,
+ "tileIds": [207],
+ "alpha": 1,
+ "chance": 1,
+ "breakOnMatch": false,
+ "pattern": [0,-1,0,0,1,1000001,0,-1,1000001],
+ "flipX": false,
+ "flipY": false,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "tileXOffset": 0,
+ "tileYOffset": 0,
+ "tileRandomXMin": 0,
+ "tileRandomXMax": 0,
+ "tileRandomYMin": 0,
+ "tileRandomYMax": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 7091657,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ },
+ {
+ "uid": 45,
+ "active": true,
+ "size": 3,
+ "tileIds": [52],
+ "alpha": 1,
+ "chance": 1,
+ "breakOnMatch": true,
+ "pattern": [0,0,-1,0,1,1,0,1,-1],
+ "flipX": true,
+ "flipY": false,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "tileXOffset": 0,
+ "tileYOffset": 0,
+ "tileRandomXMin": 0,
+ "tileRandomXMax": 0,
+ "tileRandomYMin": 0,
+ "tileRandomYMax": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 2759095,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ },
+ {
+ "uid": 44,
+ "active": true,
+ "size": 3,
+ "tileIds": [99],
+ "alpha": 1,
+ "chance": 1,
+ "breakOnMatch": true,
+ "pattern": [0,-1,0,0,1,0,0,-1,0],
+ "flipX": false,
+ "flipY": false,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "tileXOffset": 0,
+ "tileYOffset": 0,
+ "tileRandomXMin": 0,
+ "tileRandomXMax": 0,
+ "tileRandomYMin": 0,
+ "tileRandomYMax": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 2452565,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ }
+ ], "usesWizard": false },
+ { "uid": 20, "name": "Vegetation", "active": true, "isOptional": false, "rules": [
+ {
+ "uid": 35,
+ "active": true,
+ "size": 5,
+ "tileIds": [305,309,330],
+ "alpha": 1,
+ "chance": 0.34,
+ "breakOnMatch": false,
+ "pattern": [0,0,1,0,0,0,0,1,0,0,0,-1000001,-1000001,-1000001,0,0,0,0,0,0,0,0,0,0,0],
+ "flipX": false,
+ "flipY": false,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "tileXOffset": 0,
+ "tileYOffset": 0,
+ "tileRandomXMin": 0,
+ "tileRandomXMax": 0,
+ "tileRandomYMin": 0,
+ "tileRandomYMax": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": true,
+ "perlinSeed": 8295015,
+ "perlinScale": 0.62,
+ "perlinOctaves": 2
+ },
+ {
+ "uid": 74,
+ "active": true,
+ "size": 3,
+ "tileIds": [282,305],
+ "alpha": 1,
+ "chance": 0.16,
+ "breakOnMatch": false,
+ "pattern": [0,1,0,1,1,1,-1000001,-1000001,-1000001],
+ "flipX": false,
+ "flipY": false,
+ "xModulo": 2,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "tileXOffset": 0,
+ "tileYOffset": 0,
+ "tileRandomXMin": 0,
+ "tileRandomXMax": 0,
+ "tileRandomYMin": 0,
+ "tileRandomYMax": 0,
+ "checker": "None",
+ "tileMode": "Stamp",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 680645,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ },
+ {
+ "uid": 73,
+ "active": true,
+ "size": 5,
+ "tileIds": [284,307,330],
+ "alpha": 1,
+ "chance": 0.17,
+ "breakOnMatch": false,
+ "pattern": [0,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,-1000001,-1000001,-1000001,0,0,0,-1000001,0,0],
+ "flipX": false,
+ "flipY": false,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "tileXOffset": 0,
+ "tileYOffset": 0,
+ "tileRandomXMin": 0,
+ "tileRandomXMax": 0,
+ "tileRandomYMin": 0,
+ "tileRandomYMax": 0,
+ "checker": "None",
+ "tileMode": "Stamp",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 5834766,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ },
+ {
+ "uid": 22,
+ "active": true,
+ "size": 5,
+ "tileIds": [146],
+ "alpha": 1,
+ "chance": 0.35,
+ "breakOnMatch": false,
+ "pattern": [0,0,0,0,0,0,0,-1000001,0,0,0,1,-1000001,0,0,0,0,-1000001,0,0,0,0,-1000001,0,0],
+ "flipX": true,
+ "flipY": false,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "tileXOffset": 0,
+ "tileYOffset": 0,
+ "tileRandomXMin": 0,
+ "tileRandomXMax": 0,
+ "tileRandomYMin": 0,
+ "tileRandomYMax": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 9423247,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ },
+ {
+ "uid": 21,
+ "active": true,
+ "size": 3,
+ "tileIds": [138,140],
+ "alpha": 1,
+ "chance": 0.62,
+ "breakOnMatch": false,
+ "pattern": [0,0,0,-1000001,-1000001,-1000001,0,1,0],
+ "flipX": false,
+ "flipY": false,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "tileXOffset": 0,
+ "tileYOffset": 0,
+ "tileRandomXMin": 0,
+ "tileRandomXMax": 0,
+ "tileRandomYMin": 0,
+ "tileRandomYMax": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": true,
+ "perlinSeed": 4238869,
+ "perlinScale": 0.3,
+ "perlinOctaves": 2
+ }
+ ], "usesWizard": false },
+ { "uid": 57, "name": "Stone walls", "active": true, "isOptional": false, "rules": [
+ {
+ "uid": 69,
+ "active": true,
+ "size": 3,
+ "tileIds": [437],
+ "alpha": 1,
+ "chance": 1,
+ "breakOnMatch": true,
+ "pattern": [-1000001,3,0,3,3,0,0,0,0],
+ "flipX": true,
+ "flipY": true,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "tileXOffset": 0,
+ "tileYOffset": 0,
+ "tileRandomXMin": 0,
+ "tileRandomXMax": 0,
+ "tileRandomYMin": 0,
+ "tileRandomYMax": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 2116777,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ },
+ {
+ "uid": 62,
+ "active": true,
+ "size": 3,
+ "tileIds": [211],
+ "alpha": 1,
+ "chance": 1,
+ "breakOnMatch": false,
+ "pattern": [-3,3,0,3,3,0,0,0,0],
+ "flipX": true,
+ "flipY": true,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "tileXOffset": 0,
+ "tileYOffset": 0,
+ "tileRandomXMin": 0,
+ "tileRandomXMax": 0,
+ "tileRandomYMin": 0,
+ "tileRandomYMax": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 4318534,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ },
+ {
+ "uid": 60,
+ "active": true,
+ "size": 3,
+ "tileIds": [152],
+ "alpha": 1,
+ "chance": 1,
+ "breakOnMatch": true,
+ "pattern": [0,-3,0,-3,3,0,0,0,0],
+ "flipX": true,
+ "flipY": true,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "tileXOffset": 0,
+ "tileYOffset": 0,
+ "tileRandomXMin": 0,
+ "tileRandomXMax": 0,
+ "tileRandomYMin": 0,
+ "tileRandomYMax": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 1158751,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ },
+ {
+ "uid": 61,
+ "active": true,
+ "size": 3,
+ "tileIds": [198],
+ "alpha": 1,
+ "chance": 1,
+ "breakOnMatch": true,
+ "pattern": [0,0,0,-3,3,0,0,0,0],
+ "flipX": true,
+ "flipY": false,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "tileXOffset": 0,
+ "tileYOffset": 0,
+ "tileRandomXMin": 0,
+ "tileRandomXMax": 0,
+ "tileRandomYMin": 0,
+ "tileRandomYMax": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 877859,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ },
+ {
+ "uid": 59,
+ "active": true,
+ "size": 3,
+ "tileIds": [154],
+ "alpha": 1,
+ "chance": 1,
+ "breakOnMatch": true,
+ "pattern": [0,-3,0,0,3,0,0,0,0],
+ "flipX": false,
+ "flipY": true,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "tileXOffset": 0,
+ "tileYOffset": 0,
+ "tileRandomXMin": 0,
+ "tileRandomXMax": 0,
+ "tileRandomYMin": 0,
+ "tileRandomYMax": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 2082640,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ },
+ {
+ "uid": 58,
+ "active": true,
+ "size": 1,
+ "tileIds": [200],
+ "alpha": 1,
+ "chance": 1,
+ "breakOnMatch": true,
+ "pattern": [3],
+ "flipX": false,
+ "flipY": false,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "tileXOffset": 0,
+ "tileYOffset": 0,
+ "tileRandomXMin": 0,
+ "tileRandomXMax": 0,
+ "tileRandomYMin": 0,
+ "tileRandomYMax": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 4606127,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ }
+ ], "usesWizard": false },
+ { "uid": 11, "name": "Dirt walls", "active": true, "isOptional": false, "rules": [
+ {
+ "uid": 36,
+ "active": true,
+ "size": 5,
+ "tileIds": [12],
+ "alpha": 1,
+ "chance": 1,
+ "breakOnMatch": false,
+ "pattern": [0,0,0,0,0,0,0,0,0,0,0,0,-1,1,0,0,0,1,0,0,0,0,1,0,0],
+ "flipX": true,
+ "flipY": false,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "tileXOffset": 0,
+ "tileYOffset": 0,
+ "tileRandomXMin": 0,
+ "tileRandomXMax": 0,
+ "tileRandomYMin": 0,
+ "tileRandomYMax": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 23929,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ },
+ {
+ "uid": 12,
+ "active": true,
+ "size": 3,
+ "tileIds": [2],
+ "alpha": 1,
+ "chance": 1,
+ "breakOnMatch": true,
+ "pattern": [0,-1,0,0,1,0,0,0,0],
+ "flipX": false,
+ "flipY": false,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "tileXOffset": 0,
+ "tileYOffset": 0,
+ "tileRandomXMin": 0,
+ "tileRandomXMax": 0,
+ "tileRandomYMin": 0,
+ "tileRandomYMax": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 3612780,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ },
+ {
+ "uid": 15,
+ "active": true,
+ "size": 3,
+ "tileIds": [0],
+ "alpha": 1,
+ "chance": 1,
+ "breakOnMatch": true,
+ "pattern": [0,-1,0,-1,1,0,0,0,0],
+ "flipX": true,
+ "flipY": false,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "tileXOffset": 0,
+ "tileYOffset": 0,
+ "tileRandomXMin": 0,
+ "tileRandomXMax": 0,
+ "tileRandomYMin": 0,
+ "tileRandomYMax": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 5982262,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ },
+ {
+ "uid": 32,
+ "active": true,
+ "size": 3,
+ "tileIds": [211],
+ "alpha": 1,
+ "chance": 1,
+ "breakOnMatch": false,
+ "pattern": [-1,1,0,1,1,0,0,0,0],
+ "flipX": true,
+ "flipY": true,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "tileXOffset": 0,
+ "tileYOffset": 0,
+ "tileRandomXMin": 0,
+ "tileRandomXMax": 0,
+ "tileRandomYMin": 0,
+ "tileRandomYMax": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 7450655,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ },
+ {
+ "uid": 31,
+ "active": true,
+ "size": 3,
+ "tileIds": [326],
+ "alpha": 1,
+ "chance": 1,
+ "breakOnMatch": false,
+ "pattern": [0,-1,0,-1,1,0,0,0,0],
+ "flipX": true,
+ "flipY": true,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "tileXOffset": 0,
+ "tileYOffset": 0,
+ "tileRandomXMin": 0,
+ "tileRandomXMax": 0,
+ "tileRandomYMin": 0,
+ "tileRandomYMax": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 5259256,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ },
+ {
+ "uid": 29,
+ "active": true,
+ "size": 5,
+ "tileIds": [211,233],
+ "alpha": 1,
+ "chance": 1,
+ "breakOnMatch": false,
+ "pattern": [0,0,1,0,0,0,0,1,0,0,0,1,-1,0,0,0,0,0,0,0,0,0,0,0,0],
+ "flipX": true,
+ "flipY": false,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "tileXOffset": 0,
+ "tileYOffset": 0,
+ "tileRandomXMin": 0,
+ "tileRandomXMax": 0,
+ "tileRandomYMin": 0,
+ "tileRandomYMax": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 8904962,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ },
+ {
+ "uid": 17,
+ "active": true,
+ "size": 3,
+ "tileIds": [92],
+ "alpha": 1,
+ "chance": 1,
+ "breakOnMatch": true,
+ "pattern": [0,0,0,-1,1,0,0,-1,0],
+ "flipX": true,
+ "flipY": false,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "tileXOffset": 0,
+ "tileYOffset": 0,
+ "tileRandomXMin": 0,
+ "tileRandomXMax": 0,
+ "tileRandomYMin": 0,
+ "tileRandomYMax": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 3419817,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ },
+ {
+ "uid": 18,
+ "active": true,
+ "size": 3,
+ "tileIds": [94],
+ "alpha": 1,
+ "chance": 1,
+ "breakOnMatch": true,
+ "pattern": [0,0,0,0,1,0,0,-1,0],
+ "flipX": false,
+ "flipY": false,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "tileXOffset": 0,
+ "tileYOffset": 0,
+ "tileRandomXMin": 0,
+ "tileRandomXMax": 0,
+ "tileRandomYMin": 0,
+ "tileRandomYMax": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 5825902,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ },
+ {
+ "uid": 16,
+ "active": true,
+ "size": 3,
+ "tileIds": [46],
+ "alpha": 1,
+ "chance": 1,
+ "breakOnMatch": true,
+ "pattern": [0,0,0,-1,1,0,0,0,0],
+ "flipX": true,
+ "flipY": false,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "tileXOffset": 0,
+ "tileYOffset": 0,
+ "tileRandomXMin": 0,
+ "tileRandomXMax": 0,
+ "tileRandomYMin": 0,
+ "tileRandomYMax": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 3269451,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ },
+ {
+ "uid": 14,
+ "active": true,
+ "size": 1,
+ "tileIds": [142,144],
+ "alpha": 1,
+ "chance": 0.35,
+ "breakOnMatch": true,
+ "pattern": [1],
+ "flipX": false,
+ "flipY": false,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "tileXOffset": 0,
+ "tileYOffset": 0,
+ "tileRandomXMin": 0,
+ "tileRandomXMax": 0,
+ "tileRandomYMin": 0,
+ "tileRandomYMax": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": true,
+ "perlinSeed": 1,
+ "perlinScale": 0.1,
+ "perlinOctaves": 4
+ },
+ {
+ "uid": 81,
+ "active": true,
+ "size": 3,
+ "tileIds": [144],
+ "alpha": 1,
+ "chance": 0.65,
+ "breakOnMatch": true,
+ "pattern": [0,1,0,1,1,1,0,1,0],
+ "flipX": false,
+ "flipY": false,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "tileXOffset": 0,
+ "tileYOffset": 0,
+ "tileRandomXMin": 0,
+ "tileRandomXMax": 0,
+ "tileRandomYMin": 0,
+ "tileRandomYMax": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": true,
+ "perlinSeed": 1,
+ "perlinScale": 0.1,
+ "perlinOctaves": 2
+ },
+ {
+ "uid": 13,
+ "active": true,
+ "size": 1,
+ "tileIds": [48],
+ "alpha": 1,
+ "chance": 1,
+ "breakOnMatch": true,
+ "pattern": [1],
+ "flipX": false,
+ "flipY": false,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "tileXOffset": 0,
+ "tileYOffset": 0,
+ "tileRandomXMin": 0,
+ "tileRandomXMax": 0,
+ "tileRandomYMin": 0,
+ "tileRandomYMax": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 3617563,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ }
+ ], "usesWizard": false }
+ ],
+ "autoSourceLayerDefUid": null,
+ "tilesetDefUid": 2,
+ "tilePivotX": 0,
+ "tilePivotY": 0
+ },
+ {
+ "__type": "AutoLayer",
+ "identifier": "Bg_textures",
+ "type": "AutoLayer",
+ "uid": 24,
+ "doc": null,
+ "uiColor": null,
+ "gridSize": 16,
+ "guideGridWid": 0,
+ "guideGridHei": 0,
+ "displayOpacity": 1,
+ "inactiveOpacity": 1,
+ "hideInList": false,
+ "hideFieldsWhenInactive": true,
+ "canSelectWhenInactive": true,
+ "renderInWorldView": true,
+ "pxOffsetX": 0,
+ "pxOffsetY": 0,
+ "parallaxFactorX": 0,
+ "parallaxFactorY": 0,
+ "parallaxScaling": true,
+ "requiredTags": [],
+ "excludedTags": [],
+ "intGridValues": [],
+ "autoRuleGroups": [
+ { "uid": 82, "name": "Architecture props", "active": true, "isOptional": false, "rules": [
+ {
+ "uid": 72,
+ "active": true,
+ "size": 7,
+ "tileIds": [358,381,404,359,382,405],
+ "alpha": 1,
+ "chance": 1,
+ "breakOnMatch": true,
+ "pattern": [0,0,-1000001,-1000001,-1000001,0,0,0,0,-1000001,-1000001,-1000001,0,0,0,0,-1000001,-1000001,-1000001,0,0,0,0,-1000001,-1000001,-1000001,0,0,0,0,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],
+ "flipX": false,
+ "flipY": false,
+ "xModulo": 3,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "tileXOffset": 0,
+ "tileYOffset": 0,
+ "tileRandomXMin": 0,
+ "tileRandomXMax": 0,
+ "tileRandomYMin": 0,
+ "tileRandomYMax": 0,
+ "checker": "None",
+ "tileMode": "Stamp",
+ "pivotX": 0.5,
+ "pivotY": 1,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 9916681,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ }
+ ], "usesWizard": false },
+ { "uid": 76, "name": "Bg vegetation", "active": true, "isOptional": false, "rules": [
+ {
+ "uid": 80,
+ "active": true,
+ "size": 3,
+ "tileIds": [450],
+ "alpha": 1,
+ "chance": 1,
+ "breakOnMatch": false,
+ "pattern": [0,0,0,3,-1000001,0,0,3,0],
+ "flipX": true,
+ "flipY": true,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "tileXOffset": 0,
+ "tileYOffset": 0,
+ "tileRandomXMin": 0,
+ "tileRandomXMax": 0,
+ "tileRandomYMin": 0,
+ "tileRandomYMax": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 4200194,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ },
+ {
+ "uid": 65,
+ "active": true,
+ "size": 3,
+ "tileIds": [400,446,468],
+ "alpha": 1,
+ "chance": 0.28,
+ "breakOnMatch": false,
+ "pattern": [0,0,0,0,-1000001,1000001,0,1000001,0],
+ "flipX": true,
+ "flipY": true,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "tileXOffset": 0,
+ "tileYOffset": 0,
+ "tileRandomXMin": 0,
+ "tileRandomXMax": 0,
+ "tileRandomYMin": 0,
+ "tileRandomYMax": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 1342072,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ },
+ {
+ "uid": 39,
+ "active": true,
+ "size": 3,
+ "tileIds": [400,402,447,449],
+ "alpha": 1,
+ "chance": 0.62,
+ "breakOnMatch": false,
+ "pattern": [0,0,0,0,-1000001,0,0,1,0],
+ "flipX": false,
+ "flipY": true,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "tileXOffset": 0,
+ "tileYOffset": 0,
+ "tileRandomXMin": 0,
+ "tileRandomXMax": 0,
+ "tileRandomYMin": 0,
+ "tileRandomYMax": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": true,
+ "perlinSeed": 4138998,
+ "perlinScale": 0.38,
+ "perlinOctaves": 2
+ },
+ {
+ "uid": 71,
+ "active": true,
+ "size": 5,
+ "tileIds": [445,468,446,469,447,470],
+ "alpha": 1,
+ "chance": 0.58,
+ "breakOnMatch": false,
+ "pattern": [0,0,0,0,0,-1000001,-1000001,-1000001,1,0,-1000001,-1000001,-1000001,1,0,1,1,1,1,0,0,0,0,0,0],
+ "flipX": true,
+ "flipY": true,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "tileXOffset": 0,
+ "tileYOffset": 0,
+ "tileRandomXMin": 0,
+ "tileRandomXMax": 0,
+ "tileRandomYMin": 0,
+ "tileRandomYMax": 0,
+ "checker": "None",
+ "tileMode": "Stamp",
+ "pivotX": 1,
+ "pivotY": 1,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 2132826,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ }
+ ], "usesWizard": false },
+ { "uid": 25, "name": "Bg walls", "active": true, "isOptional": false, "rules": [
+ {
+ "uid": 77,
+ "active": true,
+ "size": 5,
+ "tileIds": [361,362,363],
+ "alpha": 1,
+ "chance": 0.61,
+ "breakOnMatch": true,
+ "pattern": [-1000001,-1000001,-1000001,-1000001,-1000001,-1000001,-1000001,-1000001,-1000001,-1000001,-1000001,-1000001,-1000001,-1000001,-1000001,-1000001,-1000001,-1000001,-1000001,-1000001,-1000001,-1000001,-1000001,-1000001,-1000001],
+ "flipX": false,
+ "flipY": false,
+ "xModulo": 3,
+ "yModulo": 2,
+ "xOffset": 0,
+ "yOffset": 0,
+ "tileXOffset": 0,
+ "tileYOffset": 0,
+ "tileRandomXMin": 0,
+ "tileRandomXMax": 0,
+ "tileRandomYMin": 0,
+ "tileRandomYMax": 0,
+ "checker": "Horizontal",
+ "tileMode": "Stamp",
+ "pivotX": 0.5,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 153727,
+ "perlinScale": 0.39,
+ "perlinOctaves": 2
+ },
+ {
+ "uid": 38,
+ "active": true,
+ "size": 3,
+ "tileIds": [409],
+ "alpha": 1,
+ "chance": 1,
+ "breakOnMatch": true,
+ "pattern": [0,0,0,0,-1000001,0,1000001,1000001,1000001],
+ "flipX": false,
+ "flipY": true,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "tileXOffset": 0,
+ "tileYOffset": 0,
+ "tileRandomXMin": 0,
+ "tileRandomXMax": 0,
+ "tileRandomYMin": 0,
+ "tileRandomYMax": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": true,
+ "perlinSeed": 6437517,
+ "perlinScale": 0.14,
+ "perlinOctaves": 2
+ },
+ {
+ "uid": 37,
+ "active": true,
+ "size": 3,
+ "tileIds": [363],
+ "alpha": 1,
+ "chance": 1,
+ "breakOnMatch": true,
+ "pattern": [0,0,0,1000001,-1000001,0,0,0,0],
+ "flipX": true,
+ "flipY": false,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "tileXOffset": 0,
+ "tileYOffset": 0,
+ "tileRandomXMin": 0,
+ "tileRandomXMax": 0,
+ "tileRandomYMin": 0,
+ "tileRandomYMax": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 98550,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ },
+ {
+ "uid": 84,
+ "active": true,
+ "size": 3,
+ "tileIds": [411],
+ "alpha": 1,
+ "chance": 1,
+ "breakOnMatch": true,
+ "pattern": [0,-1000001,0,0,1000001,0,0,-1000001,0],
+ "flipX": false,
+ "flipY": false,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "tileXOffset": 0,
+ "tileYOffset": 0,
+ "tileRandomXMin": 0,
+ "tileRandomXMax": 0,
+ "tileRandomYMin": 0,
+ "tileRandomYMax": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 317141,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ },
+ {
+ "uid": 26,
+ "active": true,
+ "size": 1,
+ "tileIds": [411],
+ "alpha": 1,
+ "chance": 1,
+ "breakOnMatch": true,
+ "pattern": [-1000001],
+ "flipX": false,
+ "flipY": false,
+ "xModulo": 1,
+ "yModulo": 1,
+ "xOffset": 0,
+ "yOffset": 0,
+ "tileXOffset": 0,
+ "tileYOffset": 0,
+ "tileRandomXMin": 0,
+ "tileRandomXMax": 0,
+ "tileRandomYMin": 0,
+ "tileRandomYMax": 0,
+ "checker": "None",
+ "tileMode": "Single",
+ "pivotX": 0,
+ "pivotY": 0,
+ "outOfBoundsValue": null,
+ "perlinActive": false,
+ "perlinSeed": 3390000,
+ "perlinScale": 0.2,
+ "perlinOctaves": 2
+ }
+ ], "usesWizard": false }
+ ],
+ "autoSourceLayerDefUid": 1,
+ "tilesetDefUid": 2,
+ "tilePivotX": 0,
+ "tilePivotY": 0
+ }
+ ], "entities": [
+ {
+ "identifier": "Player",
+ "uid": 46,
+ "tags": [],
+ "exportToToc": false,
+ "doc": null,
+ "width": 24,
+ "height": 24,
+ "resizableX": false,
+ "resizableY": false,
+ "keepAspectRatio": false,
+ "tileOpacity": 1,
+ "fillOpacity": 0.08,
+ "lineOpacity": 0,
+ "hollow": false,
+ "color": "#A7FF24",
+ "renderMode": "Tile",
+ "showName": true,
+ "tilesetId": 104,
+ "tileRenderMode": "FitInside",
+ "tileRect": { "x": 0, "y": 240, "w": 16, "h": 16, "tilesetUid": 104 },
+ "nineSliceBorders": [],
+ "maxCount": 1,
+ "limitScope": "PerWorld",
+ "limitBehavior": "PreventAdding",
+ "pivotX": 0.5,
+ "pivotY": 1,
+ "fieldDefs": [
+ {
+ "identifier": "items",
+ "doc": null,
+ "__type": "Array",
+ "uid": 51,
+ "type": "F_Enum(49)",
+ "isArray": true,
+ "canBeNull": false,
+ "arrayMinLength": null,
+ "arrayMaxLength": null,
+ "editorDisplayMode": "ValueOnly",
+ "editorDisplayScale": 1,
+ "editorDisplayPos": "Above",
+ "editorLinkStyle": "StraightArrow",
+ "editorAlwaysShow": false,
+ "editorShowInWorld": true,
+ "editorCutLongValues": true,
+ "editorTextSuffix": null,
+ "editorTextPrefix": null,
+ "useForSmartColor": false,
+ "min": null,
+ "max": null,
+ "regex": null,
+ "acceptFileTypes": null,
+ "defaultOverride": null,
+ "textLanguageMode": null,
+ "symmetricalRef": false,
+ "autoChainRef": false,
+ "allowOutOfLevelRef": true,
+ "allowedRefs": "OnlySame",
+ "allowedRefsEntityUid": null,
+ "allowedRefTags": [],
+ "tilesetUid": null
+ }
+ ]
+ },
+ {
+ "identifier": "Chest",
+ "uid": 52,
+ "tags": [],
+ "exportToToc": false,
+ "doc": null,
+ "width": 24,
+ "height": 24,
+ "resizableX": false,
+ "resizableY": false,
+ "keepAspectRatio": false,
+ "tileOpacity": 1,
+ "fillOpacity": 0.08,
+ "lineOpacity": 0,
+ "hollow": false,
+ "color": "#6ADDEC",
+ "renderMode": "Tile",
+ "showName": true,
+ "tilesetId": 104,
+ "tileRenderMode": "FitInside",
+ "tileRect": { "x": 160, "y": 560, "w": 16, "h": 16, "tilesetUid": 104 },
+ "nineSliceBorders": [],
+ "maxCount": 0,
+ "limitScope": "PerLevel",
+ "limitBehavior": "DiscardOldOnes",
+ "pivotX": 0.5,
+ "pivotY": 1,
+ "fieldDefs": [
+ {
+ "identifier": "content",
+ "doc": null,
+ "__type": "Array",
+ "uid": 53,
+ "type": "F_Enum(49)",
+ "isArray": true,
+ "canBeNull": false,
+ "arrayMinLength": 1,
+ "arrayMaxLength": null,
+ "editorDisplayMode": "NameAndValue",
+ "editorDisplayScale": 1,
+ "editorDisplayPos": "Above",
+ "editorLinkStyle": "StraightArrow",
+ "editorAlwaysShow": false,
+ "editorShowInWorld": true,
+ "editorCutLongValues": true,
+ "editorTextSuffix": null,
+ "editorTextPrefix": null,
+ "useForSmartColor": false,
+ "min": null,
+ "max": null,
+ "regex": null,
+ "acceptFileTypes": null,
+ "defaultOverride": null,
+ "textLanguageMode": null,
+ "symmetricalRef": false,
+ "autoChainRef": false,
+ "allowOutOfLevelRef": true,
+ "allowedRefs": "OnlySame",
+ "allowedRefsEntityUid": null,
+ "allowedRefTags": [],
+ "tilesetUid": null
+ }
+ ]
+ },
+ {
+ "identifier": "Mob",
+ "uid": 54,
+ "tags": [],
+ "exportToToc": false,
+ "doc": null,
+ "width": 20,
+ "height": 20,
+ "resizableX": true,
+ "resizableY": true,
+ "keepAspectRatio": true,
+ "tileOpacity": 1,
+ "fillOpacity": 0.08,
+ "lineOpacity": 0,
+ "hollow": false,
+ "color": "#FF0000",
+ "renderMode": "Tile",
+ "showName": true,
+ "tilesetId": 104,
+ "tileRenderMode": "Cover",
+ "tileRect": { "x": 96, "y": 0, "w": 16, "h": 16, "tilesetUid": 104 },
+ "nineSliceBorders": [],
+ "maxCount": 0,
+ "limitScope": "PerLevel",
+ "limitBehavior": "DiscardOldOnes",
+ "pivotX": 0.5,
+ "pivotY": 1,
+ "fieldDefs": [
+ {
+ "identifier": "loot",
+ "doc": null,
+ "__type": "Array",
+ "uid": 56,
+ "type": "F_Enum(49)",
+ "isArray": true,
+ "canBeNull": false,
+ "arrayMinLength": null,
+ "arrayMaxLength": null,
+ "editorDisplayMode": "NameAndValue",
+ "editorDisplayScale": 1,
+ "editorDisplayPos": "Above",
+ "editorLinkStyle": "StraightArrow",
+ "editorAlwaysShow": false,
+ "editorShowInWorld": true,
+ "editorCutLongValues": true,
+ "editorTextSuffix": null,
+ "editorTextPrefix": null,
+ "useForSmartColor": false,
+ "min": null,
+ "max": null,
+ "regex": null,
+ "acceptFileTypes": null,
+ "defaultOverride": null,
+ "textLanguageMode": null,
+ "symmetricalRef": false,
+ "autoChainRef": false,
+ "allowOutOfLevelRef": true,
+ "allowedRefs": "OnlySame",
+ "allowedRefsEntityUid": null,
+ "allowedRefTags": [],
+ "tilesetUid": null
+ },
+ {
+ "identifier": "patrol",
+ "doc": null,
+ "__type": "Array",
+ "uid": 55,
+ "type": "F_Point",
+ "isArray": true,
+ "canBeNull": true,
+ "arrayMinLength": null,
+ "arrayMaxLength": null,
+ "editorDisplayMode": "PointPath",
+ "editorDisplayScale": 1,
+ "editorDisplayPos": "Above",
+ "editorLinkStyle": "StraightArrow",
+ "editorAlwaysShow": false,
+ "editorShowInWorld": true,
+ "editorCutLongValues": true,
+ "editorTextSuffix": null,
+ "editorTextPrefix": null,
+ "useForSmartColor": false,
+ "min": null,
+ "max": null,
+ "regex": null,
+ "acceptFileTypes": null,
+ "defaultOverride": null,
+ "textLanguageMode": null,
+ "symmetricalRef": false,
+ "autoChainRef": false,
+ "allowOutOfLevelRef": true,
+ "allowedRefs": "OnlySame",
+ "allowedRefsEntityUid": null,
+ "allowedRefTags": [],
+ "tilesetUid": null
+ }
+ ]
+ },
+ {
+ "identifier": "Door",
+ "uid": 86,
+ "tags": [],
+ "exportToToc": false,
+ "doc": null,
+ "width": 10,
+ "height": 32,
+ "resizableX": false,
+ "resizableY": true,
+ "keepAspectRatio": false,
+ "tileOpacity": 1,
+ "fillOpacity": 1,
+ "lineOpacity": 1,
+ "hollow": false,
+ "color": "#B7A87A",
+ "renderMode": "Rectangle",
+ "showName": true,
+ "tilesetId": null,
+ "tileRenderMode": "NineSlice",
+ "tileRect": null,
+ "nineSliceBorders": [4,4,4,4],
+ "maxCount": 0,
+ "limitScope": "PerLevel",
+ "limitBehavior": "DiscardOldOnes",
+ "pivotX": 0.5,
+ "pivotY": 1,
+ "fieldDefs": [
+ {
+ "identifier": "locked",
+ "doc": null,
+ "__type": "Bool",
+ "uid": 87,
+ "type": "F_Bool",
+ "isArray": false,
+ "canBeNull": false,
+ "arrayMinLength": null,
+ "arrayMaxLength": null,
+ "editorDisplayMode": "ValueOnly",
+ "editorDisplayScale": 1,
+ "editorDisplayPos": "Above",
+ "editorLinkStyle": "StraightArrow",
+ "editorAlwaysShow": false,
+ "editorShowInWorld": true,
+ "editorCutLongValues": true,
+ "editorTextSuffix": null,
+ "editorTextPrefix": null,
+ "useForSmartColor": false,
+ "min": null,
+ "max": null,
+ "regex": null,
+ "acceptFileTypes": null,
+ "defaultOverride": null,
+ "textLanguageMode": null,
+ "symmetricalRef": false,
+ "autoChainRef": false,
+ "allowOutOfLevelRef": true,
+ "allowedRefs": "OnlySame",
+ "allowedRefsEntityUid": null,
+ "allowedRefTags": [],
+ "tilesetUid": null
+ }
+ ]
+ }
+ ], "tilesets": [
+ {
+ "__cWid": 23,
+ "__cHei": 21,
+ "identifier": "SunnyLand_by_Ansimuz",
+ "uid": 2,
+ "relPath": "atlas/SunnyLand_by_Ansimuz-extended.png",
+ "embedAtlas": null,
+ "pxWid": 368,
+ "pxHei": 336,
+ "tileGridSize": 16,
+ "spacing": 0,
+ "padding": 0,
+ "tags": [],
+ "tagsSourceEnumUid": null,
+ "enumTags": [],
+ "customData": [],
+ "savedSelections": [
+ { "ids": [358,381,404,359,382,405], "mode": "Stamp" },
+ { "ids": [284,307,330], "mode": "Stamp" },
+ { "ids": [286,309], "mode": "Stamp" },
+ { "ids": [282,305], "mode": "Stamp" },
+ { "ids": [210,233,211,234], "mode": "Stamp" },
+ { "ids": [207,230,208,231], "mode": "Stamp" },
+ { "ids": [82,105], "mode": "Stamp" },
+ { "ids": [84,107], "mode": "Stamp" },
+ { "ids": [15,38,16,39], "mode": "Stamp" },
+ { "ids": [12,35,13,36], "mode": "Stamp" },
+ { "ids": [18,41,19,42], "mode": "Stamp" },
+ { "ids": [21,44,22,45], "mode": "Stamp" },
+ { "ids": [90,113], "mode": "Stamp" },
+ { "ids": [88,111], "mode": "Stamp" },
+ { "ids": [52,53], "mode": "Stamp" },
+ { "ids": [55,56], "mode": "Stamp" },
+ { "ids": [439,462,440,463], "mode": "Stamp" }
+ ],
+ "cachedPixelData": {
+ "opaqueTiles": "101010100010110110000000000000000001101101101110101010001000000000000000000000000010100000001010101000000101000101000000000000000000000000000010100000001010100000000000000000000000000000000000000000101010000010100100000000000000000000000000000010101010000000000000000000000100000000101010100000000000000001010100000100000001010000100000000000000010100000010011011100000101000000100110000000011011000011101101010100000000000000000000000001011000011101110100000000110000111011100000000",
+ "averageColors": "f9850000f9850000f9850000fa65000069557a65f8450000f644f9650000f965f644000049b5c9950000c99549b5000000000000000000000000000000000000000000000000f955f7450000f745f9550000f865f7450000f745f865f9550000f6450000f9550000f845695500006955f8450000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f8550000f85500000000000079a5000079a50000f9550000f8550000f9550000f8457a6569550000ab8500000000f8550000f855000000000000f7550000f75500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000077a5000078b50000f8450000f7450000947400009474000000000000fa650000f9550000fa6500002000000000000000459534953595000000000000000000000000000000000000000000000000000000000000000020006000000000000000000000000000000000000000000000000000000088550000f9550000f6450000f9550000900000000000a955f8450000f845a9550000f85500000000ca65b9650000000000000000000000000000000000000000000000000000a9550000a9550000000000000000000000000000000000000000fa650000f9550000fa650000f4880000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f47700000000000000000000000000000000f7450000f8550000f8550000f8550000000000000000000000000000000000000000000000000000000000000000f3440000f3450000f534000000000000e9950000f9950000e9950000000000000000b855f5340000f534b855000000000000f334000000000000000000000000000000000000000000000000000000000000f7440000f744000000000000000000000000f43500000000f435f4350000f334f436f3350000000000000000b955f5340000f534b95500000000000000000000f34500000000f335f33500000000000000000000000000000000f744f3340000f334f7440000000000000000f344f345f3440000f335f3350000f5340000f4350000f3340000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fa650000f955f9550000000000000000f334f335f3450000f345f335f3340000f75500000000000000000000000000000000f955f9550000000000000000f335f344f3440000f344f344f33500000000000000000000000000000000"
+ }
+ },
+ {
+ "__cWid": 32,
+ "__cHei": 64,
+ "identifier": "Internal_Icons",
+ "uid": 104,
+ "relPath": null,
+ "embedAtlas": "LdtkIcons",
+ "pxWid": 512,
+ "pxHei": 1024,
+ "tileGridSize": 16,
+ "spacing": 0,
+ "padding": 0,
+ "tags": [],
+ "tagsSourceEnumUid": null,
+ "enumTags": [],
+ "customData": [],
+ "savedSelections": [],
+ "cachedPixelData": {
+ "opaqueTiles": "00000000000000000000000000000000000000000000000000000000000000000000000000000000111111111000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
+ "averageColors": "00004b344233459b423349a959a9379c688769758ca4bc9489aab9aa58cc58bc42d74d2244ce428f4c7e4fb34abb45564ffe7dda78880000000000000000000069a969a97a99999999989a85998699767a7579667ccc7ccc7bcb7caa7ccc7ccc22d72d2224ce228f2c7e2fb32abb25562ffe000000000000000000000000000059764b97599868ac679a69ab4a84477756787688475347532a932a934a837a83f2b6fb22f3acf15afa6cfc93f899f334fccc000000000000000000000000000059aa49aa59996999699969aa489949995999799a499949992999299948997889a385a823a379a248a749a864a667a223a8880000000000000000000000000000189919991999199939994778166727772889289948993aaa389949a959a959a932b63b2233ad315a395c3c83389933343ccc00000000000000000000000000008aaa8aaa8aaa8aaa8aaa7bbb8aaa7bbb8bcb7aaa8bcb7bcb69aa8aaa8aaa69aa6abb6abb6abb6abb6a226a226a226a2261a661a661a661a600000000000000006c526c426c926c91659b649c66a566a46a7b6a7b667766776aba6abb676367636b746b746b746b74616c616c616c616c8abb8abb8abb8abb00000000000000006ba5579a6689598658875cb66abb9aa989aa98ac7abc6678968a88877c87cba952755823536952475648586354455223599900000000000000000000000000003ec63da76db79dc7554885498969b4377fa29e8289cdb9ce5ade5ade49ce49ce82a68a22839b8259885b8b73855683238aab00000000000000000000000000005d745d867da87e75448c458b86ad76ae68ac679c779b78ce3c9378867ca6adb784858933847a844788498963854584348989000000000000000000000000000057a668b899b8449396534493858364836853697769436667755667776c73498800000000000000000000000000000000000000000000000000000000000000006bba79b87d9679ad776a7b988abc8abc4aceaace4bba4bba6b8c4c9c4cac5b7c000000000000000000000000000000000000000000000000000000000000000059aaada7a9bdcdbd59aaada7a9bdcdbd8cb8a9b98ac889b8aabaacc79ea498bd000000000000000000000000000000000000000000000000000000000000000057ac596b55946abb5abb8ca65d8677ac437b5a3368886934547a595897a57b230000000000000000000000000000000000000000000000000000000000000000799a5c817b9b3a886abb8464676a7a967a857a857977898889882a954a956b950000000000000000000000000000000000000000000000000000000000000000499977997868799579875a6465995a8957a66a735ba53a935969479a576a467700000000000000000000000000000000000000000000000000000000000000005744985596659b747a659a76768a7a5676754777388735665976987794459465000000000000000000000000000000000000000000000000000000000000000088668a66868a9b8577666a4467846987778a7789797a87888b8676667a767ca50000000000000000000000000000000000000000000000000000000000000000449374934c957c9574847a438475a3958695768565956853b9447a777493a493000000000000000000000000000000000000000000000000000000000000000079547a838394689a49547a6357636975786383848997b384655873748974588400000000000000000000000000000000000000000000000000000000000000007da48ca769768b554b976cba3a824a82696259526a758c986963694268478b850000000000000000000000000000000000000000000000000000000000000000696559555579557458598674573353635677575579667a8758538b848a44838b0000000000000000000000000000000000000000000000000000000000000000385437883b95534549555a855877997598772b953b9529a939a95aa84b949a840000000000000000000000000000000000000000000000000000000000000000897687898776878578998485878b789a847b8b6579998a55886998788a879b9700000000000000000000000000000000000000000000000000000000000000006ba97988897469646b987a876a997a987b987955766777765c958a858777867700000000000000000000000000000000000000000000000000000000000000005a747b947b967866a855788928884566578879a98864a579233433343334633400000000000000000000000000000000000000000000000000000000000000006a747b846a844997598669987bb8b8aabaa96ba67cba9854687669864a864b86000000000000000000000000000000000000000000000000000000000000000038ab389b48ab47ac49ab48ac579b48ac49ab38ab58bc4b8659aa5c8457ac586a0000000000000000000000000000000000000000000000000000000000000000299b2999389a379b38893955589a79bc8c9588bc7a8c599a689a5b8558ac597a00000000000000000000000000000000000000000000000000000000000000002888378936773975579b389a579b488938884b74469a465747785b75568b586a000000000000000000000000000000000000000000000000000000000000000038553865285428444755566455763a64356746743779397445674c63469b585a0000000000000000000000000000000000000000000000000000000000000000284437643a7629641555297938874879385438664665355536775a85569a785a00000000000000000000000000000000000000000000000000000000000000005789789b779b6a75668a897b64558555876576798855845694749b74a68a986a000000000000000000000000000000000000000000000000000000000000000047776766678867667799798698768866976685673755387638763b74358b387a00000000000000000000000000000000000000000000000000000000000000005777686569874944498846774677685568646987677778775a456a65ab66ca550000000000000000000000000000000000000000000000000000000000000000355656666656455546455345634558655854aa749854775577737b64777a7a7900000000000000000000000000000000000000000000000000000000000000005955895598546c758c75ba76b88797749b75a98967888789978857888788a78800000000000000000000000000000000000000000000000000000000000000006977897799776a748a749a747987ba97aa998ba8a78bab75a87ab89cbb74b97b000000000000000000000000000000000000000000000000000000000000000059645788598858546a7569996a767a766887649c767476797a54766977667976000000000000000000000000000000000000000000000000000000000000000078887a75796577777a869976987799865777667787668a53857a885a98659546000000000000000000000000000000000000000000000000000000000000000087559877a96586779788b9769866888899877576777879647759a8659888a7440000000000000000000000000000000000000000000000000000000000000000785477887a55747b7585795b7999a9667456878889aa58997888797b56776855000000000000000000000000000000000000000000000000000000000000000048545854617b644557448744537b85565899899a39994a7a58998999a5558988000000000000000000000000000000000000000000000000000000000000000089659744a6559555a55698889486a57aab43a96b9556a665a854a579a744a5550000000000000000000000000000000000000000000000000000000000000000596587556677777777778578876687778974867787668876988897779876a744000000000000000000000000000000000000000000000000000000000000000067536556875448225922415851595456654587459456947b48997a86764585560000000000000000000000000000000000000000000000000000000000000000a854a89989998556a7559766a7779976a975997596749a64968a9779a55595450000000000000000000000000000000000000000000000000000000000000000674487549854885594558445a777a7778373579b5a32675584456975958b9944000000000000000000000000000000000000000000000000000000000000000077449754b674b469b964b658a766a864a777a975a566a754a677a875b777b9650000000000000000000000000000000000000000000000000000000000000000775577547445755676558744697377637766785334556566577859755877887600000000000000000000000000000000000000000000000000000000000000002789287328772a7436793a9457795a84368a3334323364555a757b856aaa9a5500000000000000000000000000000000000000000000000000000000000000005888516b5a3349a95964797778987a5375696a536668796577887a847a74797500000000000000000000000000000000000000000000000000000000000000007b537a53767b6769748775767a9a7988759c768a7b957a847775776478647854000000000000000000000000000000000000000000000000000000000000000098999788988998889b879a869a869a86696565676965667767446854677877880000000000000000000000000000000000000000000000000000000000000000678a77997ba647887a7589999ca59ba889aa9999655667bd6ba979a967bc6c7300000000000000000000000000000000000000000000000000000000000000006aaa6556518566775965485438985888576546854ca547775999699989997a9900000000000000000000000000000000000000000000000000000000000000006678526466335644769c5a7888547a785c4454a658885c946285627b6c54674a000000000000000000000000000000000000000000000000000000000000000033843b33359c337c395c3b853899355653745a33558b536b585b5a7557885445000000000000000000000000000000000000000000000000000000000000000026551566274525664a85486546564656377756664655465545454656516a656700000000000000000000000000000000000000000000000000000000000000004964696468553a86485437443645896588548856895477446a7569547a757954000000000000000000000000000000000000000000000000000000000000000036678566399988993b968b955ba658995566588859645a986ca7796477887ca6000000000000000000000000000000000000000000000000000000000000000019562a554c665c55156a256a468c557b1a8429744a845a83196b285a496b595b00000000000000000000000000000000000000000000000000000000000000001486248645a7549615782578469a5689187629764a875a861a692a694b7a5b79000000000000000000000000000000000000000000000000000000000000000017772777489858881555255546665556199528854884588411122112411251120000000000000000000000000000000000000000000000000000000000000000"
+ }
+ }
+ ], "enums": [{ "identifier": "Item", "uid": 49, "values": [
+ { "id": "Knife", "tileRect": { "tilesetUid": 104, "x": 0, "y": 448, "w": 16, "h": 16 }, "tileId": -1, "color": 9608629, "__tileSrcRect": [0,448,16,16] },
+ { "id": "Healing_Plant", "tileRect": { "tilesetUid": 104, "x": 16, "y": 288, "w": 16, "h": 16 }, "tileId": -1, "color": 4625973, "__tileSrcRect": [16,288,16,16] },
+ { "id": "Meat", "tileRect": { "tilesetUid": 104, "x": 48, "y": 320, "w": 16, "h": 16 }, "tileId": -1, "color": 12015952, "__tileSrcRect": [48,320,16,16] },
+ { "id": "Boots", "tileRect": { "tilesetUid": 104, "x": 32, "y": 752, "w": 16, "h": 16 }, "tileId": -1, "color": 9067593, "__tileSrcRect": [32,752,16,16] },
+ { "id": "Water", "tileRect": { "tilesetUid": 104, "x": 0, "y": 272, "w": 16, "h": 16 }, "tileId": -1, "color": 9399401, "__tileSrcRect": [0,272,16,16] },
+ { "id": "Gem", "tileRect": { "tilesetUid": 104, "x": 176, "y": 976, "w": 16, "h": 16 }, "tileId": -1, "color": 11173944, "__tileSrcRect": [176,976,16,16] }
+ ], "iconTilesetUid": 104, "externalRelPath": null, "externalFileChecksum": null, "tags": [] }], "externalEnums": [], "levelFields": [] },
+ "levels": [
+ {
+ "identifier": "Your_typical_2D_platformer",
+ "iid": "a315ac10-66b0-11ec-9cd7-99f223ad6ade",
+ "uid": 0,
+ "worldX": 0,
+ "worldY": 0,
+ "worldDepth": 0,
+ "pxWid": 848,
+ "pxHei": 336,
+ "__bgColor": "#50506A",
+ "bgColor": null,
+ "useAutoIdentifier": false,
+ "bgRelPath": null,
+ "bgPos": null,
+ "bgPivotX": 0.5,
+ "bgPivotY": 0.5,
+ "__smartColor": "#9F9FAD",
+ "__bgPos": null,
+ "externalRelPath": null,
+ "fieldInstances": [],
+ "layerInstances": [
+ {
+ "__identifier": "Entities",
+ "__type": "Entities",
+ "__cWid": 53,
+ "__cHei": 21,
+ "__gridSize": 16,
+ "__opacity": 1,
+ "__pxTotalOffsetX": 0,
+ "__pxTotalOffsetY": 0,
+ "__tilesetDefUid": null,
+ "__tilesetRelPath": null,
+ "iid": "a315d322-66b0-11ec-9cd7-4318e0a0e578",
+ "levelId": 0,
+ "layerDefUid": 48,
+ "pxOffsetX": 0,
+ "pxOffsetY": 0,
+ "visible": true,
+ "optionalRules": [],
+ "intGridCsv": [],
+ "autoLayerTiles": [],
+ "seed": 9220595,
+ "overrideTilesetUid": null,
+ "gridTiles": [],
+ "entityInstances": [
+ {
+ "__identifier": "Player",
+ "__grid": [11,12],
+ "__pivot": [0.5,1],
+ "__tags": [],
+ "__tile": { "x": 0, "y": 240, "w": 16, "h": 16, "tilesetUid": 104 },
+ "__smartColor": "#A7FF24",
+ "iid": "a315d323-66b0-11ec-9cd7-8ddce09157bc",
+ "width": 24,
+ "height": 24,
+ "defUid": 46,
+ "px": [184,208],
+ "fieldInstances": [{ "__identifier": "items", "__type": "Array", "__value": [ "Knife", "Boots" ], "__tile": null, "defUid": 51, "realEditorValues": [ {
+ "id": "V_String",
+ "params": ["Knife"]
+ }, {
+ "id": "V_String",
+ "params": ["Boots"]
+ } ] }]
+ },
+ {
+ "__identifier": "Chest",
+ "__grid": [31,17],
+ "__pivot": [0.5,1],
+ "__tags": [],
+ "__tile": { "x": 160, "y": 560, "w": 16, "h": 16, "tilesetUid": 104 },
+ "__smartColor": "#6ADDEC",
+ "iid": "a315d324-66b0-11ec-9cd7-0d0128b37734",
+ "width": 32,
+ "height": 24,
+ "defUid": 52,
+ "px": [504,288],
+ "fieldInstances": [{ "__identifier": "content", "__type": "Array", "__value": [ "Healing_Plant", "Water", "Meat" ], "__tile": null, "defUid": 53, "realEditorValues": [ {
+ "id": "V_String",
+ "params": ["Healing_Plant"]
+ }, {
+ "id": "V_String",
+ "params": ["Water"]
+ }, {
+ "id": "V_String",
+ "params": ["Meat"]
+ } ] }]
+ },
+ {
+ "__identifier": "Mob",
+ "__grid": [20,9],
+ "__pivot": [0.5,1],
+ "__tags": [],
+ "__tile": { "x": 96, "y": 0, "w": 16, "h": 16, "tilesetUid": 104 },
+ "__smartColor": "#FF0000",
+ "iid": "a315d325-66b0-11ec-9cd7-f9e1c56d6020",
+ "width": 20,
+ "height": 20,
+ "defUid": 54,
+ "px": [328,160],
+ "fieldInstances": [
+ { "__identifier": "loot", "__type": "Array", "__value": ["Meat"], "__tile": null, "defUid": 56, "realEditorValues": [{
+ "id": "V_String",
+ "params": ["Meat"]
+ }] },
+ { "__identifier": "patrol", "__type": "Array", "__value": [{ "cx": 32, "cy": 9 }], "__tile": null, "defUid": 55, "realEditorValues": [{
+ "id": "V_String",
+ "params": ["32,9"]
+ }] }
+ ]
+ },
+ {
+ "__identifier": "Mob",
+ "__grid": [16,17],
+ "__pivot": [0.5,1],
+ "__tags": [],
+ "__tile": { "x": 96, "y": 0, "w": 16, "h": 16, "tilesetUid": 104 },
+ "__smartColor": "#FF0000",
+ "iid": "a315d326-66b0-11ec-9cd7-cf3ea20f8dff",
+ "width": 20,
+ "height": 20,
+ "defUid": 54,
+ "px": [264,288],
+ "fieldInstances": [
+ { "__identifier": "loot", "__type": "Array", "__value": [], "__tile": null, "defUid": 56, "realEditorValues": [] },
+ { "__identifier": "patrol", "__type": "Array", "__value": [{ "cx": 26, "cy": 17 }], "__tile": null, "defUid": 55, "realEditorValues": [{
+ "id": "V_String",
+ "params": ["26,17"]
+ }] }
+ ]
+ },
+ {
+ "__identifier": "Door",
+ "__grid": [27,17],
+ "__pivot": [0.5,1],
+ "__tags": [],
+ "__tile": null,
+ "__smartColor": "#B7A87A",
+ "iid": "a315d327-66b0-11ec-9cd7-35c28e76b04b",
+ "width": 10,
+ "height": 32,
+ "defUid": 86,
+ "px": [440,288],
+ "fieldInstances": [{ "__identifier": "locked", "__type": "Bool", "__value": false, "__tile": null, "defUid": 87, "realEditorValues": [null] }]
+ },
+ {
+ "__identifier": "Door",
+ "__grid": [35,7],
+ "__pivot": [0.5,1],
+ "__tags": [],
+ "__tile": null,
+ "__smartColor": "#B7A87A",
+ "iid": "a315d328-66b0-11ec-9cd7-c30477cb5ff1",
+ "width": 10,
+ "height": 48,
+ "defUid": 86,
+ "px": [568,128],
+ "fieldInstances": [{ "__identifier": "locked", "__type": "Bool", "__value": false, "__tile": null, "defUid": 87, "realEditorValues": [] }]
+ }
+ ]
+ },
+ {
+ "__identifier": "Wall_shadows",
+ "__type": "AutoLayer",
+ "__cWid": 53,
+ "__cHei": 21,
+ "__gridSize": 16,
+ "__opacity": 0.17,
+ "__pxTotalOffsetX": 0,
+ "__pxTotalOffsetY": 0,
+ "__tilesetDefUid": 2,
+ "__tilesetRelPath": "atlas/SunnyLand_by_Ansimuz-extended.png",
+ "iid": "a315d329-66b0-11ec-9cd7-cd3fbd05b9cf",
+ "levelId": 0,
+ "layerDefUid": 97,
+ "pxOffsetX": 0,
+ "pxOffsetY": 0,
+ "visible": true,
+ "optionalRules": [],
+ "intGridCsv": [],
+ "autoLayerTiles": [
+ { "px": [496,32], "src": [336,112], "f": 0, "t": 182, "d": [99,137], "a": 1 },
+ { "px": [512,32], "src": [336,112], "f": 0, "t": 182, "d": [99,138], "a": 1 },
+ { "px": [320,48], "src": [336,112], "f": 0, "t": 182, "d": [99,179], "a": 1 },
+ { "px": [336,48], "src": [336,112], "f": 0, "t": 182, "d": [99,180], "a": 1 },
+ { "px": [352,48], "src": [336,112], "f": 0, "t": 182, "d": [99,181], "a": 1 },
+ { "px": [464,48], "src": [336,112], "f": 0, "t": 182, "d": [99,188], "a": 1 },
+ { "px": [480,48], "src": [336,112], "f": 0, "t": 182, "d": [99,189], "a": 1 },
+ { "px": [528,48], "src": [336,112], "f": 0, "t": 182, "d": [99,192], "a": 1 },
+ { "px": [624,48], "src": [336,112], "f": 0, "t": 182, "d": [99,198], "a": 1 },
+ { "px": [640,48], "src": [336,112], "f": 0, "t": 182, "d": [99,199], "a": 1 },
+ { "px": [656,48], "src": [336,112], "f": 0, "t": 182, "d": [99,200], "a": 1 },
+ { "px": [672,48], "src": [336,112], "f": 0, "t": 182, "d": [99,201], "a": 1 },
+ { "px": [688,48], "src": [336,112], "f": 0, "t": 182, "d": [99,202], "a": 1 },
+ { "px": [720,48], "src": [336,112], "f": 0, "t": 182, "d": [99,204], "a": 1 },
+ { "px": [368,64], "src": [336,112], "f": 0, "t": 182, "d": [99,235], "a": 1 },
+ { "px": [384,64], "src": [336,112], "f": 0, "t": 182, "d": [99,236], "a": 1 },
+ { "px": [432,64], "src": [336,112], "f": 0, "t": 182, "d": [99,239], "a": 1 },
+ { "px": [448,64], "src": [336,112], "f": 0, "t": 182, "d": [99,240], "a": 1 },
+ { "px": [288,80], "src": [336,112], "f": 0, "t": 182, "d": [99,283], "a": 1 },
+ { "px": [304,80], "src": [336,112], "f": 0, "t": 182, "d": [99,284], "a": 1 },
+ { "px": [400,80], "src": [336,112], "f": 0, "t": 182, "d": [99,290], "a": 1 },
+ { "px": [416,80], "src": [336,112], "f": 0, "t": 182, "d": [99,291], "a": 1 },
+ { "px": [544,80], "src": [336,112], "f": 0, "t": 182, "d": [99,299], "a": 1 },
+ { "px": [560,80], "src": [336,112], "f": 0, "t": 182, "d": [99,300], "a": 1 },
+ { "px": [576,80], "src": [336,112], "f": 0, "t": 182, "d": [99,301], "a": 1 },
+ { "px": [592,80], "src": [336,112], "f": 0, "t": 182, "d": [99,302], "a": 1 },
+ { "px": [608,80], "src": [336,112], "f": 0, "t": 182, "d": [99,303], "a": 1 },
+ { "px": [112,96], "src": [336,112], "f": 2, "t": 182, "d": [99,325], "a": 1 },
+ { "px": [128,96], "src": [336,112], "f": 2, "t": 182, "d": [99,326], "a": 1 },
+ { "px": [256,112], "src": [336,112], "f": 0, "t": 182, "d": [99,387], "a": 1 },
+ { "px": [272,112], "src": [336,112], "f": 0, "t": 182, "d": [99,388], "a": 1 },
+ { "px": [544,112], "src": [336,112], "f": 2, "t": 182, "d": [99,405], "a": 1 },
+ { "px": [560,112], "src": [336,112], "f": 2, "t": 182, "d": [99,406], "a": 1 },
+ { "px": [576,112], "src": [336,112], "f": 2, "t": 182, "d": [99,407], "a": 1 },
+ { "px": [592,112], "src": [336,112], "f": 2, "t": 182, "d": [99,408], "a": 1 },
+ { "px": [608,112], "src": [336,112], "f": 2, "t": 182, "d": [99,409], "a": 1 },
+ { "px": [400,128], "src": [336,112], "f": 2, "t": 182, "d": [99,449], "a": 1 },
+ { "px": [624,128], "src": [336,112], "f": 2, "t": 182, "d": [99,463], "a": 1 },
+ { "px": [640,128], "src": [336,112], "f": 2, "t": 182, "d": [99,464], "a": 1 },
+ { "px": [656,128], "src": [336,112], "f": 2, "t": 182, "d": [99,465], "a": 1 },
+ { "px": [672,128], "src": [336,112], "f": 2, "t": 182, "d": [99,466], "a": 1 },
+ { "px": [688,128], "src": [336,112], "f": 2, "t": 182, "d": [99,467], "a": 1 },
+ { "px": [720,128], "src": [336,112], "f": 2, "t": 182, "d": [99,469], "a": 1 },
+ { "px": [112,144], "src": [336,112], "f": 0, "t": 182, "d": [99,484], "a": 1 },
+ { "px": [128,144], "src": [336,112], "f": 0, "t": 182, "d": [99,485], "a": 1 },
+ { "px": [144,144], "src": [336,112], "f": 0, "t": 182, "d": [99,486], "a": 1 },
+ { "px": [160,144], "src": [336,112], "f": 0, "t": 182, "d": [99,487], "a": 1 },
+ { "px": [176,144], "src": [336,112], "f": 0, "t": 182, "d": [99,488], "a": 1 },
+ { "px": [192,144], "src": [336,112], "f": 0, "t": 182, "d": [99,489], "a": 1 },
+ { "px": [208,144], "src": [336,112], "f": 0, "t": 182, "d": [99,490], "a": 1 },
+ { "px": [224,144], "src": [336,112], "f": 0, "t": 182, "d": [99,491], "a": 1 },
+ { "px": [240,144], "src": [336,112], "f": 0, "t": 182, "d": [99,492], "a": 1 },
+ { "px": [352,144], "src": [336,112], "f": 2, "t": 182, "d": [99,499], "a": 1 },
+ { "px": [368,144], "src": [336,112], "f": 2, "t": 182, "d": [99,500], "a": 1 },
+ { "px": [384,144], "src": [336,112], "f": 2, "t": 182, "d": [99,501], "a": 1 },
+ { "px": [416,144], "src": [336,112], "f": 2, "t": 182, "d": [99,503], "a": 1 },
+ { "px": [432,144], "src": [336,112], "f": 2, "t": 182, "d": [99,504], "a": 1 },
+ { "px": [448,144], "src": [336,112], "f": 2, "t": 182, "d": [99,505], "a": 1 },
+ { "px": [464,144], "src": [336,112], "f": 2, "t": 182, "d": [99,506], "a": 1 },
+ { "px": [480,144], "src": [336,112], "f": 2, "t": 182, "d": [99,507], "a": 1 },
+ { "px": [496,144], "src": [336,112], "f": 2, "t": 182, "d": [99,508], "a": 1 },
+ { "px": [512,144], "src": [336,112], "f": 2, "t": 182, "d": [99,509], "a": 1 },
+ { "px": [528,144], "src": [336,112], "f": 2, "t": 182, "d": [99,510], "a": 1 },
+ { "px": [112,192], "src": [336,112], "f": 2, "t": 182, "d": [99,643], "a": 1 },
+ { "px": [128,192], "src": [336,112], "f": 2, "t": 182, "d": [99,644], "a": 1 },
+ { "px": [144,192], "src": [336,112], "f": 2, "t": 182, "d": [99,645], "a": 1 },
+ { "px": [160,192], "src": [336,112], "f": 2, "t": 182, "d": [99,646], "a": 1 },
+ { "px": [176,192], "src": [336,112], "f": 2, "t": 182, "d": [99,647], "a": 1 },
+ { "px": [192,192], "src": [336,112], "f": 2, "t": 182, "d": [99,648], "a": 1 },
+ { "px": [208,192], "src": [336,112], "f": 2, "t": 182, "d": [99,649], "a": 1 },
+ { "px": [224,192], "src": [336,112], "f": 2, "t": 182, "d": [99,650], "a": 1 },
+ { "px": [240,192], "src": [336,112], "f": 2, "t": 182, "d": [99,651], "a": 1 },
+ { "px": [352,224], "src": [336,112], "f": 0, "t": 182, "d": [99,764], "a": 1 },
+ { "px": [0,240], "src": [336,112], "f": 2, "t": 182, "d": [99,795], "a": 1 },
+ { "px": [16,240], "src": [336,112], "f": 2, "t": 182, "d": [99,796], "a": 1 },
+ { "px": [32,240], "src": [336,112], "f": 2, "t": 182, "d": [99,797], "a": 1 },
+ { "px": [48,240], "src": [336,112], "f": 2, "t": 182, "d": [99,798], "a": 1 },
+ { "px": [64,240], "src": [336,112], "f": 2, "t": 182, "d": [99,799], "a": 1 },
+ { "px": [368,240], "src": [336,112], "f": 0, "t": 182, "d": [99,818], "a": 1 },
+ { "px": [384,240], "src": [336,112], "f": 0, "t": 182, "d": [99,819], "a": 1 },
+ { "px": [416,240], "src": [336,112], "f": 0, "t": 182, "d": [99,821], "a": 1 },
+ { "px": [464,240], "src": [336,112], "f": 0, "t": 182, "d": [99,824], "a": 1 },
+ { "px": [480,240], "src": [336,112], "f": 0, "t": 182, "d": [99,825], "a": 1 },
+ { "px": [496,240], "src": [336,112], "f": 0, "t": 182, "d": [99,826], "a": 1 },
+ { "px": [512,240], "src": [336,112], "f": 0, "t": 182, "d": [99,827], "a": 1 },
+ { "px": [112,256], "src": [336,112], "f": 0, "t": 182, "d": [99,855], "a": 1 },
+ { "px": [128,256], "src": [336,112], "f": 0, "t": 182, "d": [99,856], "a": 1 },
+ { "px": [320,256], "src": [336,112], "f": 2, "t": 182, "d": [99,868], "a": 1 },
+ { "px": [432,256], "src": [336,112], "f": 0, "t": 182, "d": [99,875], "a": 1 },
+ { "px": [448,256], "src": [336,112], "f": 0, "t": 182, "d": [99,876], "a": 1 },
+ { "px": [256,272], "src": [336,112], "f": 2, "t": 182, "d": [99,917], "a": 1 },
+ { "px": [272,272], "src": [336,112], "f": 2, "t": 182, "d": [99,918], "a": 1 },
+ { "px": [288,272], "src": [336,112], "f": 2, "t": 182, "d": [99,919], "a": 1 },
+ { "px": [304,272], "src": [336,112], "f": 2, "t": 182, "d": [99,920], "a": 1 },
+ { "px": [336,272], "src": [336,112], "f": 2, "t": 182, "d": [99,922], "a": 1 },
+ { "px": [352,272], "src": [336,112], "f": 2, "t": 182, "d": [99,923], "a": 1 },
+ { "px": [368,272], "src": [336,112], "f": 2, "t": 182, "d": [99,924], "a": 1 },
+ { "px": [384,272], "src": [336,112], "f": 2, "t": 182, "d": [99,925], "a": 1 },
+ { "px": [416,272], "src": [336,112], "f": 2, "t": 182, "d": [99,927], "a": 1 },
+ { "px": [432,272], "src": [336,112], "f": 2, "t": 182, "d": [99,928], "a": 1 },
+ { "px": [448,272], "src": [336,112], "f": 2, "t": 182, "d": [99,929], "a": 1 },
+ { "px": [464,272], "src": [336,112], "f": 2, "t": 182, "d": [99,930], "a": 1 },
+ { "px": [480,272], "src": [336,112], "f": 2, "t": 182, "d": [99,931], "a": 1 },
+ { "px": [496,272], "src": [336,112], "f": 2, "t": 182, "d": [99,932], "a": 1 },
+ { "px": [512,272], "src": [336,112], "f": 2, "t": 182, "d": [99,933], "a": 1 },
+ { "px": [0,304], "src": [336,112], "f": 0, "t": 182, "d": [99,1007], "a": 1 },
+ { "px": [16,304], "src": [336,112], "f": 0, "t": 182, "d": [99,1008], "a": 1 },
+ { "px": [32,304], "src": [336,112], "f": 0, "t": 182, "d": [99,1009], "a": 1 },
+ { "px": [48,304], "src": [336,112], "f": 0, "t": 182, "d": [99,1010], "a": 1 },
+ { "px": [64,304], "src": [336,112], "f": 0, "t": 182, "d": [99,1011], "a": 1 },
+ { "px": [128,0], "src": [320,128], "f": 1, "t": 204, "d": [100,8], "a": 1 },
+ { "px": [128,16], "src": [320,128], "f": 1, "t": 204, "d": [100,61], "a": 1 },
+ { "px": [128,32], "src": [320,128], "f": 1, "t": 204, "d": [100,114], "a": 1 },
+ { "px": [496,32], "src": [320,128], "f": 0, "t": 204, "d": [100,137], "a": 1 },
+ { "px": [512,32], "src": [320,128], "f": 1, "t": 204, "d": [100,138], "a": 1 },
+ { "px": [128,48], "src": [320,128], "f": 1, "t": 204, "d": [100,167], "a": 1 },
+ { "px": [320,48], "src": [320,128], "f": 0, "t": 204, "d": [100,179], "a": 1 },
+ { "px": [352,48], "src": [320,128], "f": 1, "t": 204, "d": [100,181], "a": 1 },
+ { "px": [464,48], "src": [320,128], "f": 0, "t": 204, "d": [100,188], "a": 1 },
+ { "px": [528,48], "src": [320,128], "f": 1, "t": 204, "d": [100,192], "a": 1 },
+ { "px": [624,48], "src": [320,128], "f": 0, "t": 204, "d": [100,198], "a": 1 },
+ { "px": [688,48], "src": [320,128], "f": 1, "t": 204, "d": [100,202], "a": 1 },
+ { "px": [720,48], "src": [320,128], "f": 0, "t": 204, "d": [100,204], "a": 1 },
+ { "px": [720,48], "src": [320,128], "f": 1, "t": 204, "d": [100,204], "a": 1 },
+ { "px": [128,64], "src": [320,128], "f": 1, "t": 204, "d": [100,220], "a": 1 },
+ { "px": [320,64], "src": [320,128], "f": 0, "t": 204, "d": [100,232], "a": 1 },
+ { "px": [384,64], "src": [320,128], "f": 1, "t": 204, "d": [100,236], "a": 1 },
+ { "px": [432,64], "src": [320,128], "f": 0, "t": 204, "d": [100,239], "a": 1 },
+ { "px": [528,64], "src": [320,128], "f": 1, "t": 204, "d": [100,245], "a": 1 },
+ { "px": [624,64], "src": [320,128], "f": 0, "t": 204, "d": [100,251], "a": 1 },
+ { "px": [688,64], "src": [320,128], "f": 1, "t": 204, "d": [100,255], "a": 1 },
+ { "px": [720,64], "src": [320,128], "f": 0, "t": 204, "d": [100,257], "a": 1 },
+ { "px": [720,64], "src": [320,128], "f": 1, "t": 204, "d": [100,257], "a": 1 },
+ { "px": [128,80], "src": [320,128], "f": 1, "t": 204, "d": [100,273], "a": 1 },
+ { "px": [288,80], "src": [320,128], "f": 0, "t": 204, "d": [100,283], "a": 1 },
+ { "px": [688,80], "src": [320,128], "f": 1, "t": 204, "d": [100,308], "a": 1 },
+ { "px": [720,80], "src": [320,128], "f": 0, "t": 204, "d": [100,310], "a": 1 },
+ { "px": [720,80], "src": [320,128], "f": 1, "t": 204, "d": [100,310], "a": 1 },
+ { "px": [128,96], "src": [320,128], "f": 1, "t": 204, "d": [100,326], "a": 1 },
+ { "px": [288,96], "src": [320,128], "f": 0, "t": 204, "d": [100,336], "a": 1 },
+ { "px": [688,96], "src": [320,128], "f": 1, "t": 204, "d": [100,361], "a": 1 },
+ { "px": [720,96], "src": [320,128], "f": 0, "t": 204, "d": [100,363], "a": 1 },
+ { "px": [720,96], "src": [320,128], "f": 1, "t": 204, "d": [100,363], "a": 1 },
+ { "px": [96,112], "src": [320,128], "f": 1, "t": 204, "d": [100,377], "a": 1 },
+ { "px": [256,112], "src": [320,128], "f": 0, "t": 204, "d": [100,387], "a": 1 },
+ { "px": [688,112], "src": [320,128], "f": 1, "t": 204, "d": [100,414], "a": 1 },
+ { "px": [720,112], "src": [320,128], "f": 0, "t": 204, "d": [100,416], "a": 1 },
+ { "px": [720,112], "src": [320,128], "f": 1, "t": 204, "d": [100,416], "a": 1 },
+ { "px": [96,128], "src": [320,128], "f": 1, "t": 204, "d": [100,430], "a": 1 },
+ { "px": [256,128], "src": [320,128], "f": 0, "t": 204, "d": [100,440], "a": 1 },
+ { "px": [528,128], "src": [320,128], "f": 1, "t": 204, "d": [100,457], "a": 1 },
+ { "px": [624,128], "src": [320,128], "f": 0, "t": 204, "d": [100,463], "a": 1 },
+ { "px": [688,128], "src": [320,128], "f": 1, "t": 204, "d": [100,467], "a": 1 },
+ { "px": [720,128], "src": [320,128], "f": 0, "t": 204, "d": [100,469], "a": 1 },
+ { "px": [720,128], "src": [320,128], "f": 1, "t": 204, "d": [100,469], "a": 1 },
+ { "px": [384,144], "src": [320,128], "f": 1, "t": 204, "d": [100,501], "a": 1 },
+ { "px": [416,144], "src": [320,128], "f": 0, "t": 204, "d": [100,503], "a": 1 },
+ { "px": [528,144], "src": [320,128], "f": 1, "t": 204, "d": [100,510], "a": 1 },
+ { "px": [288,160], "src": [320,128], "f": 1, "t": 204, "d": [100,548], "a": 1 },
+ { "px": [336,176], "src": [320,128], "f": 1, "t": 204, "d": [100,604], "a": 1 },
+ { "px": [336,192], "src": [320,128], "f": 1, "t": 204, "d": [100,657], "a": 1 },
+ { "px": [96,208], "src": [320,128], "f": 1, "t": 204, "d": [100,695], "a": 1 },
+ { "px": [256,208], "src": [320,128], "f": 0, "t": 204, "d": [100,705], "a": 1 },
+ { "px": [336,208], "src": [320,128], "f": 1, "t": 204, "d": [100,710], "a": 1 },
+ { "px": [96,224], "src": [320,128], "f": 1, "t": 204, "d": [100,748], "a": 1 },
+ { "px": [256,224], "src": [320,128], "f": 0, "t": 204, "d": [100,758], "a": 1 },
+ { "px": [352,224], "src": [320,128], "f": 1, "t": 204, "d": [100,764], "a": 1 },
+ { "px": [96,240], "src": [320,128], "f": 1, "t": 204, "d": [100,801], "a": 1 },
+ { "px": [256,240], "src": [320,128], "f": 0, "t": 204, "d": [100,811], "a": 1 },
+ { "px": [384,240], "src": [320,128], "f": 1, "t": 204, "d": [100,819], "a": 1 },
+ { "px": [416,240], "src": [320,128], "f": 0, "t": 204, "d": [100,821], "a": 1 },
+ { "px": [416,240], "src": [320,128], "f": 1, "t": 204, "d": [100,821], "a": 1 },
+ { "px": [464,240], "src": [320,128], "f": 0, "t": 204, "d": [100,824], "a": 1 },
+ { "px": [512,240], "src": [320,128], "f": 1, "t": 204, "d": [100,827], "a": 1 },
+ { "px": [80,256], "src": [320,128], "f": 0, "t": 204, "d": [100,853], "a": 1 },
+ { "px": [128,256], "src": [320,128], "f": 1, "t": 204, "d": [100,856], "a": 1 },
+ { "px": [256,256], "src": [320,128], "f": 0, "t": 204, "d": [100,864], "a": 1 },
+ { "px": [384,256], "src": [320,128], "f": 1, "t": 204, "d": [100,872], "a": 1 },
+ { "px": [416,256], "src": [320,128], "f": 0, "t": 204, "d": [100,874], "a": 1 },
+ { "px": [512,256], "src": [320,128], "f": 1, "t": 204, "d": [100,880], "a": 1 },
+ { "px": [80,272], "src": [320,128], "f": 0, "t": 204, "d": [100,906], "a": 1 },
+ { "px": [128,272], "src": [320,128], "f": 1, "t": 204, "d": [100,909], "a": 1 },
+ { "px": [256,272], "src": [320,128], "f": 0, "t": 204, "d": [100,917], "a": 1 },
+ { "px": [304,272], "src": [320,128], "f": 1, "t": 204, "d": [100,920], "a": 1 },
+ { "px": [336,272], "src": [320,128], "f": 0, "t": 204, "d": [100,922], "a": 1 },
+ { "px": [384,272], "src": [320,128], "f": 1, "t": 204, "d": [100,925], "a": 1 },
+ { "px": [416,272], "src": [320,128], "f": 0, "t": 204, "d": [100,927], "a": 1 },
+ { "px": [512,272], "src": [320,128], "f": 1, "t": 204, "d": [100,933], "a": 1 },
+ { "px": [80,288], "src": [320,128], "f": 0, "t": 204, "d": [100,959], "a": 1 },
+ { "px": [128,288], "src": [320,128], "f": 1, "t": 204, "d": [100,962], "a": 1 },
+ { "px": [128,304], "src": [320,128], "f": 1, "t": 204, "d": [100,1015], "a": 1 },
+ { "px": [128,320], "src": [320,128], "f": 1, "t": 204, "d": [100,1068], "a": 1 }
+ ],
+ "seed": 8916381,
+ "overrideTilesetUid": null,
+ "gridTiles": [],
+ "entityInstances": []
+ },
+ {
+ "__identifier": "Collisions",
+ "__type": "IntGrid",
+ "__cWid": 53,
+ "__cHei": 21,
+ "__gridSize": 16,
+ "__opacity": 1,
+ "__pxTotalOffsetX": 0,
+ "__pxTotalOffsetY": 0,
+ "__tilesetDefUid": 2,
+ "__tilesetRelPath": "atlas/SunnyLand_by_Ansimuz-extended.png",
+ "iid": "a315d32a-66b0-11ec-9cd7-515d3a6b5733",
+ "levelId": 0,
+ "layerDefUid": 1,
+ "pxOffsetX": 0,
+ "pxOffsetY": 0,
+ "visible": true,
+ "optionalRules": [],
+ "intGridCsv": [
+ 0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
+ 1,3,3,3,3,3,3,3,3,2,3,3,3,3,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,
+ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,3,3,3,3,3,3,3,2,3,3,3,3,1,1,1,
+ 1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,3,3,3,1,1,1,1,1,1,1,1,1,1,1,0,0,1,
+ 1,1,3,3,3,3,3,3,3,3,2,3,3,3,3,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,
+ 1,3,3,3,0,0,0,1,1,1,1,1,1,0,0,0,0,0,3,3,3,3,3,0,0,0,0,0,2,0,3,3,3,1,1,
+ 1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,3,3,3,0,0,0,0,0,1,1,0,0,0,0,0,0,
+ 0,3,3,3,3,3,0,0,0,0,0,2,0,3,3,3,1,1,1,1,0,0,0,0,0,0,0,0,0,3,3,1,1,1,1,
+ 1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,3,3,3,1,
+ 1,1,1,0,0,0,0,0,0,0,0,0,3,3,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,2,0,3,3,3,1,1,1,1,0,0,0,0,0,0,0,3,3,3,3,1,1,1,
+ 1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,3,3,3,
+ 1,1,1,1,0,0,0,0,0,0,0,3,3,3,3,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,3,3,3,3,3,0,0,0,0,0,2,0,3,3,3,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,3,3,3,3,3,3,3,3,3,3,3,3,3,3,
+ 3,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,2,1,1,1,1,
+ 1,1,1,1,1,1,3,3,3,3,3,3,3,3,3,3,3,3,3,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,1,1,1,1,3,3,3,3,3,3,3,3,3,3,3,
+ 3,3,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,2,1,3,3,
+ 3,3,3,3,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,3,3,3,3,
+ 1,1,1,1,1,0,0,0,0,0,0,1,1,1,2,1,3,3,3,3,3,3,3,3,1,1,1,1,1,1,1,1,1,1,1,
+ 1,1,1,1,1,1,1,0,0,0,0,0,0,0,3,3,3,3,1,1,1,1,1,0,0,0,0,0,0,0,1,1,2,1,3,
+ 3,3,3,3,3,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,3,3,3,
+ 3,1,1,1,1,1,0,0,0,0,0,0,0,0,0,2,0,3,3,0,0,0,0,3,3,1,1,1,1,1,1,1,1,1,1,
+ 1,1,1,1,1,1,1,1,3,3,3,3,3,0,0,0,0,3,3,1,1,1,1,1,0,0,0,0,0,0,0,0,0,2,0,
+ 0,0,0,0,0,0,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,3,3,3,3,0,0,0,0,
+ 1,1,1,1,1,1,1,0,0,0,0,2,0,0,0,0,2,0,0,0,0,0,0,0,3,3,1,1,1,1,1,1,1,1,1,
+ 1,1,1,1,1,1,1,1,1,3,3,3,3,3,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,
+ 1,3,3,3,3,3,3,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,
+ 0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,3,3,3,3,3,3,3,3,1,1,1,1,1,1,1,1,
+ 1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,
+ 1,1,3,3,3,3,3,3,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
+ ],
+ "autoLayerTiles": [
+ { "px": [176,0], "src": [32,32], "f": 0, "t": 48, "d": [13,11], "a": 1 },
+ { "px": [224,0], "src": [32,32], "f": 0, "t": 48, "d": [13,14], "a": 1 },
+ { "px": [240,0], "src": [32,32], "f": 0, "t": 48, "d": [13,15], "a": 1 },
+ { "px": [256,0], "src": [32,32], "f": 0, "t": 48, "d": [13,16], "a": 1 },
+ { "px": [272,0], "src": [32,32], "f": 0, "t": 48, "d": [13,17], "a": 1 },
+ { "px": [288,0], "src": [32,32], "f": 0, "t": 48, "d": [13,18], "a": 1 },
+ { "px": [304,0], "src": [32,32], "f": 0, "t": 48, "d": [13,19], "a": 1 },
+ { "px": [320,0], "src": [32,32], "f": 0, "t": 48, "d": [13,20], "a": 1 },
+ { "px": [336,0], "src": [32,32], "f": 0, "t": 48, "d": [13,21], "a": 1 },
+ { "px": [352,0], "src": [32,32], "f": 0, "t": 48, "d": [13,22], "a": 1 },
+ { "px": [368,0], "src": [32,32], "f": 0, "t": 48, "d": [13,23], "a": 1 },
+ { "px": [384,0], "src": [32,32], "f": 0, "t": 48, "d": [13,24], "a": 1 },
+ { "px": [448,0], "src": [32,32], "f": 0, "t": 48, "d": [13,28], "a": 1 },
+ { "px": [464,0], "src": [32,32], "f": 0, "t": 48, "d": [13,29], "a": 1 },
+ { "px": [480,0], "src": [32,32], "f": 0, "t": 48, "d": [13,30], "a": 1 },
+ { "px": [496,0], "src": [32,32], "f": 0, "t": 48, "d": [13,31], "a": 1 },
+ { "px": [512,0], "src": [32,32], "f": 0, "t": 48, "d": [13,32], "a": 1 },
+ { "px": [528,0], "src": [32,32], "f": 0, "t": 48, "d": [13,33], "a": 1 },
+ { "px": [544,0], "src": [32,32], "f": 0, "t": 48, "d": [13,34], "a": 1 },
+ { "px": [160,16], "src": [32,32], "f": 0, "t": 48, "d": [13,63], "a": 1 },
+ { "px": [176,16], "src": [32,32], "f": 0, "t": 48, "d": [13,64], "a": 1 },
+ { "px": [224,16], "src": [32,32], "f": 0, "t": 48, "d": [13,67], "a": 1 },
+ { "px": [240,16], "src": [32,32], "f": 0, "t": 48, "d": [13,68], "a": 1 },
+ { "px": [256,16], "src": [32,32], "f": 0, "t": 48, "d": [13,69], "a": 1 },
+ { "px": [336,16], "src": [32,32], "f": 0, "t": 48, "d": [13,74], "a": 1 },
+ { "px": [400,16], "src": [32,32], "f": 0, "t": 48, "d": [13,78], "a": 1 },
+ { "px": [448,16], "src": [32,32], "f": 0, "t": 48, "d": [13,81], "a": 1 },
+ { "px": [528,16], "src": [32,32], "f": 0, "t": 48, "d": [13,86], "a": 1 },
+ { "px": [544,16], "src": [32,32], "f": 0, "t": 48, "d": [13,87], "a": 1 },
+ { "px": [816,16], "src": [32,32], "f": 0, "t": 48, "d": [13,104], "a": 1 },
+ { "px": [160,32], "src": [32,32], "f": 0, "t": 48, "d": [13,116], "a": 1 },
+ { "px": [176,32], "src": [32,32], "f": 0, "t": 48, "d": [13,117], "a": 1 },
+ { "px": [192,32], "src": [32,32], "f": 0, "t": 48, "d": [13,118], "a": 1 },
+ { "px": [224,32], "src": [32,32], "f": 0, "t": 48, "d": [13,120], "a": 1 },
+ { "px": [240,32], "src": [32,32], "f": 0, "t": 48, "d": [13,121], "a": 1 },
+ { "px": [368,32], "src": [32,32], "f": 0, "t": 48, "d": [13,129], "a": 1 },
+ { "px": [384,32], "src": [32,32], "f": 0, "t": 48, "d": [13,130], "a": 1 },
+ { "px": [160,48], "src": [32,32], "f": 0, "t": 48, "d": [13,169], "a": 1 },
+ { "px": [176,48], "src": [32,32], "f": 0, "t": 48, "d": [13,170], "a": 1 },
+ { "px": [192,48], "src": [32,32], "f": 0, "t": 48, "d": [13,171], "a": 1 },
+ { "px": [208,48], "src": [32,32], "f": 0, "t": 48, "d": [13,172], "a": 1 },
+ { "px": [224,48], "src": [32,32], "f": 0, "t": 48, "d": [13,173], "a": 1 },
+ { "px": [240,48], "src": [32,32], "f": 0, "t": 48, "d": [13,174], "a": 1 },
+ { "px": [176,64], "src": [32,32], "f": 0, "t": 48, "d": [13,223], "a": 1 },
+ { "px": [192,64], "src": [32,32], "f": 0, "t": 48, "d": [13,224], "a": 1 },
+ { "px": [208,64], "src": [32,32], "f": 0, "t": 48, "d": [13,225], "a": 1 },
+ { "px": [224,64], "src": [32,32], "f": 0, "t": 48, "d": [13,226], "a": 1 },
+ { "px": [192,80], "src": [32,32], "f": 0, "t": 48, "d": [13,277], "a": 1 },
+ { "px": [208,80], "src": [32,32], "f": 0, "t": 48, "d": [13,278], "a": 1 },
+ { "px": [224,80], "src": [32,32], "f": 0, "t": 48, "d": [13,279], "a": 1 },
+ { "px": [192,96], "src": [32,32], "f": 0, "t": 48, "d": [13,330], "a": 1 },
+ { "px": [208,96], "src": [32,32], "f": 0, "t": 48, "d": [13,331], "a": 1 },
+ { "px": [224,96], "src": [32,32], "f": 0, "t": 48, "d": [13,332], "a": 1 },
+ { "px": [800,96], "src": [32,32], "f": 0, "t": 48, "d": [13,368], "a": 1 },
+ { "px": [192,112], "src": [32,32], "f": 0, "t": 48, "d": [13,383], "a": 1 },
+ { "px": [208,112], "src": [32,32], "f": 0, "t": 48, "d": [13,384], "a": 1 },
+ { "px": [224,112], "src": [32,32], "f": 0, "t": 48, "d": [13,385], "a": 1 },
+ { "px": [800,112], "src": [32,32], "f": 0, "t": 48, "d": [13,421], "a": 1 },
+ { "px": [816,112], "src": [32,32], "f": 0, "t": 48, "d": [13,422], "a": 1 },
+ { "px": [800,128], "src": [32,32], "f": 0, "t": 48, "d": [13,474], "a": 1 },
+ { "px": [816,128], "src": [32,32], "f": 0, "t": 48, "d": [13,475], "a": 1 },
+ { "px": [800,144], "src": [32,32], "f": 0, "t": 48, "d": [13,527], "a": 1 },
+ { "px": [816,144], "src": [32,32], "f": 0, "t": 48, "d": [13,528], "a": 1 },
+ { "px": [816,160], "src": [32,32], "f": 0, "t": 48, "d": [13,581], "a": 1 },
+ { "px": [816,176], "src": [32,32], "f": 0, "t": 48, "d": [13,634], "a": 1 },
+ { "px": [368,192], "src": [32,32], "f": 0, "t": 48, "d": [13,659], "a": 1 },
+ { "px": [800,192], "src": [32,32], "f": 0, "t": 48, "d": [13,686], "a": 1 },
+ { "px": [816,192], "src": [32,32], "f": 0, "t": 48, "d": [13,687], "a": 1 },
+ { "px": [368,208], "src": [32,32], "f": 0, "t": 48, "d": [13,712], "a": 1 },
+ { "px": [576,208], "src": [32,32], "f": 0, "t": 48, "d": [13,725], "a": 1 },
+ { "px": [592,208], "src": [32,32], "f": 0, "t": 48, "d": [13,726], "a": 1 },
+ { "px": [608,208], "src": [32,32], "f": 0, "t": 48, "d": [13,727], "a": 1 },
+ { "px": [656,208], "src": [32,32], "f": 0, "t": 48, "d": [13,730], "a": 1 },
+ { "px": [784,208], "src": [32,32], "f": 0, "t": 48, "d": [13,738], "a": 1 },
+ { "px": [576,224], "src": [32,32], "f": 0, "t": 48, "d": [13,778], "a": 1 },
+ { "px": [592,224], "src": [32,32], "f": 0, "t": 48, "d": [13,779], "a": 1 },
+ { "px": [608,224], "src": [32,32], "f": 0, "t": 48, "d": [13,780], "a": 1 },
+ { "px": [624,224], "src": [32,32], "f": 0, "t": 48, "d": [13,781], "a": 1 },
+ { "px": [672,224], "src": [32,32], "f": 0, "t": 48, "d": [13,784], "a": 1 },
+ { "px": [768,224], "src": [32,32], "f": 0, "t": 48, "d": [13,790], "a": 1 },
+ { "px": [224,240], "src": [32,32], "f": 0, "t": 48, "d": [13,809], "a": 1 },
+ { "px": [576,240], "src": [32,32], "f": 0, "t": 48, "d": [13,831], "a": 1 },
+ { "px": [592,240], "src": [32,32], "f": 0, "t": 48, "d": [13,832], "a": 1 },
+ { "px": [208,256], "src": [32,32], "f": 0, "t": 48, "d": [13,861], "a": 1 },
+ { "px": [576,256], "src": [32,32], "f": 0, "t": 48, "d": [13,884], "a": 1 },
+ { "px": [592,256], "src": [32,32], "f": 0, "t": 48, "d": [13,885], "a": 1 },
+ { "px": [208,272], "src": [32,32], "f": 0, "t": 48, "d": [13,914], "a": 1 },
+ { "px": [576,272], "src": [32,32], "f": 0, "t": 48, "d": [13,937], "a": 1 },
+ { "px": [592,272], "src": [32,32], "f": 0, "t": 48, "d": [13,938], "a": 1 },
+ { "px": [160,288], "src": [32,32], "f": 0, "t": 48, "d": [13,964], "a": 1 },
+ { "px": [192,288], "src": [32,32], "f": 0, "t": 48, "d": [13,966], "a": 1 },
+ { "px": [576,288], "src": [32,32], "f": 0, "t": 48, "d": [13,990], "a": 1 },
+ { "px": [592,288], "src": [32,32], "f": 0, "t": 48, "d": [13,991], "a": 1 },
+ { "px": [256,304], "src": [32,32], "f": 0, "t": 48, "d": [13,1023], "a": 1 },
+ { "px": [352,304], "src": [32,32], "f": 0, "t": 48, "d": [13,1029], "a": 1 },
+ { "px": [368,304], "src": [32,32], "f": 0, "t": 48, "d": [13,1030], "a": 1 },
+ { "px": [384,304], "src": [32,32], "f": 0, "t": 48, "d": [13,1031], "a": 1 },
+ { "px": [400,304], "src": [32,32], "f": 0, "t": 48, "d": [13,1032], "a": 1 },
+ { "px": [576,304], "src": [32,32], "f": 0, "t": 48, "d": [13,1043], "a": 1 },
+ { "px": [592,304], "src": [32,32], "f": 0, "t": 48, "d": [13,1044], "a": 1 },
+ { "px": [176,320], "src": [32,32], "f": 0, "t": 48, "d": [13,1071], "a": 1 },
+ { "px": [240,320], "src": [32,32], "f": 0, "t": 48, "d": [13,1075], "a": 1 },
+ { "px": [256,320], "src": [32,32], "f": 0, "t": 48, "d": [13,1076], "a": 1 },
+ { "px": [288,320], "src": [32,32], "f": 0, "t": 48, "d": [13,1078], "a": 1 },
+ { "px": [352,320], "src": [32,32], "f": 0, "t": 48, "d": [13,1082], "a": 1 },
+ { "px": [368,320], "src": [32,32], "f": 0, "t": 48, "d": [13,1083], "a": 1 },
+ { "px": [384,320], "src": [32,32], "f": 0, "t": 48, "d": [13,1084], "a": 1 },
+ { "px": [400,320], "src": [32,32], "f": 0, "t": 48, "d": [13,1085], "a": 1 },
+ { "px": [576,320], "src": [32,32], "f": 0, "t": 48, "d": [13,1096], "a": 1 },
+ { "px": [592,320], "src": [32,32], "f": 0, "t": 48, "d": [13,1097], "a": 1 },
+ { "px": [320,16], "src": [96,96], "f": 0, "t": 144, "d": [81,73], "a": 1 },
+ { "px": [416,16], "src": [96,96], "f": 0, "t": 144, "d": [81,79], "a": 1 },
+ { "px": [400,32], "src": [96,96], "f": 0, "t": 144, "d": [81,131], "a": 1 },
+ { "px": [432,32], "src": [96,96], "f": 0, "t": 144, "d": [81,133], "a": 1 },
+ { "px": [800,32], "src": [96,96], "f": 0, "t": 144, "d": [81,156], "a": 1 },
+ { "px": [816,32], "src": [96,96], "f": 0, "t": 144, "d": [81,157], "a": 1 },
+ { "px": [800,48], "src": [96,96], "f": 0, "t": 144, "d": [81,209], "a": 1 },
+ { "px": [816,48], "src": [96,96], "f": 0, "t": 144, "d": [81,210], "a": 1 },
+ { "px": [816,64], "src": [96,96], "f": 0, "t": 144, "d": [81,263], "a": 1 },
+ { "px": [240,80], "src": [96,96], "f": 0, "t": 144, "d": [81,280], "a": 1 },
+ { "px": [256,80], "src": [96,96], "f": 0, "t": 144, "d": [81,281], "a": 1 },
+ { "px": [800,80], "src": [96,96], "f": 0, "t": 144, "d": [81,315], "a": 1 },
+ { "px": [816,80], "src": [96,96], "f": 0, "t": 144, "d": [81,316], "a": 1 },
+ { "px": [816,96], "src": [96,96], "f": 0, "t": 144, "d": [81,369], "a": 1 },
+ { "px": [368,176], "src": [96,96], "f": 0, "t": 144, "d": [81,606], "a": 1 },
+ { "px": [800,176], "src": [96,96], "f": 0, "t": 144, "d": [81,633], "a": 1 },
+ { "px": [784,192], "src": [96,96], "f": 0, "t": 144, "d": [81,685], "a": 1 },
+ { "px": [624,208], "src": [96,96], "f": 0, "t": 144, "d": [81,728], "a": 1 },
+ { "px": [672,208], "src": [96,96], "f": 0, "t": 144, "d": [81,731], "a": 1 },
+ { "px": [688,208], "src": [96,96], "f": 0, "t": 144, "d": [81,732], "a": 1 },
+ { "px": [768,208], "src": [96,96], "f": 0, "t": 144, "d": [81,737], "a": 1 },
+ { "px": [192,224], "src": [96,96], "f": 0, "t": 144, "d": [81,754], "a": 1 },
+ { "px": [208,224], "src": [96,96], "f": 0, "t": 144, "d": [81,755], "a": 1 },
+ { "px": [224,224], "src": [96,96], "f": 0, "t": 144, "d": [81,756], "a": 1 },
+ { "px": [640,224], "src": [96,96], "f": 0, "t": 144, "d": [81,782], "a": 1 },
+ { "px": [704,224], "src": [96,96], "f": 0, "t": 144, "d": [81,786], "a": 1 },
+ { "px": [736,224], "src": [96,96], "f": 0, "t": 144, "d": [81,788], "a": 1 },
+ { "px": [752,224], "src": [96,96], "f": 0, "t": 144, "d": [81,789], "a": 1 },
+ { "px": [784,224], "src": [96,96], "f": 0, "t": 144, "d": [81,791], "a": 1 },
+ { "px": [800,224], "src": [96,96], "f": 0, "t": 144, "d": [81,792], "a": 1 },
+ { "px": [192,240], "src": [96,96], "f": 0, "t": 144, "d": [81,807], "a": 1 },
+ { "px": [192,256], "src": [96,96], "f": 0, "t": 144, "d": [81,860], "a": 1 },
+ { "px": [224,256], "src": [96,96], "f": 0, "t": 144, "d": [81,862], "a": 1 },
+ { "px": [224,272], "src": [96,96], "f": 0, "t": 144, "d": [81,915], "a": 1 },
+ { "px": [176,288], "src": [96,96], "f": 0, "t": 144, "d": [81,965], "a": 1 },
+ { "px": [240,288], "src": [96,96], "f": 0, "t": 144, "d": [81,969], "a": 1 },
+ { "px": [176,304], "src": [96,96], "f": 0, "t": 144, "d": [81,1018], "a": 1 },
+ { "px": [192,304], "src": [96,96], "f": 0, "t": 144, "d": [81,1019], "a": 1 },
+ { "px": [208,304], "src": [96,96], "f": 0, "t": 144, "d": [81,1020], "a": 1 },
+ { "px": [224,304], "src": [96,96], "f": 0, "t": 144, "d": [81,1021], "a": 1 },
+ { "px": [240,304], "src": [96,96], "f": 0, "t": 144, "d": [81,1022], "a": 1 },
+ { "px": [288,304], "src": [96,96], "f": 0, "t": 144, "d": [81,1025], "a": 1 },
+ { "px": [160,0], "src": [64,96], "f": 0, "t": 142, "d": [14,10], "a": 1 },
+ { "px": [432,0], "src": [64,96], "f": 0, "t": 142, "d": [14,27], "a": 1 },
+ { "px": [800,0], "src": [64,96], "f": 0, "t": 142, "d": [14,50], "a": 1 },
+ { "px": [816,0], "src": [96,96], "f": 0, "t": 144, "d": [14,51], "a": 1 },
+ { "px": [352,16], "src": [96,96], "f": 0, "t": 144, "d": [14,75], "a": 1 },
+ { "px": [368,16], "src": [64,96], "f": 0, "t": 142, "d": [14,76], "a": 1 },
+ { "px": [384,16], "src": [96,96], "f": 0, "t": 144, "d": [14,77], "a": 1 },
+ { "px": [432,16], "src": [96,96], "f": 0, "t": 144, "d": [14,80], "a": 1 },
+ { "px": [464,16], "src": [64,96], "f": 0, "t": 142, "d": [14,82], "a": 1 },
+ { "px": [480,16], "src": [64,96], "f": 0, "t": 142, "d": [14,83], "a": 1 },
+ { "px": [800,16], "src": [64,96], "f": 0, "t": 142, "d": [14,103], "a": 1 },
+ { "px": [416,32], "src": [96,96], "f": 0, "t": 144, "d": [14,132], "a": 1 },
+ { "px": [448,32], "src": [64,96], "f": 0, "t": 142, "d": [14,134], "a": 1 },
+ { "px": [400,48], "src": [96,96], "f": 0, "t": 144, "d": [14,184], "a": 1 },
+ { "px": [416,48], "src": [96,96], "f": 0, "t": 144, "d": [14,185], "a": 1 },
+ { "px": [240,64], "src": [64,96], "f": 0, "t": 142, "d": [14,227], "a": 1 },
+ { "px": [800,64], "src": [64,96], "f": 0, "t": 142, "d": [14,262], "a": 1 },
+ { "px": [240,96], "src": [64,96], "f": 0, "t": 142, "d": [14,333], "a": 1 },
+ { "px": [800,160], "src": [64,96], "f": 0, "t": 142, "d": [14,580], "a": 1 },
+ { "px": [640,208], "src": [96,96], "f": 0, "t": 144, "d": [14,729], "a": 1 },
+ { "px": [704,208], "src": [96,96], "f": 0, "t": 144, "d": [14,733], "a": 1 },
+ { "px": [720,208], "src": [96,96], "f": 0, "t": 144, "d": [14,734], "a": 1 },
+ { "px": [736,208], "src": [64,96], "f": 0, "t": 142, "d": [14,735], "a": 1 },
+ { "px": [752,208], "src": [64,96], "f": 0, "t": 142, "d": [14,736], "a": 1 },
+ { "px": [800,208], "src": [96,96], "f": 0, "t": 144, "d": [14,739], "a": 1 },
+ { "px": [816,208], "src": [64,96], "f": 0, "t": 142, "d": [14,740], "a": 1 },
+ { "px": [656,224], "src": [96,96], "f": 0, "t": 144, "d": [14,783], "a": 1 },
+ { "px": [688,224], "src": [64,96], "f": 0, "t": 142, "d": [14,785], "a": 1 },
+ { "px": [720,224], "src": [64,96], "f": 0, "t": 142, "d": [14,787], "a": 1 },
+ { "px": [208,240], "src": [96,96], "f": 0, "t": 144, "d": [14,808], "a": 1 },
+ { "px": [176,272], "src": [96,96], "f": 0, "t": 144, "d": [14,912], "a": 1 },
+ { "px": [192,272], "src": [64,96], "f": 0, "t": 142, "d": [14,913], "a": 1 },
+ { "px": [208,288], "src": [64,96], "f": 0, "t": 142, "d": [14,967], "a": 1 },
+ { "px": [224,288], "src": [64,96], "f": 0, "t": 142, "d": [14,968], "a": 1 },
+ { "px": [160,304], "src": [64,96], "f": 0, "t": 142, "d": [14,1017], "a": 1 },
+ { "px": [272,304], "src": [96,96], "f": 0, "t": 144, "d": [14,1024], "a": 1 },
+ { "px": [160,320], "src": [96,96], "f": 0, "t": 144, "d": [14,1070], "a": 1 },
+ { "px": [224,320], "src": [64,96], "f": 0, "t": 142, "d": [14,1074], "a": 1 },
+ { "px": [272,320], "src": [96,96], "f": 0, "t": 144, "d": [14,1077], "a": 1 },
+ { "px": [144,0], "src": [0,32], "f": 0, "t": 46, "d": [16,9], "a": 1 },
+ { "px": [560,0], "src": [0,32], "f": 1, "t": 46, "d": [16,35], "a": 1 },
+ { "px": [784,0], "src": [0,32], "f": 0, "t": 46, "d": [16,49], "a": 1 },
+ { "px": [144,16], "src": [0,32], "f": 0, "t": 46, "d": [16,62], "a": 1 },
+ { "px": [560,16], "src": [0,32], "f": 1, "t": 46, "d": [16,88], "a": 1 },
+ { "px": [784,16], "src": [0,32], "f": 0, "t": 46, "d": [16,102], "a": 1 },
+ { "px": [144,32], "src": [0,32], "f": 0, "t": 46, "d": [16,115], "a": 1 },
+ { "px": [256,32], "src": [0,32], "f": 1, "t": 46, "d": [16,122], "a": 1 },
+ { "px": [784,32], "src": [0,32], "f": 0, "t": 46, "d": [16,155], "a": 1 },
+ { "px": [144,48], "src": [0,32], "f": 0, "t": 46, "d": [16,168], "a": 1 },
+ { "px": [256,48], "src": [0,32], "f": 1, "t": 46, "d": [16,175], "a": 1 },
+ { "px": [784,48], "src": [0,32], "f": 0, "t": 46, "d": [16,208], "a": 1 },
+ { "px": [256,64], "src": [0,32], "f": 1, "t": 46, "d": [16,228], "a": 1 },
+ { "px": [784,64], "src": [0,32], "f": 0, "t": 46, "d": [16,261], "a": 1 },
+ { "px": [176,80], "src": [0,32], "f": 0, "t": 46, "d": [16,276], "a": 1 },
+ { "px": [784,80], "src": [0,32], "f": 0, "t": 46, "d": [16,314], "a": 1 },
+ { "px": [176,96], "src": [0,32], "f": 0, "t": 46, "d": [16,329], "a": 1 },
+ { "px": [784,96], "src": [0,32], "f": 0, "t": 46, "d": [16,367], "a": 1 },
+ { "px": [176,112], "src": [0,32], "f": 0, "t": 46, "d": [16,382], "a": 1 },
+ { "px": [240,112], "src": [0,32], "f": 1, "t": 46, "d": [16,386], "a": 1 },
+ { "px": [784,112], "src": [0,32], "f": 0, "t": 46, "d": [16,420], "a": 1 },
+ { "px": [784,128], "src": [0,32], "f": 0, "t": 46, "d": [16,473], "a": 1 },
+ { "px": [784,144], "src": [0,32], "f": 0, "t": 46, "d": [16,526], "a": 1 },
+ { "px": [784,160], "src": [0,32], "f": 0, "t": 46, "d": [16,579], "a": 1 },
+ { "px": [352,176], "src": [0,32], "f": 0, "t": 46, "d": [16,605], "a": 1 },
+ { "px": [384,176], "src": [0,32], "f": 1, "t": 46, "d": [16,607], "a": 1 },
+ { "px": [416,176], "src": [0,32], "f": 0, "t": 46, "d": [16,609], "a": 1 },
+ { "px": [560,176], "src": [0,32], "f": 1, "t": 46, "d": [16,618], "a": 1 },
+ { "px": [784,176], "src": [0,32], "f": 0, "t": 46, "d": [16,632], "a": 1 },
+ { "px": [352,192], "src": [0,32], "f": 0, "t": 46, "d": [16,658], "a": 1 },
+ { "px": [384,192], "src": [0,32], "f": 1, "t": 46, "d": [16,660], "a": 1 },
+ { "px": [416,192], "src": [0,32], "f": 0, "t": 46, "d": [16,662], "a": 1 },
+ { "px": [560,192], "src": [0,32], "f": 0, "t": 46, "d": [16,671], "a": 1 },
+ { "px": [384,208], "src": [0,32], "f": 1, "t": 46, "d": [16,713], "a": 1 },
+ { "px": [416,208], "src": [0,32], "f": 0, "t": 46, "d": [16,715], "a": 1 },
+ { "px": [560,208], "src": [0,32], "f": 0, "t": 46, "d": [16,724], "a": 1 },
+ { "px": [176,224], "src": [0,32], "f": 0, "t": 46, "d": [16,753], "a": 1 },
+ { "px": [240,224], "src": [0,32], "f": 1, "t": 46, "d": [16,757], "a": 1 },
+ { "px": [560,224], "src": [0,32], "f": 0, "t": 46, "d": [16,777], "a": 1 },
+ { "px": [176,240], "src": [0,32], "f": 0, "t": 46, "d": [16,806], "a": 1 },
+ { "px": [240,240], "src": [0,32], "f": 1, "t": 46, "d": [16,810], "a": 1 },
+ { "px": [560,240], "src": [0,32], "f": 0, "t": 46, "d": [16,830], "a": 1 },
+ { "px": [176,256], "src": [0,32], "f": 0, "t": 46, "d": [16,859], "a": 1 },
+ { "px": [240,256], "src": [0,32], "f": 1, "t": 46, "d": [16,863], "a": 1 },
+ { "px": [560,256], "src": [0,32], "f": 0, "t": 46, "d": [16,883], "a": 1 },
+ { "px": [240,272], "src": [0,32], "f": 1, "t": 46, "d": [16,916], "a": 1 },
+ { "px": [560,272], "src": [0,32], "f": 0, "t": 46, "d": [16,936], "a": 1 },
+ { "px": [144,288], "src": [0,32], "f": 0, "t": 46, "d": [16,963], "a": 1 },
+ { "px": [560,288], "src": [0,32], "f": 0, "t": 46, "d": [16,989], "a": 1 },
+ { "px": [144,304], "src": [0,32], "f": 0, "t": 46, "d": [16,1016], "a": 1 },
+ { "px": [304,304], "src": [0,32], "f": 1, "t": 46, "d": [16,1026], "a": 1 },
+ { "px": [336,304], "src": [0,32], "f": 0, "t": 46, "d": [16,1028], "a": 1 },
+ { "px": [416,304], "src": [0,32], "f": 1, "t": 46, "d": [16,1033], "a": 1 },
+ { "px": [560,304], "src": [0,32], "f": 0, "t": 46, "d": [16,1042], "a": 1 },
+ { "px": [144,320], "src": [0,32], "f": 0, "t": 46, "d": [16,1069], "a": 1 },
+ { "px": [304,320], "src": [0,32], "f": 1, "t": 46, "d": [16,1079], "a": 1 },
+ { "px": [336,320], "src": [0,32], "f": 0, "t": 46, "d": [16,1081], "a": 1 },
+ { "px": [416,320], "src": [0,32], "f": 1, "t": 46, "d": [16,1086], "a": 1 },
+ { "px": [560,320], "src": [0,32], "f": 0, "t": 46, "d": [16,1095], "a": 1 },
+ { "px": [272,16], "src": [32,64], "f": 0, "t": 94, "d": [18,70], "a": 1 },
+ { "px": [288,16], "src": [32,64], "f": 0, "t": 94, "d": [18,71], "a": 1 },
+ { "px": [304,16], "src": [32,64], "f": 0, "t": 94, "d": [18,72], "a": 1 },
+ { "px": [496,16], "src": [32,64], "f": 0, "t": 94, "d": [18,84], "a": 1 },
+ { "px": [512,16], "src": [32,64], "f": 0, "t": 94, "d": [18,85], "a": 1 },
+ { "px": [336,32], "src": [32,64], "f": 0, "t": 94, "d": [18,127], "a": 1 },
+ { "px": [352,32], "src": [32,64], "f": 0, "t": 94, "d": [18,128], "a": 1 },
+ { "px": [464,32], "src": [32,64], "f": 0, "t": 94, "d": [18,135], "a": 1 },
+ { "px": [544,32], "src": [32,64], "f": 0, "t": 94, "d": [18,140], "a": 1 },
+ { "px": [384,48], "src": [32,64], "f": 0, "t": 94, "d": [18,183], "a": 1 },
+ { "px": [432,48], "src": [32,64], "f": 0, "t": 94, "d": [18,186], "a": 1 },
+ { "px": [160,64], "src": [32,64], "f": 0, "t": 94, "d": [18,222], "a": 1 },
+ { "px": [256,96], "src": [32,64], "f": 0, "t": 94, "d": [18,334], "a": 1 },
+ { "px": [192,128], "src": [32,64], "f": 0, "t": 94, "d": [18,436], "a": 1 },
+ { "px": [208,128], "src": [32,64], "f": 0, "t": 94, "d": [18,437], "a": 1 },
+ { "px": [224,128], "src": [32,64], "f": 0, "t": 94, "d": [18,438], "a": 1 },
+ { "px": [432,176], "src": [32,64], "f": 0, "t": 94, "d": [18,610], "a": 1 },
+ { "px": [448,176], "src": [32,64], "f": 0, "t": 94, "d": [18,611], "a": 1 },
+ { "px": [464,176], "src": [32,64], "f": 0, "t": 94, "d": [18,612], "a": 1 },
+ { "px": [480,176], "src": [32,64], "f": 0, "t": 94, "d": [18,613], "a": 1 },
+ { "px": [496,176], "src": [32,64], "f": 0, "t": 94, "d": [18,614], "a": 1 },
+ { "px": [512,176], "src": [32,64], "f": 0, "t": 94, "d": [18,615], "a": 1 },
+ { "px": [528,176], "src": [32,64], "f": 0, "t": 94, "d": [18,616], "a": 1 },
+ { "px": [544,176], "src": [32,64], "f": 0, "t": 94, "d": [18,617], "a": 1 },
+ { "px": [320,32], "src": [0,64], "f": 0, "t": 92, "d": [17,126], "a": 1 },
+ { "px": [480,32], "src": [0,64], "f": 1, "t": 92, "d": [17,136], "a": 1 },
+ { "px": [528,32], "src": [0,64], "f": 0, "t": 92, "d": [17,139], "a": 1 },
+ { "px": [560,32], "src": [0,64], "f": 1, "t": 92, "d": [17,141], "a": 1 },
+ { "px": [368,48], "src": [0,64], "f": 0, "t": 92, "d": [17,182], "a": 1 },
+ { "px": [448,48], "src": [0,64], "f": 1, "t": 92, "d": [17,187], "a": 1 },
+ { "px": [144,64], "src": [0,64], "f": 0, "t": 92, "d": [17,221], "a": 1 },
+ { "px": [400,64], "src": [0,64], "f": 0, "t": 92, "d": [17,237], "a": 1 },
+ { "px": [416,64], "src": [0,64], "f": 1, "t": 92, "d": [17,238], "a": 1 },
+ { "px": [272,96], "src": [0,64], "f": 1, "t": 92, "d": [17,335], "a": 1 },
+ { "px": [176,128], "src": [0,64], "f": 0, "t": 92, "d": [17,435], "a": 1 },
+ { "px": [240,128], "src": [0,64], "f": 1, "t": 92, "d": [17,439], "a": 1 },
+ { "px": [352,208], "src": [0,64], "f": 0, "t": 92, "d": [17,711], "a": 1 },
+ { "px": [368,224], "src": [0,64], "f": 0, "t": 92, "d": [17,765], "a": 1 },
+ { "px": [384,224], "src": [0,64], "f": 1, "t": 92, "d": [17,766], "a": 1 },
+ { "px": [416,224], "src": [0,64], "f": 0, "t": 92, "d": [17,768], "a": 1 },
+ { "px": [496,32], "src": [48,160], "f": 0, "t": 233, "d": [29,137], "a": 1 },
+ { "px": [512,32], "src": [64,144], "f": 1, "t": 211, "d": [29,138], "a": 1 },
+ { "px": [352,48], "src": [48,160], "f": 1, "t": 233, "d": [29,181], "a": 1 },
+ { "px": [464,48], "src": [48,160], "f": 0, "t": 233, "d": [29,188], "a": 1 },
+ { "px": [384,64], "src": [64,144], "f": 1, "t": 211, "d": [29,236], "a": 1 },
+ { "px": [432,64], "src": [48,160], "f": 0, "t": 233, "d": [29,239], "a": 1 },
+ { "px": [256,112], "src": [64,144], "f": 0, "t": 211, "d": [29,387], "a": 1 },
+ { "px": [352,224], "src": [64,144], "f": 1, "t": 211, "d": [29,764], "a": 1 },
+ { "px": [320,32], "src": [64,224], "f": 2, "t": 326, "d": [31,126], "a": 1 },
+ { "px": [480,32], "src": [64,224], "f": 3, "t": 326, "d": [31,136], "a": 1 },
+ { "px": [528,32], "src": [64,224], "f": 2, "t": 326, "d": [31,139], "a": 1 },
+ { "px": [560,32], "src": [64,224], "f": 3, "t": 326, "d": [31,141], "a": 1 },
+ { "px": [368,48], "src": [64,224], "f": 2, "t": 326, "d": [31,182], "a": 1 },
+ { "px": [448,48], "src": [64,224], "f": 3, "t": 326, "d": [31,187], "a": 1 },
+ { "px": [144,64], "src": [64,224], "f": 2, "t": 326, "d": [31,221], "a": 1 },
+ { "px": [400,64], "src": [64,224], "f": 2, "t": 326, "d": [31,237], "a": 1 },
+ { "px": [416,64], "src": [64,224], "f": 3, "t": 326, "d": [31,238], "a": 1 },
+ { "px": [272,96], "src": [64,224], "f": 3, "t": 326, "d": [31,335], "a": 1 },
+ { "px": [176,128], "src": [64,224], "f": 2, "t": 326, "d": [31,435], "a": 1 },
+ { "px": [240,128], "src": [64,224], "f": 3, "t": 326, "d": [31,439], "a": 1 },
+ { "px": [352,208], "src": [64,224], "f": 2, "t": 326, "d": [31,711], "a": 1 },
+ { "px": [368,224], "src": [64,224], "f": 2, "t": 326, "d": [31,765], "a": 1 },
+ { "px": [384,224], "src": [64,224], "f": 3, "t": 326, "d": [31,766], "a": 1 },
+ { "px": [416,224], "src": [64,224], "f": 2, "t": 326, "d": [31,768], "a": 1 },
+ { "px": [416,224], "src": [64,224], "f": 3, "t": 326, "d": [31,768], "a": 1 },
+ { "px": [256,16], "src": [64,144], "f": 3, "t": 211, "d": [32,69], "a": 1 },
+ { "px": [320,16], "src": [64,144], "f": 2, "t": 211, "d": [32,73], "a": 1 },
+ { "px": [480,16], "src": [64,144], "f": 3, "t": 211, "d": [32,83], "a": 1 },
+ { "px": [528,16], "src": [64,144], "f": 2, "t": 211, "d": [32,86], "a": 1 },
+ { "px": [368,32], "src": [64,144], "f": 2, "t": 211, "d": [32,129], "a": 1 },
+ { "px": [448,32], "src": [64,144], "f": 3, "t": 211, "d": [32,134], "a": 1 },
+ { "px": [400,48], "src": [64,144], "f": 2, "t": 211, "d": [32,184], "a": 1 },
+ { "px": [416,48], "src": [64,144], "f": 3, "t": 211, "d": [32,185], "a": 1 },
+ { "px": [176,64], "src": [64,144], "f": 2, "t": 211, "d": [32,223], "a": 1 },
+ { "px": [256,80], "src": [64,144], "f": 1, "t": 211, "d": [32,281], "a": 1 },
+ { "px": [240,96], "src": [64,144], "f": 3, "t": 211, "d": [32,333], "a": 1 },
+ { "px": [416,176], "src": [64,144], "f": 3, "t": 211, "d": [32,609], "a": 1 },
+ { "px": [560,176], "src": [64,144], "f": 2, "t": 211, "d": [32,618], "a": 1 },
+ { "px": [560,192], "src": [64,144], "f": 1, "t": 211, "d": [32,671], "a": 1 },
+ { "px": [784,192], "src": [64,144], "f": 0, "t": 211, "d": [32,685], "a": 1 },
+ { "px": [368,208], "src": [64,144], "f": 2, "t": 211, "d": [32,712], "a": 1 },
+ { "px": [176,272], "src": [64,144], "f": 0, "t": 211, "d": [32,912], "a": 1 },
+ { "px": [240,288], "src": [64,144], "f": 1, "t": 211, "d": [32,969], "a": 1 },
+ { "px": [272,80], "src": [32,0], "f": 0, "t": 2, "d": [12,282], "a": 1 },
+ { "px": [368,160], "src": [32,0], "f": 0, "t": 2, "d": [12,553], "a": 1 },
+ { "px": [384,160], "src": [32,0], "f": 0, "t": 2, "d": [12,554], "a": 1 },
+ { "px": [416,160], "src": [32,0], "f": 0, "t": 2, "d": [12,556], "a": 1 },
+ { "px": [432,160], "src": [32,0], "f": 0, "t": 2, "d": [12,557], "a": 1 },
+ { "px": [448,160], "src": [32,0], "f": 0, "t": 2, "d": [12,558], "a": 1 },
+ { "px": [464,160], "src": [32,0], "f": 0, "t": 2, "d": [12,559], "a": 1 },
+ { "px": [480,160], "src": [32,0], "f": 0, "t": 2, "d": [12,560], "a": 1 },
+ { "px": [496,160], "src": [32,0], "f": 0, "t": 2, "d": [12,561], "a": 1 },
+ { "px": [512,160], "src": [32,0], "f": 0, "t": 2, "d": [12,562], "a": 1 },
+ { "px": [528,160], "src": [32,0], "f": 0, "t": 2, "d": [12,563], "a": 1 },
+ { "px": [544,160], "src": [32,0], "f": 0, "t": 2, "d": [12,564], "a": 1 },
+ { "px": [560,160], "src": [32,0], "f": 0, "t": 2, "d": [12,565], "a": 1 },
+ { "px": [576,192], "src": [32,0], "f": 0, "t": 2, "d": [12,672], "a": 1 },
+ { "px": [592,192], "src": [32,0], "f": 0, "t": 2, "d": [12,673], "a": 1 },
+ { "px": [608,192], "src": [32,0], "f": 0, "t": 2, "d": [12,674], "a": 1 },
+ { "px": [624,192], "src": [32,0], "f": 0, "t": 2, "d": [12,675], "a": 1 },
+ { "px": [640,192], "src": [32,0], "f": 0, "t": 2, "d": [12,676], "a": 1 },
+ { "px": [656,192], "src": [32,0], "f": 0, "t": 2, "d": [12,677], "a": 1 },
+ { "px": [672,192], "src": [32,0], "f": 0, "t": 2, "d": [12,678], "a": 1 },
+ { "px": [688,192], "src": [32,0], "f": 0, "t": 2, "d": [12,679], "a": 1 },
+ { "px": [704,192], "src": [32,0], "f": 0, "t": 2, "d": [12,680], "a": 1 },
+ { "px": [720,192], "src": [32,0], "f": 0, "t": 2, "d": [12,681], "a": 1 },
+ { "px": [736,192], "src": [32,0], "f": 0, "t": 2, "d": [12,682], "a": 1 },
+ { "px": [752,192], "src": [32,0], "f": 0, "t": 2, "d": [12,683], "a": 1 },
+ { "px": [768,192], "src": [32,0], "f": 0, "t": 2, "d": [12,684], "a": 1 },
+ { "px": [176,208], "src": [32,0], "f": 0, "t": 2, "d": [12,700], "a": 1 },
+ { "px": [192,208], "src": [32,0], "f": 0, "t": 2, "d": [12,701], "a": 1 },
+ { "px": [208,208], "src": [32,0], "f": 0, "t": 2, "d": [12,702], "a": 1 },
+ { "px": [224,208], "src": [32,0], "f": 0, "t": 2, "d": [12,703], "a": 1 },
+ { "px": [240,208], "src": [32,0], "f": 0, "t": 2, "d": [12,704], "a": 1 },
+ { "px": [144,272], "src": [32,0], "f": 0, "t": 2, "d": [12,910], "a": 1 },
+ { "px": [160,272], "src": [32,0], "f": 0, "t": 2, "d": [12,911], "a": 1 },
+ { "px": [256,288], "src": [32,0], "f": 0, "t": 2, "d": [12,970], "a": 1 },
+ { "px": [272,288], "src": [32,0], "f": 0, "t": 2, "d": [12,971], "a": 1 },
+ { "px": [288,288], "src": [32,0], "f": 0, "t": 2, "d": [12,972], "a": 1 },
+ { "px": [304,288], "src": [32,0], "f": 0, "t": 2, "d": [12,973], "a": 1 },
+ { "px": [336,288], "src": [32,0], "f": 0, "t": 2, "d": [12,975], "a": 1 },
+ { "px": [352,288], "src": [32,0], "f": 0, "t": 2, "d": [12,976], "a": 1 },
+ { "px": [368,288], "src": [32,0], "f": 0, "t": 2, "d": [12,977], "a": 1 },
+ { "px": [384,288], "src": [32,0], "f": 0, "t": 2, "d": [12,978], "a": 1 },
+ { "px": [400,288], "src": [32,0], "f": 0, "t": 2, "d": [12,979], "a": 1 },
+ { "px": [416,288], "src": [32,0], "f": 0, "t": 2, "d": [12,980], "a": 1 },
+ { "px": [256,272], "src": [192,0], "f": 1, "t": 12, "d": [36,917], "a": 1 },
+ { "px": [592,0], "src": [256,128], "f": 0, "t": 200, "d": [58,37], "a": 1 },
+ { "px": [608,0], "src": [256,128], "f": 0, "t": 200, "d": [58,38], "a": 1 },
+ { "px": [624,0], "src": [256,128], "f": 0, "t": 200, "d": [58,39], "a": 1 },
+ { "px": [640,0], "src": [256,128], "f": 0, "t": 200, "d": [58,40], "a": 1 },
+ { "px": [656,0], "src": [256,128], "f": 0, "t": 200, "d": [58,41], "a": 1 },
+ { "px": [672,0], "src": [256,128], "f": 0, "t": 200, "d": [58,42], "a": 1 },
+ { "px": [736,0], "src": [256,128], "f": 0, "t": 200, "d": [58,46], "a": 1 },
+ { "px": [752,0], "src": [256,128], "f": 0, "t": 200, "d": [58,47], "a": 1 },
+ { "px": [592,16], "src": [256,128], "f": 0, "t": 200, "d": [58,90], "a": 1 },
+ { "px": [608,16], "src": [256,128], "f": 0, "t": 200, "d": [58,91], "a": 1 },
+ { "px": [624,16], "src": [256,128], "f": 0, "t": 200, "d": [58,92], "a": 1 },
+ { "px": [640,16], "src": [256,128], "f": 0, "t": 200, "d": [58,93], "a": 1 },
+ { "px": [656,16], "src": [256,128], "f": 0, "t": 200, "d": [58,94], "a": 1 },
+ { "px": [672,16], "src": [256,128], "f": 0, "t": 200, "d": [58,95], "a": 1 },
+ { "px": [736,16], "src": [256,128], "f": 0, "t": 200, "d": [58,99], "a": 1 },
+ { "px": [752,16], "src": [256,128], "f": 0, "t": 200, "d": [58,100], "a": 1 },
+ { "px": [592,32], "src": [256,128], "f": 0, "t": 200, "d": [58,143], "a": 1 },
+ { "px": [752,32], "src": [256,128], "f": 0, "t": 200, "d": [58,153], "a": 1 },
+ { "px": [288,48], "src": [256,128], "f": 0, "t": 200, "d": [58,177], "a": 1 },
+ { "px": [576,48], "src": [256,128], "f": 0, "t": 200, "d": [58,195], "a": 1 },
+ { "px": [592,48], "src": [256,128], "f": 0, "t": 200, "d": [58,196], "a": 1 },
+ { "px": [752,48], "src": [256,128], "f": 0, "t": 200, "d": [58,206], "a": 1 },
+ { "px": [752,64], "src": [256,128], "f": 0, "t": 200, "d": [58,259], "a": 1 },
+ { "px": [752,80], "src": [256,128], "f": 0, "t": 200, "d": [58,312], "a": 1 },
+ { "px": [752,96], "src": [256,128], "f": 0, "t": 200, "d": [58,365], "a": 1 },
+ { "px": [752,112], "src": [256,128], "f": 0, "t": 200, "d": [58,418], "a": 1 },
+ { "px": [752,128], "src": [256,128], "f": 0, "t": 200, "d": [58,471], "a": 1 },
+ { "px": [576,144], "src": [256,128], "f": 0, "t": 200, "d": [58,513], "a": 1 },
+ { "px": [592,144], "src": [256,128], "f": 0, "t": 200, "d": [58,514], "a": 1 },
+ { "px": [752,144], "src": [256,128], "f": 0, "t": 200, "d": [58,524], "a": 1 },
+ { "px": [592,160], "src": [256,128], "f": 0, "t": 200, "d": [58,567], "a": 1 },
+ { "px": [608,160], "src": [256,128], "f": 0, "t": 200, "d": [58,568], "a": 1 },
+ { "px": [624,160], "src": [256,128], "f": 0, "t": 200, "d": [58,569], "a": 1 },
+ { "px": [640,160], "src": [256,128], "f": 0, "t": 200, "d": [58,570], "a": 1 },
+ { "px": [656,160], "src": [256,128], "f": 0, "t": 200, "d": [58,571], "a": 1 },
+ { "px": [672,160], "src": [256,128], "f": 0, "t": 200, "d": [58,572], "a": 1 },
+ { "px": [688,160], "src": [256,128], "f": 0, "t": 200, "d": [58,573], "a": 1 },
+ { "px": [704,160], "src": [256,128], "f": 0, "t": 200, "d": [58,574], "a": 1 },
+ { "px": [720,160], "src": [256,128], "f": 0, "t": 200, "d": [58,575], "a": 1 },
+ { "px": [736,160], "src": [256,128], "f": 0, "t": 200, "d": [58,576], "a": 1 },
+ { "px": [752,160], "src": [256,128], "f": 0, "t": 200, "d": [58,577], "a": 1 },
+ { "px": [448,208], "src": [256,128], "f": 0, "t": 200, "d": [58,717], "a": 1 },
+ { "px": [464,208], "src": [256,128], "f": 0, "t": 200, "d": [58,718], "a": 1 },
+ { "px": [480,208], "src": [256,128], "f": 0, "t": 200, "d": [58,719], "a": 1 },
+ { "px": [496,208], "src": [256,128], "f": 0, "t": 200, "d": [58,720], "a": 1 },
+ { "px": [512,208], "src": [256,128], "f": 0, "t": 200, "d": [58,721], "a": 1 },
+ { "px": [528,208], "src": [256,128], "f": 0, "t": 200, "d": [58,722], "a": 1 },
+ { "px": [128,224], "src": [256,128], "f": 0, "t": 200, "d": [58,750], "a": 1 },
+ { "px": [144,224], "src": [256,128], "f": 0, "t": 200, "d": [58,751], "a": 1 },
+ { "px": [0,272], "src": [256,128], "f": 0, "t": 200, "d": [58,901], "a": 1 },
+ { "px": [16,272], "src": [256,128], "f": 0, "t": 200, "d": [58,902], "a": 1 },
+ { "px": [32,272], "src": [256,128], "f": 0, "t": 200, "d": [58,903], "a": 1 },
+ { "px": [48,272], "src": [256,128], "f": 0, "t": 200, "d": [58,904], "a": 1 },
+ { "px": [448,304], "src": [256,128], "f": 0, "t": 200, "d": [58,1035], "a": 1 },
+ { "px": [464,304], "src": [256,128], "f": 0, "t": 200, "d": [58,1036], "a": 1 },
+ { "px": [480,304], "src": [256,128], "f": 0, "t": 200, "d": [58,1037], "a": 1 },
+ { "px": [496,304], "src": [256,128], "f": 0, "t": 200, "d": [58,1038], "a": 1 },
+ { "px": [512,304], "src": [256,128], "f": 0, "t": 200, "d": [58,1039], "a": 1 },
+ { "px": [528,304], "src": [256,128], "f": 0, "t": 200, "d": [58,1040], "a": 1 },
+ { "px": [448,320], "src": [256,128], "f": 0, "t": 200, "d": [58,1088], "a": 1 },
+ { "px": [464,320], "src": [256,128], "f": 0, "t": 200, "d": [58,1089], "a": 1 },
+ { "px": [480,320], "src": [256,128], "f": 0, "t": 200, "d": [58,1090], "a": 1 },
+ { "px": [496,320], "src": [256,128], "f": 0, "t": 200, "d": [58,1091], "a": 1 },
+ { "px": [512,320], "src": [256,128], "f": 0, "t": 200, "d": [58,1092], "a": 1 },
+ { "px": [528,320], "src": [256,128], "f": 0, "t": 200, "d": [58,1093], "a": 1 },
+ { "px": [288,32], "src": [256,96], "f": 0, "t": 154, "d": [59,124], "a": 1 },
+ { "px": [624,32], "src": [256,96], "f": 2, "t": 154, "d": [59,145], "a": 1 },
+ { "px": [640,32], "src": [256,96], "f": 2, "t": 154, "d": [59,146], "a": 1 },
+ { "px": [656,32], "src": [256,96], "f": 2, "t": 154, "d": [59,147], "a": 1 },
+ { "px": [672,32], "src": [256,96], "f": 2, "t": 154, "d": [59,148], "a": 1 },
+ { "px": [560,48], "src": [256,96], "f": 0, "t": 154, "d": [59,194], "a": 1 },
+ { "px": [288,64], "src": [256,96], "f": 2, "t": 154, "d": [59,230], "a": 1 },
+ { "px": [560,64], "src": [256,96], "f": 2, "t": 154, "d": [59,247], "a": 1 },
+ { "px": [576,64], "src": [256,96], "f": 2, "t": 154, "d": [59,248], "a": 1 },
+ { "px": [592,64], "src": [256,96], "f": 2, "t": 154, "d": [59,249], "a": 1 },
+ { "px": [128,112], "src": [256,96], "f": 0, "t": 154, "d": [59,379], "a": 1 },
+ { "px": [128,128], "src": [256,96], "f": 2, "t": 154, "d": [59,432], "a": 1 },
+ { "px": [144,128], "src": [256,96], "f": 2, "t": 154, "d": [59,433], "a": 1 },
+ { "px": [560,128], "src": [256,96], "f": 0, "t": 154, "d": [59,459], "a": 1 },
+ { "px": [576,128], "src": [256,96], "f": 0, "t": 154, "d": [59,460], "a": 1 },
+ { "px": [592,128], "src": [256,96], "f": 0, "t": 154, "d": [59,461], "a": 1 },
+ { "px": [560,144], "src": [256,96], "f": 2, "t": 154, "d": [59,512], "a": 1 },
+ { "px": [624,144], "src": [256,96], "f": 0, "t": 154, "d": [59,516], "a": 1 },
+ { "px": [640,144], "src": [256,96], "f": 0, "t": 154, "d": [59,517], "a": 1 },
+ { "px": [656,144], "src": [256,96], "f": 0, "t": 154, "d": [59,518], "a": 1 },
+ { "px": [672,144], "src": [256,96], "f": 0, "t": 154, "d": [59,519], "a": 1 },
+ { "px": [688,144], "src": [256,96], "f": 0, "t": 154, "d": [59,520], "a": 1 },
+ { "px": [704,144], "src": [256,96], "f": 0, "t": 154, "d": [59,521], "a": 1 },
+ { "px": [720,144], "src": [256,96], "f": 0, "t": 154, "d": [59,522], "a": 1 },
+ { "px": [592,176], "src": [256,96], "f": 2, "t": 154, "d": [59,620], "a": 1 },
+ { "px": [608,176], "src": [256,96], "f": 2, "t": 154, "d": [59,621], "a": 1 },
+ { "px": [624,176], "src": [256,96], "f": 2, "t": 154, "d": [59,622], "a": 1 },
+ { "px": [640,176], "src": [256,96], "f": 2, "t": 154, "d": [59,623], "a": 1 },
+ { "px": [656,176], "src": [256,96], "f": 2, "t": 154, "d": [59,624], "a": 1 },
+ { "px": [672,176], "src": [256,96], "f": 2, "t": 154, "d": [59,625], "a": 1 },
+ { "px": [688,176], "src": [256,96], "f": 2, "t": 154, "d": [59,626], "a": 1 },
+ { "px": [704,176], "src": [256,96], "f": 2, "t": 154, "d": [59,627], "a": 1 },
+ { "px": [720,176], "src": [256,96], "f": 2, "t": 154, "d": [59,628], "a": 1 },
+ { "px": [736,176], "src": [256,96], "f": 2, "t": 154, "d": [59,629], "a": 1 },
+ { "px": [752,176], "src": [256,96], "f": 2, "t": 154, "d": [59,630], "a": 1 },
+ { "px": [448,192], "src": [256,96], "f": 0, "t": 154, "d": [59,664], "a": 1 },
+ { "px": [464,192], "src": [256,96], "f": 0, "t": 154, "d": [59,665], "a": 1 },
+ { "px": [480,192], "src": [256,96], "f": 0, "t": 154, "d": [59,666], "a": 1 },
+ { "px": [496,192], "src": [256,96], "f": 0, "t": 154, "d": [59,667], "a": 1 },
+ { "px": [512,192], "src": [256,96], "f": 0, "t": 154, "d": [59,668], "a": 1 },
+ { "px": [528,192], "src": [256,96], "f": 0, "t": 154, "d": [59,669], "a": 1 },
+ { "px": [128,208], "src": [256,96], "f": 0, "t": 154, "d": [59,697], "a": 1 },
+ { "px": [144,208], "src": [256,96], "f": 0, "t": 154, "d": [59,698], "a": 1 },
+ { "px": [464,224], "src": [256,96], "f": 2, "t": 154, "d": [59,771], "a": 1 },
+ { "px": [480,224], "src": [256,96], "f": 2, "t": 154, "d": [59,772], "a": 1 },
+ { "px": [496,224], "src": [256,96], "f": 2, "t": 154, "d": [59,773], "a": 1 },
+ { "px": [512,224], "src": [256,96], "f": 2, "t": 154, "d": [59,774], "a": 1 },
+ { "px": [128,240], "src": [256,96], "f": 2, "t": 154, "d": [59,803], "a": 1 },
+ { "px": [0,256], "src": [256,96], "f": 0, "t": 154, "d": [59,848], "a": 1 },
+ { "px": [16,256], "src": [256,96], "f": 0, "t": 154, "d": [59,849], "a": 1 },
+ { "px": [32,256], "src": [256,96], "f": 0, "t": 154, "d": [59,850], "a": 1 },
+ { "px": [48,256], "src": [256,96], "f": 0, "t": 154, "d": [59,851], "a": 1 },
+ { "px": [0,288], "src": [256,96], "f": 2, "t": 154, "d": [59,954], "a": 1 },
+ { "px": [16,288], "src": [256,96], "f": 2, "t": 154, "d": [59,955], "a": 1 },
+ { "px": [32,288], "src": [256,96], "f": 2, "t": 154, "d": [59,956], "a": 1 },
+ { "px": [48,288], "src": [256,96], "f": 2, "t": 154, "d": [59,957], "a": 1 },
+ { "px": [448,288], "src": [256,96], "f": 0, "t": 154, "d": [59,982], "a": 1 },
+ { "px": [464,288], "src": [256,96], "f": 0, "t": 154, "d": [59,983], "a": 1 },
+ { "px": [480,288], "src": [256,96], "f": 0, "t": 154, "d": [59,984], "a": 1 },
+ { "px": [496,288], "src": [256,96], "f": 0, "t": 154, "d": [59,985], "a": 1 },
+ { "px": [512,288], "src": [256,96], "f": 0, "t": 154, "d": [59,986], "a": 1 },
+ { "px": [576,0], "src": [224,128], "f": 0, "t": 198, "d": [61,36], "a": 1 },
+ { "px": [688,0], "src": [224,128], "f": 1, "t": 198, "d": [61,43], "a": 1 },
+ { "px": [720,0], "src": [224,128], "f": 0, "t": 198, "d": [61,45], "a": 1 },
+ { "px": [768,0], "src": [224,128], "f": 1, "t": 198, "d": [61,48], "a": 1 },
+ { "px": [576,16], "src": [224,128], "f": 0, "t": 198, "d": [61,89], "a": 1 },
+ { "px": [688,16], "src": [224,128], "f": 1, "t": 198, "d": [61,96], "a": 1 },
+ { "px": [720,16], "src": [224,128], "f": 0, "t": 198, "d": [61,98], "a": 1 },
+ { "px": [768,16], "src": [224,128], "f": 1, "t": 198, "d": [61,101], "a": 1 },
+ { "px": [576,32], "src": [224,128], "f": 0, "t": 198, "d": [61,142], "a": 1 },
+ { "px": [768,32], "src": [224,128], "f": 1, "t": 198, "d": [61,154], "a": 1 },
+ { "px": [272,48], "src": [224,128], "f": 0, "t": 198, "d": [61,176], "a": 1 },
+ { "px": [304,48], "src": [224,128], "f": 1, "t": 198, "d": [61,178], "a": 1 },
+ { "px": [608,48], "src": [224,128], "f": 1, "t": 198, "d": [61,197], "a": 1 },
+ { "px": [736,48], "src": [224,128], "f": 0, "t": 198, "d": [61,205], "a": 1 },
+ { "px": [768,48], "src": [224,128], "f": 1, "t": 198, "d": [61,207], "a": 1 },
+ { "px": [736,64], "src": [224,128], "f": 0, "t": 198, "d": [61,258], "a": 1 },
+ { "px": [768,64], "src": [224,128], "f": 1, "t": 198, "d": [61,260], "a": 1 },
+ { "px": [736,80], "src": [224,128], "f": 0, "t": 198, "d": [61,311], "a": 1 },
+ { "px": [768,80], "src": [224,128], "f": 1, "t": 198, "d": [61,313], "a": 1 },
+ { "px": [144,96], "src": [224,128], "f": 0, "t": 198, "d": [61,327], "a": 1 },
+ { "px": [160,96], "src": [224,128], "f": 1, "t": 198, "d": [61,328], "a": 1 },
+ { "px": [736,96], "src": [224,128], "f": 0, "t": 198, "d": [61,364], "a": 1 },
+ { "px": [768,96], "src": [224,128], "f": 1, "t": 198, "d": [61,366], "a": 1 },
+ { "px": [160,112], "src": [224,128], "f": 1, "t": 198, "d": [61,381], "a": 1 },
+ { "px": [736,112], "src": [224,128], "f": 0, "t": 198, "d": [61,417], "a": 1 },
+ { "px": [768,112], "src": [224,128], "f": 1, "t": 198, "d": [61,419], "a": 1 },
+ { "px": [736,128], "src": [224,128], "f": 0, "t": 198, "d": [61,470], "a": 1 },
+ { "px": [768,128], "src": [224,128], "f": 1, "t": 198, "d": [61,472], "a": 1 },
+ { "px": [768,144], "src": [224,128], "f": 1, "t": 198, "d": [61,525], "a": 1 },
+ { "px": [576,160], "src": [224,128], "f": 0, "t": 198, "d": [61,566], "a": 1 },
+ { "px": [768,160], "src": [224,128], "f": 1, "t": 198, "d": [61,578], "a": 1 },
+ { "px": [432,208], "src": [224,128], "f": 0, "t": 198, "d": [61,716], "a": 1 },
+ { "px": [544,208], "src": [224,128], "f": 1, "t": 198, "d": [61,723], "a": 1 },
+ { "px": [112,224], "src": [224,128], "f": 0, "t": 198, "d": [61,749], "a": 1 },
+ { "px": [160,224], "src": [224,128], "f": 1, "t": 198, "d": [61,752], "a": 1 },
+ { "px": [432,224], "src": [224,128], "f": 0, "t": 198, "d": [61,769], "a": 1 },
+ { "px": [544,224], "src": [224,128], "f": 1, "t": 198, "d": [61,776], "a": 1 },
+ { "px": [160,240], "src": [224,128], "f": 1, "t": 198, "d": [61,805], "a": 1 },
+ { "px": [528,240], "src": [224,128], "f": 0, "t": 198, "d": [61,828], "a": 1 },
+ { "px": [544,240], "src": [224,128], "f": 1, "t": 198, "d": [61,829], "a": 1 },
+ { "px": [528,256], "src": [224,128], "f": 0, "t": 198, "d": [61,881], "a": 1 },
+ { "px": [544,256], "src": [224,128], "f": 1, "t": 198, "d": [61,882], "a": 1 },
+ { "px": [64,272], "src": [224,128], "f": 1, "t": 198, "d": [61,905], "a": 1 },
+ { "px": [528,272], "src": [224,128], "f": 0, "t": 198, "d": [61,934], "a": 1 },
+ { "px": [544,272], "src": [224,128], "f": 1, "t": 198, "d": [61,935], "a": 1 },
+ { "px": [544,288], "src": [224,128], "f": 1, "t": 198, "d": [61,988], "a": 1 },
+ { "px": [432,304], "src": [224,128], "f": 0, "t": 198, "d": [61,1034], "a": 1 },
+ { "px": [544,304], "src": [224,128], "f": 1, "t": 198, "d": [61,1041], "a": 1 },
+ { "px": [432,320], "src": [224,128], "f": 0, "t": 198, "d": [61,1087], "a": 1 },
+ { "px": [544,320], "src": [224,128], "f": 1, "t": 198, "d": [61,1094], "a": 1 },
+ { "px": [272,32], "src": [224,96], "f": 0, "t": 152, "d": [60,123], "a": 1 },
+ { "px": [304,32], "src": [224,96], "f": 1, "t": 152, "d": [60,125], "a": 1 },
+ { "px": [688,32], "src": [224,96], "f": 3, "t": 152, "d": [60,149], "a": 1 },
+ { "px": [720,32], "src": [224,96], "f": 2, "t": 152, "d": [60,151], "a": 1 },
+ { "px": [544,48], "src": [224,96], "f": 0, "t": 152, "d": [60,193], "a": 1 },
+ { "px": [272,64], "src": [224,96], "f": 2, "t": 152, "d": [60,229], "a": 1 },
+ { "px": [304,64], "src": [224,96], "f": 3, "t": 152, "d": [60,231], "a": 1 },
+ { "px": [544,64], "src": [224,96], "f": 2, "t": 152, "d": [60,246], "a": 1 },
+ { "px": [608,64], "src": [224,96], "f": 3, "t": 152, "d": [60,250], "a": 1 },
+ { "px": [144,80], "src": [224,96], "f": 0, "t": 152, "d": [60,274], "a": 1 },
+ { "px": [160,80], "src": [224,96], "f": 1, "t": 152, "d": [60,275], "a": 1 },
+ { "px": [112,112], "src": [224,96], "f": 0, "t": 152, "d": [60,378], "a": 1 },
+ { "px": [112,128], "src": [224,96], "f": 2, "t": 152, "d": [60,431], "a": 1 },
+ { "px": [160,128], "src": [224,96], "f": 3, "t": 152, "d": [60,434], "a": 1 },
+ { "px": [544,128], "src": [224,96], "f": 0, "t": 152, "d": [60,458], "a": 1 },
+ { "px": [608,128], "src": [224,96], "f": 1, "t": 152, "d": [60,462], "a": 1 },
+ { "px": [544,144], "src": [224,96], "f": 2, "t": 152, "d": [60,511], "a": 1 },
+ { "px": [576,176], "src": [224,96], "f": 2, "t": 152, "d": [60,619], "a": 1 },
+ { "px": [768,176], "src": [224,96], "f": 3, "t": 152, "d": [60,631], "a": 1 },
+ { "px": [432,192], "src": [224,96], "f": 0, "t": 152, "d": [60,663], "a": 1 },
+ { "px": [544,192], "src": [224,96], "f": 1, "t": 152, "d": [60,670], "a": 1 },
+ { "px": [112,208], "src": [224,96], "f": 0, "t": 152, "d": [60,696], "a": 1 },
+ { "px": [160,208], "src": [224,96], "f": 1, "t": 152, "d": [60,699], "a": 1 },
+ { "px": [112,240], "src": [224,96], "f": 2, "t": 152, "d": [60,802], "a": 1 },
+ { "px": [432,240], "src": [224,96], "f": 2, "t": 152, "d": [60,822], "a": 1 },
+ { "px": [448,240], "src": [224,96], "f": 3, "t": 152, "d": [60,823], "a": 1 },
+ { "px": [64,256], "src": [224,96], "f": 1, "t": 152, "d": [60,852], "a": 1 },
+ { "px": [144,256], "src": [224,96], "f": 2, "t": 152, "d": [60,857], "a": 1 },
+ { "px": [160,256], "src": [224,96], "f": 3, "t": 152, "d": [60,858], "a": 1 },
+ { "px": [64,288], "src": [224,96], "f": 3, "t": 152, "d": [60,958], "a": 1 },
+ { "px": [432,288], "src": [224,96], "f": 0, "t": 152, "d": [60,981], "a": 1 },
+ { "px": [576,48], "src": [64,144], "f": 0, "t": 211, "d": [62,195], "a": 1 },
+ { "px": [576,144], "src": [64,144], "f": 2, "t": 211, "d": [62,513], "a": 1 },
+ { "px": [608,32], "src": [0,304], "f": 3, "t": 437, "d": [69,144], "a": 1 },
+ { "px": [736,32], "src": [0,304], "f": 2, "t": 437, "d": [69,152], "a": 1 },
+ { "px": [144,112], "src": [0,304], "f": 0, "t": 437, "d": [69,380], "a": 1 },
+ { "px": [608,144], "src": [0,304], "f": 1, "t": 437, "d": [69,515], "a": 1 },
+ { "px": [736,144], "src": [0,304], "f": 0, "t": 437, "d": [69,523], "a": 1 },
+ { "px": [448,224], "src": [0,304], "f": 3, "t": 437, "d": [69,770], "a": 1 },
+ { "px": [528,224], "src": [0,304], "f": 2, "t": 437, "d": [69,775], "a": 1 },
+ { "px": [144,240], "src": [0,304], "f": 2, "t": 437, "d": [69,804], "a": 1 },
+ { "px": [528,288], "src": [0,304], "f": 0, "t": 437, "d": [69,987], "a": 1 },
+ { "px": [304,144], "src": [32,96], "f": 0, "t": 140, "d": [21,496], "a": 1 },
+ { "px": [368,144], "src": [32,96], "f": 0, "t": 140, "d": [21,500], "a": 1 },
+ { "px": [496,144], "src": [32,96], "f": 0, "t": 140, "d": [21,508], "a": 1 },
+ { "px": [288,96], "src": [128,96], "f": 0, "t": 146, "d": [22,336], "a": 1 },
+ { "px": [256,128], "src": [128,96], "f": 0, "t": 146, "d": [22,440], "a": 1 },
+ { "px": [336,192], "src": [128,96], "f": 1, "t": 146, "d": [22,657], "a": 1 },
+ { "px": [256,208], "src": [128,96], "f": 0, "t": 146, "d": [22,705], "a": 1 },
+ { "px": [336,48], "src": [128,224], "f": 0, "t": 330, "d": [35,180], "a": 1 },
+ { "px": [480,48], "src": [160,208], "f": 0, "t": 309, "d": [35,189], "a": 1 },
+ { "px": [272,112], "src": [128,224], "f": 0, "t": 330, "d": [35,388], "a": 1 },
+ { "px": [208,144], "src": [128,224], "f": 0, "t": 330, "d": [35,490], "a": 1 },
+ { "px": [304,160], "src": [112,64], "f": 0, "t": 99, "d": [44,549], "a": 1 },
+ { "px": [320,160], "src": [112,64], "f": 0, "t": 99, "d": [44,550], "a": 1 },
+ { "px": [336,160], "src": [112,64], "f": 0, "t": 99, "d": [44,551], "a": 1 },
+ { "px": [352,160], "src": [96,32], "f": 1, "t": 52, "d": [45,552], "a": 1 },
+ { "px": [336,160], "src": [0,144], "f": 0, "t": 207, "d": [85,551], "a": 1 },
+ { "px": [704,0], "src": [96,144], "f": 0, "t": 213, "d": [41,44], "a": 1 },
+ { "px": [704,16], "src": [96,144], "f": 0, "t": 213, "d": [41,97], "a": 1 },
+ { "px": [704,32], "src": [96,144], "f": 0, "t": 213, "d": [41,150], "a": 1 },
+ { "px": [704,48], "src": [96,144], "f": 0, "t": 213, "d": [41,203], "a": 1 },
+ { "px": [704,64], "src": [96,144], "f": 0, "t": 213, "d": [41,256], "a": 1 },
+ { "px": [704,80], "src": [96,144], "f": 0, "t": 213, "d": [41,309], "a": 1 },
+ { "px": [704,96], "src": [96,144], "f": 0, "t": 213, "d": [41,362], "a": 1 },
+ { "px": [704,112], "src": [96,144], "f": 0, "t": 213, "d": [41,415], "a": 1 },
+ { "px": [704,128], "src": [96,144], "f": 0, "t": 213, "d": [41,468], "a": 1 },
+ { "px": [400,144], "src": [96,144], "f": 0, "t": 213, "d": [41,502], "a": 1 },
+ { "px": [400,160], "src": [96,144], "f": 0, "t": 213, "d": [41,555], "a": 1 },
+ { "px": [400,176], "src": [96,144], "f": 0, "t": 213, "d": [41,608], "a": 1 },
+ { "px": [400,192], "src": [96,144], "f": 0, "t": 213, "d": [41,661], "a": 1 },
+ { "px": [400,208], "src": [96,144], "f": 0, "t": 213, "d": [41,714], "a": 1 },
+ { "px": [400,224], "src": [96,144], "f": 0, "t": 213, "d": [41,767], "a": 1 },
+ { "px": [400,240], "src": [96,144], "f": 0, "t": 213, "d": [41,820], "a": 1 },
+ { "px": [400,256], "src": [96,144], "f": 0, "t": 213, "d": [41,873], "a": 1 },
+ { "px": [320,272], "src": [96,144], "f": 0, "t": 213, "d": [41,921], "a": 1 },
+ { "px": [400,272], "src": [96,144], "f": 0, "t": 213, "d": [41,926], "a": 1 },
+ { "px": [320,288], "src": [96,144], "f": 0, "t": 213, "d": [41,974], "a": 1 },
+ { "px": [320,304], "src": [96,144], "f": 0, "t": 213, "d": [41,1027], "a": 1 },
+ { "px": [320,320], "src": [96,144], "f": 0, "t": 213, "d": [41,1080], "a": 1 },
+ { "px": [192,0], "src": [32,32], "f": 0, "t": 48, "d": [102,12], "a": 1 },
+ { "px": [208,0], "src": [32,32], "f": 0, "t": 48, "d": [102,13], "a": 1 },
+ { "px": [400,0], "src": [32,32], "f": 0, "t": 48, "d": [102,25], "a": 1 },
+ { "px": [416,0], "src": [32,32], "f": 0, "t": 48, "d": [102,26], "a": 1 },
+ { "px": [832,0], "src": [32,32], "f": 0, "t": 48, "d": [102,52], "a": 1 },
+ { "px": [192,16], "src": [32,32], "f": 0, "t": 48, "d": [102,65], "a": 1 },
+ { "px": [208,16], "src": [32,32], "f": 0, "t": 48, "d": [102,66], "a": 1 },
+ { "px": [832,16], "src": [32,32], "f": 0, "t": 48, "d": [102,105], "a": 1 },
+ { "px": [208,32], "src": [32,32], "f": 0, "t": 48, "d": [102,119], "a": 1 },
+ { "px": [832,32], "src": [32,32], "f": 0, "t": 48, "d": [102,158], "a": 1 },
+ { "px": [832,48], "src": [32,32], "f": 0, "t": 48, "d": [102,211], "a": 1 },
+ { "px": [832,64], "src": [32,32], "f": 0, "t": 48, "d": [102,264], "a": 1 },
+ { "px": [832,80], "src": [32,32], "f": 0, "t": 48, "d": [102,317], "a": 1 },
+ { "px": [832,96], "src": [32,32], "f": 0, "t": 48, "d": [102,370], "a": 1 },
+ { "px": [832,112], "src": [32,32], "f": 0, "t": 48, "d": [102,423], "a": 1 },
+ { "px": [832,128], "src": [32,32], "f": 0, "t": 48, "d": [102,476], "a": 1 },
+ { "px": [832,144], "src": [32,32], "f": 0, "t": 48, "d": [102,529], "a": 1 },
+ { "px": [832,160], "src": [32,32], "f": 0, "t": 48, "d": [102,582], "a": 1 },
+ { "px": [832,176], "src": [32,32], "f": 0, "t": 48, "d": [102,635], "a": 1 },
+ { "px": [832,192], "src": [32,32], "f": 0, "t": 48, "d": [102,688], "a": 1 },
+ { "px": [832,208], "src": [32,32], "f": 0, "t": 48, "d": [102,741], "a": 1 },
+ { "px": [816,224], "src": [32,32], "f": 0, "t": 48, "d": [102,793], "a": 1 },
+ { "px": [832,224], "src": [32,32], "f": 0, "t": 48, "d": [102,794], "a": 1 },
+ { "px": [608,240], "src": [32,32], "f": 0, "t": 48, "d": [102,833], "a": 1 },
+ { "px": [624,240], "src": [32,32], "f": 0, "t": 48, "d": [102,834], "a": 1 },
+ { "px": [640,240], "src": [32,32], "f": 0, "t": 48, "d": [102,835], "a": 1 },
+ { "px": [656,240], "src": [32,32], "f": 0, "t": 48, "d": [102,836], "a": 1 },
+ { "px": [672,240], "src": [32,32], "f": 0, "t": 48, "d": [102,837], "a": 1 },
+ { "px": [688,240], "src": [32,32], "f": 0, "t": 48, "d": [102,838], "a": 1 },
+ { "px": [704,240], "src": [32,32], "f": 0, "t": 48, "d": [102,839], "a": 1 },
+ { "px": [720,240], "src": [32,32], "f": 0, "t": 48, "d": [102,840], "a": 1 },
+ { "px": [736,240], "src": [32,32], "f": 0, "t": 48, "d": [102,841], "a": 1 },
+ { "px": [752,240], "src": [32,32], "f": 0, "t": 48, "d": [102,842], "a": 1 },
+ { "px": [768,240], "src": [32,32], "f": 0, "t": 48, "d": [102,843], "a": 1 },
+ { "px": [784,240], "src": [32,32], "f": 0, "t": 48, "d": [102,844], "a": 1 },
+ { "px": [800,240], "src": [32,32], "f": 0, "t": 48, "d": [102,845], "a": 1 },
+ { "px": [816,240], "src": [32,32], "f": 0, "t": 48, "d": [102,846], "a": 1 },
+ { "px": [832,240], "src": [32,32], "f": 0, "t": 48, "d": [102,847], "a": 1 },
+ { "px": [608,256], "src": [32,32], "f": 0, "t": 48, "d": [102,886], "a": 1 },
+ { "px": [624,256], "src": [32,32], "f": 0, "t": 48, "d": [102,887], "a": 1 },
+ { "px": [640,256], "src": [32,32], "f": 0, "t": 48, "d": [102,888], "a": 1 },
+ { "px": [656,256], "src": [32,32], "f": 0, "t": 48, "d": [102,889], "a": 1 },
+ { "px": [672,256], "src": [32,32], "f": 0, "t": 48, "d": [102,890], "a": 1 },
+ { "px": [688,256], "src": [32,32], "f": 0, "t": 48, "d": [102,891], "a": 1 },
+ { "px": [704,256], "src": [32,32], "f": 0, "t": 48, "d": [102,892], "a": 1 },
+ { "px": [720,256], "src": [32,32], "f": 0, "t": 48, "d": [102,893], "a": 1 },
+ { "px": [736,256], "src": [32,32], "f": 0, "t": 48, "d": [102,894], "a": 1 },
+ { "px": [752,256], "src": [32,32], "f": 0, "t": 48, "d": [102,895], "a": 1 },
+ { "px": [768,256], "src": [32,32], "f": 0, "t": 48, "d": [102,896], "a": 1 },
+ { "px": [784,256], "src": [32,32], "f": 0, "t": 48, "d": [102,897], "a": 1 },
+ { "px": [800,256], "src": [32,32], "f": 0, "t": 48, "d": [102,898], "a": 1 },
+ { "px": [816,256], "src": [32,32], "f": 0, "t": 48, "d": [102,899], "a": 1 },
+ { "px": [832,256], "src": [32,32], "f": 0, "t": 48, "d": [102,900], "a": 1 },
+ { "px": [608,272], "src": [32,32], "f": 0, "t": 48, "d": [102,939], "a": 1 },
+ { "px": [624,272], "src": [32,32], "f": 0, "t": 48, "d": [102,940], "a": 1 },
+ { "px": [640,272], "src": [32,32], "f": 0, "t": 48, "d": [102,941], "a": 1 },
+ { "px": [656,272], "src": [32,32], "f": 0, "t": 48, "d": [102,942], "a": 1 },
+ { "px": [672,272], "src": [32,32], "f": 0, "t": 48, "d": [102,943], "a": 1 },
+ { "px": [688,272], "src": [32,32], "f": 0, "t": 48, "d": [102,944], "a": 1 },
+ { "px": [704,272], "src": [32,32], "f": 0, "t": 48, "d": [102,945], "a": 1 },
+ { "px": [720,272], "src": [32,32], "f": 0, "t": 48, "d": [102,946], "a": 1 },
+ { "px": [736,272], "src": [32,32], "f": 0, "t": 48, "d": [102,947], "a": 1 },
+ { "px": [752,272], "src": [32,32], "f": 0, "t": 48, "d": [102,948], "a": 1 },
+ { "px": [768,272], "src": [32,32], "f": 0, "t": 48, "d": [102,949], "a": 1 },
+ { "px": [784,272], "src": [32,32], "f": 0, "t": 48, "d": [102,950], "a": 1 },
+ { "px": [800,272], "src": [32,32], "f": 0, "t": 48, "d": [102,951], "a": 1 },
+ { "px": [816,272], "src": [32,32], "f": 0, "t": 48, "d": [102,952], "a": 1 },
+ { "px": [832,272], "src": [32,32], "f": 0, "t": 48, "d": [102,953], "a": 1 },
+ { "px": [608,288], "src": [32,32], "f": 0, "t": 48, "d": [102,992], "a": 1 },
+ { "px": [624,288], "src": [32,32], "f": 0, "t": 48, "d": [102,993], "a": 1 },
+ { "px": [640,288], "src": [32,32], "f": 0, "t": 48, "d": [102,994], "a": 1 },
+ { "px": [656,288], "src": [32,32], "f": 0, "t": 48, "d": [102,995], "a": 1 },
+ { "px": [672,288], "src": [32,32], "f": 0, "t": 48, "d": [102,996], "a": 1 },
+ { "px": [688,288], "src": [32,32], "f": 0, "t": 48, "d": [102,997], "a": 1 },
+ { "px": [704,288], "src": [32,32], "f": 0, "t": 48, "d": [102,998], "a": 1 },
+ { "px": [720,288], "src": [32,32], "f": 0, "t": 48, "d": [102,999], "a": 1 },
+ { "px": [736,288], "src": [32,32], "f": 0, "t": 48, "d": [102,1000], "a": 1 },
+ { "px": [752,288], "src": [32,32], "f": 0, "t": 48, "d": [102,1001], "a": 1 },
+ { "px": [768,288], "src": [32,32], "f": 0, "t": 48, "d": [102,1002], "a": 1 },
+ { "px": [784,288], "src": [32,32], "f": 0, "t": 48, "d": [102,1003], "a": 1 },
+ { "px": [800,288], "src": [32,32], "f": 0, "t": 48, "d": [102,1004], "a": 1 },
+ { "px": [816,288], "src": [32,32], "f": 0, "t": 48, "d": [102,1005], "a": 1 },
+ { "px": [832,288], "src": [32,32], "f": 0, "t": 48, "d": [102,1006], "a": 1 },
+ { "px": [608,304], "src": [32,32], "f": 0, "t": 48, "d": [102,1045], "a": 1 },
+ { "px": [624,304], "src": [32,32], "f": 0, "t": 48, "d": [102,1046], "a": 1 },
+ { "px": [640,304], "src": [32,32], "f": 0, "t": 48, "d": [102,1047], "a": 1 },
+ { "px": [656,304], "src": [32,32], "f": 0, "t": 48, "d": [102,1048], "a": 1 },
+ { "px": [672,304], "src": [32,32], "f": 0, "t": 48, "d": [102,1049], "a": 1 },
+ { "px": [688,304], "src": [32,32], "f": 0, "t": 48, "d": [102,1050], "a": 1 },
+ { "px": [704,304], "src": [32,32], "f": 0, "t": 48, "d": [102,1051], "a": 1 },
+ { "px": [720,304], "src": [32,32], "f": 0, "t": 48, "d": [102,1052], "a": 1 },
+ { "px": [736,304], "src": [32,32], "f": 0, "t": 48, "d": [102,1053], "a": 1 },
+ { "px": [752,304], "src": [32,32], "f": 0, "t": 48, "d": [102,1054], "a": 1 },
+ { "px": [768,304], "src": [32,32], "f": 0, "t": 48, "d": [102,1055], "a": 1 },
+ { "px": [784,304], "src": [32,32], "f": 0, "t": 48, "d": [102,1056], "a": 1 },
+ { "px": [800,304], "src": [32,32], "f": 0, "t": 48, "d": [102,1057], "a": 1 },
+ { "px": [816,304], "src": [32,32], "f": 0, "t": 48, "d": [102,1058], "a": 1 },
+ { "px": [832,304], "src": [32,32], "f": 0, "t": 48, "d": [102,1059], "a": 1 },
+ { "px": [192,320], "src": [32,32], "f": 0, "t": 48, "d": [102,1072], "a": 1 },
+ { "px": [208,320], "src": [32,32], "f": 0, "t": 48, "d": [102,1073], "a": 1 },
+ { "px": [608,320], "src": [32,32], "f": 0, "t": 48, "d": [102,1098], "a": 1 },
+ { "px": [624,320], "src": [32,32], "f": 0, "t": 48, "d": [102,1099], "a": 1 },
+ { "px": [640,320], "src": [32,32], "f": 0, "t": 48, "d": [102,1100], "a": 1 },
+ { "px": [656,320], "src": [32,32], "f": 0, "t": 48, "d": [102,1101], "a": 1 },
+ { "px": [672,320], "src": [32,32], "f": 0, "t": 48, "d": [102,1102], "a": 1 },
+ { "px": [688,320], "src": [32,32], "f": 0, "t": 48, "d": [102,1103], "a": 1 },
+ { "px": [704,320], "src": [32,32], "f": 0, "t": 48, "d": [102,1104], "a": 1 },
+ { "px": [720,320], "src": [32,32], "f": 0, "t": 48, "d": [102,1105], "a": 1 },
+ { "px": [736,320], "src": [32,32], "f": 0, "t": 48, "d": [102,1106], "a": 1 },
+ { "px": [752,320], "src": [32,32], "f": 0, "t": 48, "d": [102,1107], "a": 1 },
+ { "px": [768,320], "src": [32,32], "f": 0, "t": 48, "d": [102,1108], "a": 1 },
+ { "px": [784,320], "src": [32,32], "f": 0, "t": 48, "d": [102,1109], "a": 1 },
+ { "px": [800,320], "src": [32,32], "f": 0, "t": 48, "d": [102,1110], "a": 1 },
+ { "px": [816,320], "src": [32,32], "f": 0, "t": 48, "d": [102,1111], "a": 1 },
+ { "px": [832,320], "src": [32,32], "f": 0, "t": 48, "d": [102,1112], "a": 1 }
+ ],
+ "seed": 3588358,
+ "overrideTilesetUid": null,
+ "gridTiles": [],
+ "entityInstances": []
+ },
+ {
+ "__identifier": "Bg_textures",
+ "__type": "AutoLayer",
+ "__cWid": 53,
+ "__cHei": 21,
+ "__gridSize": 16,
+ "__opacity": 1,
+ "__pxTotalOffsetX": 0,
+ "__pxTotalOffsetY": 0,
+ "__tilesetDefUid": 2,
+ "__tilesetRelPath": "atlas/SunnyLand_by_Ansimuz-extended.png",
+ "iid": "a315fa30-66b0-11ec-9cd7-37e57434aa29",
+ "levelId": 0,
+ "layerDefUid": 24,
+ "pxOffsetX": 0,
+ "pxOffsetY": 0,
+ "visible": true,
+ "optionalRules": [],
+ "intGridCsv": [],
+ "autoLayerTiles": [
+ { "px": [0,0], "src": [320,272], "f": 0, "t": 411, "d": [26,0], "a": 1 },
+ { "px": [16,0], "src": [320,272], "f": 0, "t": 411, "d": [26,1], "a": 1 },
+ { "px": [32,0], "src": [320,272], "f": 0, "t": 411, "d": [26,2], "a": 1 },
+ { "px": [48,0], "src": [320,272], "f": 0, "t": 411, "d": [26,3], "a": 1 },
+ { "px": [64,0], "src": [320,272], "f": 0, "t": 411, "d": [26,4], "a": 1 },
+ { "px": [80,0], "src": [320,272], "f": 0, "t": 411, "d": [26,5], "a": 1 },
+ { "px": [96,0], "src": [320,272], "f": 0, "t": 411, "d": [26,6], "a": 1 },
+ { "px": [112,0], "src": [320,272], "f": 0, "t": 411, "d": [26,7], "a": 1 },
+ { "px": [0,16], "src": [320,272], "f": 0, "t": 411, "d": [26,53], "a": 1 },
+ { "px": [16,16], "src": [320,272], "f": 0, "t": 411, "d": [26,54], "a": 1 },
+ { "px": [32,16], "src": [320,272], "f": 0, "t": 411, "d": [26,55], "a": 1 },
+ { "px": [48,16], "src": [320,272], "f": 0, "t": 411, "d": [26,56], "a": 1 },
+ { "px": [64,16], "src": [320,272], "f": 0, "t": 411, "d": [26,57], "a": 1 },
+ { "px": [80,16], "src": [320,272], "f": 0, "t": 411, "d": [26,58], "a": 1 },
+ { "px": [96,16], "src": [320,272], "f": 0, "t": 411, "d": [26,59], "a": 1 },
+ { "px": [112,16], "src": [320,272], "f": 0, "t": 411, "d": [26,60], "a": 1 },
+ { "px": [0,32], "src": [320,272], "f": 0, "t": 411, "d": [26,106], "a": 1 },
+ { "px": [16,32], "src": [320,272], "f": 0, "t": 411, "d": [26,107], "a": 1 },
+ { "px": [48,32], "src": [320,272], "f": 0, "t": 411, "d": [26,109], "a": 1 },
+ { "px": [64,32], "src": [320,272], "f": 0, "t": 411, "d": [26,110], "a": 1 },
+ { "px": [80,32], "src": [320,272], "f": 0, "t": 411, "d": [26,111], "a": 1 },
+ { "px": [96,32], "src": [320,272], "f": 0, "t": 411, "d": [26,112], "a": 1 },
+ { "px": [112,32], "src": [320,272], "f": 0, "t": 411, "d": [26,113], "a": 1 },
+ { "px": [0,48], "src": [320,272], "f": 0, "t": 411, "d": [26,159], "a": 1 },
+ { "px": [16,48], "src": [320,272], "f": 0, "t": 411, "d": [26,160], "a": 1 },
+ { "px": [32,48], "src": [320,272], "f": 0, "t": 411, "d": [26,161], "a": 1 },
+ { "px": [48,48], "src": [320,272], "f": 0, "t": 411, "d": [26,162], "a": 1 },
+ { "px": [64,48], "src": [320,272], "f": 0, "t": 411, "d": [26,163], "a": 1 },
+ { "px": [80,48], "src": [320,272], "f": 0, "t": 411, "d": [26,164], "a": 1 },
+ { "px": [96,48], "src": [320,272], "f": 0, "t": 411, "d": [26,165], "a": 1 },
+ { "px": [112,48], "src": [320,272], "f": 0, "t": 411, "d": [26,166], "a": 1 },
+ { "px": [480,48], "src": [320,272], "f": 0, "t": 411, "d": [26,189], "a": 1 },
+ { "px": [496,48], "src": [320,272], "f": 0, "t": 411, "d": [26,190], "a": 1 },
+ { "px": [512,48], "src": [320,272], "f": 0, "t": 411, "d": [26,191], "a": 1 },
+ { "px": [0,64], "src": [320,272], "f": 0, "t": 411, "d": [26,212], "a": 1 },
+ { "px": [16,64], "src": [320,272], "f": 0, "t": 411, "d": [26,213], "a": 1 },
+ { "px": [32,64], "src": [320,272], "f": 0, "t": 411, "d": [26,214], "a": 1 },
+ { "px": [48,64], "src": [320,272], "f": 0, "t": 411, "d": [26,215], "a": 1 },
+ { "px": [64,64], "src": [320,272], "f": 0, "t": 411, "d": [26,216], "a": 1 },
+ { "px": [80,64], "src": [320,272], "f": 0, "t": 411, "d": [26,217], "a": 1 },
+ { "px": [96,64], "src": [320,272], "f": 0, "t": 411, "d": [26,218], "a": 1 },
+ { "px": [112,64], "src": [320,272], "f": 0, "t": 411, "d": [26,219], "a": 1 },
+ { "px": [336,64], "src": [320,272], "f": 0, "t": 411, "d": [26,233], "a": 1 },
+ { "px": [352,64], "src": [320,272], "f": 0, "t": 411, "d": [26,234], "a": 1 },
+ { "px": [368,64], "src": [320,272], "f": 0, "t": 411, "d": [26,235], "a": 1 },
+ { "px": [448,64], "src": [320,272], "f": 0, "t": 411, "d": [26,240], "a": 1 },
+ { "px": [464,64], "src": [320,272], "f": 0, "t": 411, "d": [26,241], "a": 1 },
+ { "px": [480,64], "src": [320,272], "f": 0, "t": 411, "d": [26,242], "a": 1 },
+ { "px": [496,64], "src": [320,272], "f": 0, "t": 411, "d": [26,243], "a": 1 },
+ { "px": [512,64], "src": [320,272], "f": 0, "t": 411, "d": [26,244], "a": 1 },
+ { "px": [640,64], "src": [320,272], "f": 0, "t": 411, "d": [26,252], "a": 1 },
+ { "px": [656,64], "src": [320,272], "f": 0, "t": 411, "d": [26,253], "a": 1 },
+ { "px": [672,64], "src": [320,272], "f": 0, "t": 411, "d": [26,254], "a": 1 },
+ { "px": [0,80], "src": [320,272], "f": 0, "t": 411, "d": [26,265], "a": 1 },
+ { "px": [16,80], "src": [320,272], "f": 0, "t": 411, "d": [26,266], "a": 1 },
+ { "px": [32,80], "src": [320,272], "f": 0, "t": 411, "d": [26,267], "a": 1 },
+ { "px": [48,80], "src": [320,272], "f": 0, "t": 411, "d": [26,268], "a": 1 },
+ { "px": [64,80], "src": [320,272], "f": 0, "t": 411, "d": [26,269], "a": 1 },
+ { "px": [80,80], "src": [320,272], "f": 0, "t": 411, "d": [26,270], "a": 1 },
+ { "px": [96,80], "src": [320,272], "f": 0, "t": 411, "d": [26,271], "a": 1 },
+ { "px": [112,80], "src": [320,272], "f": 0, "t": 411, "d": [26,272], "a": 1 },
+ { "px": [304,80], "src": [320,272], "f": 0, "t": 411, "d": [26,284], "a": 1 },
+ { "px": [320,80], "src": [320,272], "f": 0, "t": 411, "d": [26,285], "a": 1 },
+ { "px": [336,80], "src": [320,272], "f": 0, "t": 411, "d": [26,286], "a": 1 },
+ { "px": [352,80], "src": [320,272], "f": 0, "t": 411, "d": [26,287], "a": 1 },
+ { "px": [368,80], "src": [320,272], "f": 0, "t": 411, "d": [26,288], "a": 1 },
+ { "px": [384,80], "src": [320,272], "f": 0, "t": 411, "d": [26,289], "a": 1 },
+ { "px": [416,80], "src": [320,272], "f": 0, "t": 411, "d": [26,291], "a": 1 },
+ { "px": [432,80], "src": [320,272], "f": 0, "t": 411, "d": [26,292], "a": 1 },
+ { "px": [448,80], "src": [320,272], "f": 0, "t": 411, "d": [26,293], "a": 1 },
+ { "px": [464,80], "src": [320,272], "f": 0, "t": 411, "d": [26,294], "a": 1 },
+ { "px": [480,80], "src": [320,272], "f": 0, "t": 411, "d": [26,295], "a": 1 },
+ { "px": [496,80], "src": [320,272], "f": 0, "t": 411, "d": [26,296], "a": 1 },
+ { "px": [512,80], "src": [320,272], "f": 0, "t": 411, "d": [26,297], "a": 1 },
+ { "px": [528,80], "src": [320,272], "f": 0, "t": 411, "d": [26,298], "a": 1 },
+ { "px": [544,80], "src": [320,272], "f": 0, "t": 411, "d": [26,299], "a": 1 },
+ { "px": [592,80], "src": [320,272], "f": 0, "t": 411, "d": [26,302], "a": 1 },
+ { "px": [608,80], "src": [320,272], "f": 0, "t": 411, "d": [26,303], "a": 1 },
+ { "px": [624,80], "src": [320,272], "f": 0, "t": 411, "d": [26,304], "a": 1 },
+ { "px": [640,80], "src": [320,272], "f": 0, "t": 411, "d": [26,305], "a": 1 },
+ { "px": [656,80], "src": [320,272], "f": 0, "t": 411, "d": [26,306], "a": 1 },
+ { "px": [672,80], "src": [320,272], "f": 0, "t": 411, "d": [26,307], "a": 1 },
+ { "px": [0,96], "src": [320,272], "f": 0, "t": 411, "d": [26,318], "a": 1 },
+ { "px": [16,96], "src": [320,272], "f": 0, "t": 411, "d": [26,319], "a": 1 },
+ { "px": [32,96], "src": [320,272], "f": 0, "t": 411, "d": [26,320], "a": 1 },
+ { "px": [48,96], "src": [320,272], "f": 0, "t": 411, "d": [26,321], "a": 1 },
+ { "px": [64,96], "src": [320,272], "f": 0, "t": 411, "d": [26,322], "a": 1 },
+ { "px": [80,96], "src": [320,272], "f": 0, "t": 411, "d": [26,323], "a": 1 },
+ { "px": [96,96], "src": [320,272], "f": 0, "t": 411, "d": [26,324], "a": 1 },
+ { "px": [112,96], "src": [320,272], "f": 0, "t": 411, "d": [26,325], "a": 1 },
+ { "px": [304,96], "src": [320,272], "f": 0, "t": 411, "d": [26,337], "a": 1 },
+ { "px": [320,96], "src": [320,272], "f": 0, "t": 411, "d": [26,338], "a": 1 },
+ { "px": [336,96], "src": [320,272], "f": 0, "t": 411, "d": [26,339], "a": 1 },
+ { "px": [352,96], "src": [320,272], "f": 0, "t": 411, "d": [26,340], "a": 1 },
+ { "px": [368,96], "src": [320,272], "f": 0, "t": 411, "d": [26,341], "a": 1 },
+ { "px": [384,96], "src": [320,272], "f": 0, "t": 411, "d": [26,342], "a": 1 },
+ { "px": [400,96], "src": [320,272], "f": 0, "t": 411, "d": [26,343], "a": 1 },
+ { "px": [416,96], "src": [320,272], "f": 0, "t": 411, "d": [26,344], "a": 1 },
+ { "px": [432,96], "src": [320,272], "f": 0, "t": 411, "d": [26,345], "a": 1 },
+ { "px": [448,96], "src": [320,272], "f": 0, "t": 411, "d": [26,346], "a": 1 },
+ { "px": [464,96], "src": [320,272], "f": 0, "t": 411, "d": [26,347], "a": 1 },
+ { "px": [480,96], "src": [320,272], "f": 0, "t": 411, "d": [26,348], "a": 1 },
+ { "px": [496,96], "src": [320,272], "f": 0, "t": 411, "d": [26,349], "a": 1 },
+ { "px": [512,96], "src": [320,272], "f": 0, "t": 411, "d": [26,350], "a": 1 },
+ { "px": [528,96], "src": [320,272], "f": 0, "t": 411, "d": [26,351], "a": 1 },
+ { "px": [544,96], "src": [320,272], "f": 0, "t": 411, "d": [26,352], "a": 1 },
+ { "px": [560,96], "src": [320,272], "f": 0, "t": 411, "d": [26,353], "a": 1 },
+ { "px": [576,96], "src": [320,272], "f": 0, "t": 411, "d": [26,354], "a": 1 },
+ { "px": [592,96], "src": [320,272], "f": 0, "t": 411, "d": [26,355], "a": 1 },
+ { "px": [608,96], "src": [320,272], "f": 0, "t": 411, "d": [26,356], "a": 1 },
+ { "px": [624,96], "src": [320,272], "f": 0, "t": 411, "d": [26,357], "a": 1 },
+ { "px": [640,96], "src": [320,272], "f": 0, "t": 411, "d": [26,358], "a": 1 },
+ { "px": [672,96], "src": [320,272], "f": 0, "t": 411, "d": [26,360], "a": 1 },
+ { "px": [0,112], "src": [320,272], "f": 0, "t": 411, "d": [26,371], "a": 1 },
+ { "px": [16,112], "src": [320,272], "f": 0, "t": 411, "d": [26,372], "a": 1 },
+ { "px": [32,112], "src": [320,272], "f": 0, "t": 411, "d": [26,373], "a": 1 },
+ { "px": [48,112], "src": [320,272], "f": 0, "t": 411, "d": [26,374], "a": 1 },
+ { "px": [64,112], "src": [320,272], "f": 0, "t": 411, "d": [26,375], "a": 1 },
+ { "px": [80,112], "src": [320,272], "f": 0, "t": 411, "d": [26,376], "a": 1 },
+ { "px": [288,112], "src": [320,272], "f": 0, "t": 411, "d": [26,389], "a": 1 },
+ { "px": [304,112], "src": [320,272], "f": 0, "t": 411, "d": [26,390], "a": 1 },
+ { "px": [320,112], "src": [320,272], "f": 0, "t": 411, "d": [26,391], "a": 1 },
+ { "px": [336,112], "src": [320,272], "f": 0, "t": 411, "d": [26,392], "a": 1 },
+ { "px": [352,112], "src": [320,272], "f": 0, "t": 411, "d": [26,393], "a": 1 },
+ { "px": [368,112], "src": [320,272], "f": 0, "t": 411, "d": [26,394], "a": 1 },
+ { "px": [384,112], "src": [320,272], "f": 0, "t": 411, "d": [26,395], "a": 1 },
+ { "px": [400,112], "src": [320,272], "f": 0, "t": 411, "d": [26,396], "a": 1 },
+ { "px": [416,112], "src": [320,272], "f": 0, "t": 411, "d": [26,397], "a": 1 },
+ { "px": [432,112], "src": [320,272], "f": 0, "t": 411, "d": [26,398], "a": 1 },
+ { "px": [448,112], "src": [320,272], "f": 0, "t": 411, "d": [26,399], "a": 1 },
+ { "px": [464,112], "src": [320,272], "f": 0, "t": 411, "d": [26,400], "a": 1 },
+ { "px": [480,112], "src": [320,272], "f": 0, "t": 411, "d": [26,401], "a": 1 },
+ { "px": [496,112], "src": [320,272], "f": 0, "t": 411, "d": [26,402], "a": 1 },
+ { "px": [512,112], "src": [320,272], "f": 0, "t": 411, "d": [26,403], "a": 1 },
+ { "px": [528,112], "src": [320,272], "f": 0, "t": 411, "d": [26,404], "a": 1 },
+ { "px": [544,112], "src": [320,272], "f": 0, "t": 411, "d": [26,405], "a": 1 },
+ { "px": [576,112], "src": [320,272], "f": 0, "t": 411, "d": [26,407], "a": 1 },
+ { "px": [592,112], "src": [320,272], "f": 0, "t": 411, "d": [26,408], "a": 1 },
+ { "px": [608,112], "src": [320,272], "f": 0, "t": 411, "d": [26,409], "a": 1 },
+ { "px": [624,112], "src": [320,272], "f": 0, "t": 411, "d": [26,410], "a": 1 },
+ { "px": [640,112], "src": [320,272], "f": 0, "t": 411, "d": [26,411], "a": 1 },
+ { "px": [656,112], "src": [320,272], "f": 0, "t": 411, "d": [26,412], "a": 1 },
+ { "px": [672,112], "src": [320,272], "f": 0, "t": 411, "d": [26,413], "a": 1 },
+ { "px": [0,128], "src": [320,272], "f": 0, "t": 411, "d": [26,424], "a": 1 },
+ { "px": [16,128], "src": [320,272], "f": 0, "t": 411, "d": [26,425], "a": 1 },
+ { "px": [32,128], "src": [320,272], "f": 0, "t": 411, "d": [26,426], "a": 1 },
+ { "px": [64,128], "src": [320,272], "f": 0, "t": 411, "d": [26,428], "a": 1 },
+ { "px": [80,128], "src": [320,272], "f": 0, "t": 411, "d": [26,429], "a": 1 },
+ { "px": [272,128], "src": [320,272], "f": 0, "t": 411, "d": [26,441], "a": 1 },
+ { "px": [288,128], "src": [320,272], "f": 0, "t": 411, "d": [26,442], "a": 1 },
+ { "px": [304,128], "src": [320,272], "f": 0, "t": 411, "d": [26,443], "a": 1 },
+ { "px": [320,128], "src": [320,272], "f": 0, "t": 411, "d": [26,444], "a": 1 },
+ { "px": [336,128], "src": [320,272], "f": 0, "t": 411, "d": [26,445], "a": 1 },
+ { "px": [352,128], "src": [320,272], "f": 0, "t": 411, "d": [26,446], "a": 1 },
+ { "px": [368,128], "src": [320,272], "f": 0, "t": 411, "d": [26,447], "a": 1 },
+ { "px": [384,128], "src": [320,272], "f": 0, "t": 411, "d": [26,448], "a": 1 },
+ { "px": [400,128], "src": [320,272], "f": 0, "t": 411, "d": [26,449], "a": 1 },
+ { "px": [416,128], "src": [320,272], "f": 0, "t": 411, "d": [26,450], "a": 1 },
+ { "px": [432,128], "src": [320,272], "f": 0, "t": 411, "d": [26,451], "a": 1 },
+ { "px": [448,128], "src": [320,272], "f": 0, "t": 411, "d": [26,452], "a": 1 },
+ { "px": [464,128], "src": [320,272], "f": 0, "t": 411, "d": [26,453], "a": 1 },
+ { "px": [480,128], "src": [320,272], "f": 0, "t": 411, "d": [26,454], "a": 1 },
+ { "px": [496,128], "src": [320,272], "f": 0, "t": 411, "d": [26,455], "a": 1 },
+ { "px": [512,128], "src": [320,272], "f": 0, "t": 411, "d": [26,456], "a": 1 },
+ { "px": [640,128], "src": [320,272], "f": 0, "t": 411, "d": [26,464], "a": 1 },
+ { "px": [0,144], "src": [320,272], "f": 0, "t": 411, "d": [26,477], "a": 1 },
+ { "px": [16,144], "src": [320,272], "f": 0, "t": 411, "d": [26,478], "a": 1 },
+ { "px": [32,144], "src": [320,272], "f": 0, "t": 411, "d": [26,479], "a": 1 },
+ { "px": [48,144], "src": [320,272], "f": 0, "t": 411, "d": [26,480], "a": 1 },
+ { "px": [64,144], "src": [320,272], "f": 0, "t": 411, "d": [26,481], "a": 1 },
+ { "px": [80,144], "src": [320,272], "f": 0, "t": 411, "d": [26,482], "a": 1 },
+ { "px": [96,144], "src": [320,272], "f": 0, "t": 411, "d": [26,483], "a": 1 },
+ { "px": [112,144], "src": [320,272], "f": 0, "t": 411, "d": [26,484], "a": 1 },
+ { "px": [208,144], "src": [320,272], "f": 0, "t": 411, "d": [26,490], "a": 1 },
+ { "px": [240,144], "src": [320,272], "f": 0, "t": 411, "d": [26,492], "a": 1 },
+ { "px": [256,144], "src": [320,272], "f": 0, "t": 411, "d": [26,493], "a": 1 },
+ { "px": [272,144], "src": [320,272], "f": 0, "t": 411, "d": [26,494], "a": 1 },
+ { "px": [288,144], "src": [320,272], "f": 0, "t": 411, "d": [26,495], "a": 1 },
+ { "px": [304,144], "src": [320,272], "f": 0, "t": 411, "d": [26,496], "a": 1 },
+ { "px": [320,144], "src": [320,272], "f": 0, "t": 411, "d": [26,497], "a": 1 },
+ { "px": [352,144], "src": [320,272], "f": 0, "t": 411, "d": [26,499], "a": 1 },
+ { "px": [368,144], "src": [320,272], "f": 0, "t": 411, "d": [26,500], "a": 1 },
+ { "px": [480,144], "src": [320,272], "f": 0, "t": 411, "d": [26,507], "a": 1 },
+ { "px": [0,160], "src": [320,272], "f": 0, "t": 411, "d": [26,530], "a": 1 },
+ { "px": [16,160], "src": [320,272], "f": 0, "t": 411, "d": [26,531], "a": 1 },
+ { "px": [32,160], "src": [320,272], "f": 0, "t": 411, "d": [26,532], "a": 1 },
+ { "px": [48,160], "src": [320,272], "f": 0, "t": 411, "d": [26,533], "a": 1 },
+ { "px": [64,160], "src": [320,272], "f": 0, "t": 411, "d": [26,534], "a": 1 },
+ { "px": [80,160], "src": [320,272], "f": 0, "t": 411, "d": [26,535], "a": 1 },
+ { "px": [96,160], "src": [320,272], "f": 0, "t": 411, "d": [26,536], "a": 1 },
+ { "px": [112,160], "src": [320,272], "f": 0, "t": 411, "d": [26,537], "a": 1 },
+ { "px": [128,160], "src": [320,272], "f": 0, "t": 411, "d": [26,538], "a": 1 },
+ { "px": [144,160], "src": [320,272], "f": 0, "t": 411, "d": [26,539], "a": 1 },
+ { "px": [160,160], "src": [320,272], "f": 0, "t": 411, "d": [26,540], "a": 1 },
+ { "px": [176,160], "src": [320,272], "f": 0, "t": 411, "d": [26,541], "a": 1 },
+ { "px": [192,160], "src": [320,272], "f": 0, "t": 411, "d": [26,542], "a": 1 },
+ { "px": [208,160], "src": [320,272], "f": 0, "t": 411, "d": [26,543], "a": 1 },
+ { "px": [224,160], "src": [320,272], "f": 0, "t": 411, "d": [26,544], "a": 1 },
+ { "px": [240,160], "src": [320,272], "f": 0, "t": 411, "d": [26,545], "a": 1 },
+ { "px": [256,160], "src": [320,272], "f": 0, "t": 411, "d": [26,546], "a": 1 },
+ { "px": [272,160], "src": [320,272], "f": 0, "t": 411, "d": [26,547], "a": 1 },
+ { "px": [0,176], "src": [320,272], "f": 0, "t": 411, "d": [26,583], "a": 1 },
+ { "px": [16,176], "src": [320,272], "f": 0, "t": 411, "d": [26,584], "a": 1 },
+ { "px": [32,176], "src": [320,272], "f": 0, "t": 411, "d": [26,585], "a": 1 },
+ { "px": [48,176], "src": [320,272], "f": 0, "t": 411, "d": [26,586], "a": 1 },
+ { "px": [64,176], "src": [320,272], "f": 0, "t": 411, "d": [26,587], "a": 1 },
+ { "px": [80,176], "src": [320,272], "f": 0, "t": 411, "d": [26,588], "a": 1 },
+ { "px": [96,176], "src": [320,272], "f": 0, "t": 411, "d": [26,589], "a": 1 },
+ { "px": [112,176], "src": [320,272], "f": 0, "t": 411, "d": [26,590], "a": 1 },
+ { "px": [128,176], "src": [320,272], "f": 0, "t": 411, "d": [26,591], "a": 1 },
+ { "px": [144,176], "src": [320,272], "f": 0, "t": 411, "d": [26,592], "a": 1 },
+ { "px": [160,176], "src": [320,272], "f": 0, "t": 411, "d": [26,593], "a": 1 },
+ { "px": [176,176], "src": [320,272], "f": 0, "t": 411, "d": [26,594], "a": 1 },
+ { "px": [192,176], "src": [320,272], "f": 0, "t": 411, "d": [26,595], "a": 1 },
+ { "px": [208,176], "src": [320,272], "f": 0, "t": 411, "d": [26,596], "a": 1 },
+ { "px": [224,176], "src": [320,272], "f": 0, "t": 411, "d": [26,597], "a": 1 },
+ { "px": [240,176], "src": [320,272], "f": 0, "t": 411, "d": [26,598], "a": 1 },
+ { "px": [256,176], "src": [320,272], "f": 0, "t": 411, "d": [26,599], "a": 1 },
+ { "px": [272,176], "src": [320,272], "f": 0, "t": 411, "d": [26,600], "a": 1 },
+ { "px": [288,176], "src": [320,272], "f": 0, "t": 411, "d": [26,601], "a": 1 },
+ { "px": [304,176], "src": [320,272], "f": 0, "t": 411, "d": [26,602], "a": 1 },
+ { "px": [320,176], "src": [320,272], "f": 0, "t": 411, "d": [26,603], "a": 1 },
+ { "px": [0,192], "src": [320,272], "f": 0, "t": 411, "d": [26,636], "a": 1 },
+ { "px": [16,192], "src": [320,272], "f": 0, "t": 411, "d": [26,637], "a": 1 },
+ { "px": [32,192], "src": [320,272], "f": 0, "t": 411, "d": [26,638], "a": 1 },
+ { "px": [48,192], "src": [320,272], "f": 0, "t": 411, "d": [26,639], "a": 1 },
+ { "px": [64,192], "src": [320,272], "f": 0, "t": 411, "d": [26,640], "a": 1 },
+ { "px": [80,192], "src": [320,272], "f": 0, "t": 411, "d": [26,641], "a": 1 },
+ { "px": [96,192], "src": [320,272], "f": 0, "t": 411, "d": [26,642], "a": 1 },
+ { "px": [112,192], "src": [320,272], "f": 0, "t": 411, "d": [26,643], "a": 1 },
+ { "px": [128,192], "src": [320,272], "f": 0, "t": 411, "d": [26,644], "a": 1 },
+ { "px": [240,192], "src": [320,272], "f": 0, "t": 411, "d": [26,651], "a": 1 },
+ { "px": [256,192], "src": [320,272], "f": 0, "t": 411, "d": [26,652], "a": 1 },
+ { "px": [272,192], "src": [320,272], "f": 0, "t": 411, "d": [26,653], "a": 1 },
+ { "px": [288,192], "src": [320,272], "f": 0, "t": 411, "d": [26,654], "a": 1 },
+ { "px": [304,192], "src": [320,272], "f": 0, "t": 411, "d": [26,655], "a": 1 },
+ { "px": [320,192], "src": [320,272], "f": 0, "t": 411, "d": [26,656], "a": 1 },
+ { "px": [0,208], "src": [320,272], "f": 0, "t": 411, "d": [26,689], "a": 1 },
+ { "px": [16,208], "src": [320,272], "f": 0, "t": 411, "d": [26,690], "a": 1 },
+ { "px": [32,208], "src": [320,272], "f": 0, "t": 411, "d": [26,691], "a": 1 },
+ { "px": [48,208], "src": [320,272], "f": 0, "t": 411, "d": [26,692], "a": 1 },
+ { "px": [64,208], "src": [320,272], "f": 0, "t": 411, "d": [26,693], "a": 1 },
+ { "px": [80,208], "src": [320,272], "f": 0, "t": 411, "d": [26,694], "a": 1 },
+ { "px": [272,208], "src": [320,272], "f": 0, "t": 411, "d": [26,706], "a": 1 },
+ { "px": [288,208], "src": [320,272], "f": 0, "t": 411, "d": [26,707], "a": 1 },
+ { "px": [304,208], "src": [320,272], "f": 0, "t": 411, "d": [26,708], "a": 1 },
+ { "px": [320,208], "src": [320,272], "f": 0, "t": 411, "d": [26,709], "a": 1 },
+ { "px": [0,224], "src": [320,272], "f": 0, "t": 411, "d": [26,742], "a": 1 },
+ { "px": [16,224], "src": [320,272], "f": 0, "t": 411, "d": [26,743], "a": 1 },
+ { "px": [32,224], "src": [320,272], "f": 0, "t": 411, "d": [26,744], "a": 1 },
+ { "px": [48,224], "src": [320,272], "f": 0, "t": 411, "d": [26,745], "a": 1 },
+ { "px": [64,224], "src": [320,272], "f": 0, "t": 411, "d": [26,746], "a": 1 },
+ { "px": [80,224], "src": [320,272], "f": 0, "t": 411, "d": [26,747], "a": 1 },
+ { "px": [272,224], "src": [320,272], "f": 0, "t": 411, "d": [26,759], "a": 1 },
+ { "px": [288,224], "src": [320,272], "f": 0, "t": 411, "d": [26,760], "a": 1 },
+ { "px": [304,224], "src": [320,272], "f": 0, "t": 411, "d": [26,761], "a": 1 },
+ { "px": [320,224], "src": [320,272], "f": 0, "t": 411, "d": [26,762], "a": 1 },
+ { "px": [336,224], "src": [320,272], "f": 0, "t": 411, "d": [26,763], "a": 1 },
+ { "px": [0,240], "src": [320,272], "f": 0, "t": 411, "d": [26,795], "a": 1 },
+ { "px": [32,240], "src": [320,272], "f": 0, "t": 411, "d": [26,797], "a": 1 },
+ { "px": [64,240], "src": [320,272], "f": 0, "t": 411, "d": [26,799], "a": 1 },
+ { "px": [80,240], "src": [320,272], "f": 0, "t": 411, "d": [26,800], "a": 1 },
+ { "px": [272,240], "src": [320,272], "f": 0, "t": 411, "d": [26,812], "a": 1 },
+ { "px": [288,240], "src": [320,272], "f": 0, "t": 411, "d": [26,813], "a": 1 },
+ { "px": [304,240], "src": [320,272], "f": 0, "t": 411, "d": [26,814], "a": 1 },
+ { "px": [320,240], "src": [320,272], "f": 0, "t": 411, "d": [26,815], "a": 1 },
+ { "px": [336,240], "src": [320,272], "f": 0, "t": 411, "d": [26,816], "a": 1 },
+ { "px": [352,240], "src": [320,272], "f": 0, "t": 411, "d": [26,817], "a": 1 },
+ { "px": [368,240], "src": [320,272], "f": 0, "t": 411, "d": [26,818], "a": 1 },
+ { "px": [480,240], "src": [320,272], "f": 0, "t": 411, "d": [26,825], "a": 1 },
+ { "px": [496,240], "src": [320,272], "f": 0, "t": 411, "d": [26,826], "a": 1 },
+ { "px": [96,256], "src": [320,272], "f": 0, "t": 411, "d": [26,854], "a": 1 },
+ { "px": [112,256], "src": [320,272], "f": 0, "t": 411, "d": [26,855], "a": 1 },
+ { "px": [272,256], "src": [320,272], "f": 0, "t": 411, "d": [26,865], "a": 1 },
+ { "px": [288,256], "src": [320,272], "f": 0, "t": 411, "d": [26,866], "a": 1 },
+ { "px": [304,256], "src": [320,272], "f": 0, "t": 411, "d": [26,867], "a": 1 },
+ { "px": [320,256], "src": [320,272], "f": 0, "t": 411, "d": [26,868], "a": 1 },
+ { "px": [336,256], "src": [320,272], "f": 0, "t": 411, "d": [26,869], "a": 1 },
+ { "px": [352,256], "src": [320,272], "f": 0, "t": 411, "d": [26,870], "a": 1 },
+ { "px": [368,256], "src": [320,272], "f": 0, "t": 411, "d": [26,871], "a": 1 },
+ { "px": [432,256], "src": [320,272], "f": 0, "t": 411, "d": [26,875], "a": 1 },
+ { "px": [448,256], "src": [320,272], "f": 0, "t": 411, "d": [26,876], "a": 1 },
+ { "px": [464,256], "src": [320,272], "f": 0, "t": 411, "d": [26,877], "a": 1 },
+ { "px": [480,256], "src": [320,272], "f": 0, "t": 411, "d": [26,878], "a": 1 },
+ { "px": [496,256], "src": [320,272], "f": 0, "t": 411, "d": [26,879], "a": 1 },
+ { "px": [96,272], "src": [320,272], "f": 0, "t": 411, "d": [26,907], "a": 1 },
+ { "px": [112,272], "src": [320,272], "f": 0, "t": 411, "d": [26,908], "a": 1 },
+ { "px": [272,272], "src": [320,272], "f": 0, "t": 411, "d": [26,918], "a": 1 },
+ { "px": [368,272], "src": [320,272], "f": 0, "t": 411, "d": [26,924], "a": 1 },
+ { "px": [432,272], "src": [320,272], "f": 0, "t": 411, "d": [26,928], "a": 1 },
+ { "px": [448,272], "src": [320,272], "f": 0, "t": 411, "d": [26,929], "a": 1 },
+ { "px": [464,272], "src": [320,272], "f": 0, "t": 411, "d": [26,930], "a": 1 },
+ { "px": [96,288], "src": [320,272], "f": 0, "t": 411, "d": [26,960], "a": 1 },
+ { "px": [112,288], "src": [320,272], "f": 0, "t": 411, "d": [26,961], "a": 1 },
+ { "px": [0,304], "src": [320,272], "f": 0, "t": 411, "d": [26,1007], "a": 1 },
+ { "px": [16,304], "src": [320,272], "f": 0, "t": 411, "d": [26,1008], "a": 1 },
+ { "px": [32,304], "src": [320,272], "f": 0, "t": 411, "d": [26,1009], "a": 1 },
+ { "px": [48,304], "src": [320,272], "f": 0, "t": 411, "d": [26,1010], "a": 1 },
+ { "px": [64,304], "src": [320,272], "f": 0, "t": 411, "d": [26,1011], "a": 1 },
+ { "px": [80,304], "src": [320,272], "f": 0, "t": 411, "d": [26,1012], "a": 1 },
+ { "px": [96,304], "src": [320,272], "f": 0, "t": 411, "d": [26,1013], "a": 1 },
+ { "px": [112,304], "src": [320,272], "f": 0, "t": 411, "d": [26,1014], "a": 1 },
+ { "px": [0,320], "src": [320,272], "f": 0, "t": 411, "d": [26,1060], "a": 1 },
+ { "px": [16,320], "src": [320,272], "f": 0, "t": 411, "d": [26,1061], "a": 1 },
+ { "px": [32,320], "src": [320,272], "f": 0, "t": 411, "d": [26,1062], "a": 1 },
+ { "px": [48,320], "src": [320,272], "f": 0, "t": 411, "d": [26,1063], "a": 1 },
+ { "px": [64,320], "src": [320,272], "f": 0, "t": 411, "d": [26,1064], "a": 1 },
+ { "px": [80,320], "src": [320,272], "f": 0, "t": 411, "d": [26,1065], "a": 1 },
+ { "px": [96,320], "src": [320,272], "f": 0, "t": 411, "d": [26,1066], "a": 1 },
+ { "px": [112,320], "src": [320,272], "f": 0, "t": 411, "d": [26,1067], "a": 1 },
+ { "px": [304,160], "src": [320,272], "f": 0, "t": 411, "d": [84,549], "a": 1 },
+ { "px": [320,160], "src": [320,272], "f": 0, "t": 411, "d": [84,550], "a": 1 },
+ { "px": [336,160], "src": [320,272], "f": 0, "t": 411, "d": [84,551], "a": 1 },
+ { "px": [128,0], "src": [288,240], "f": 1, "t": 363, "d": [37,8], "a": 1 },
+ { "px": [128,16], "src": [288,240], "f": 1, "t": 363, "d": [37,61], "a": 1 },
+ { "px": [128,32], "src": [288,240], "f": 1, "t": 363, "d": [37,114], "a": 1 },
+ { "px": [128,48], "src": [288,240], "f": 1, "t": 363, "d": [37,167], "a": 1 },
+ { "px": [320,48], "src": [288,240], "f": 0, "t": 363, "d": [37,179], "a": 1 },
+ { "px": [128,64], "src": [288,240], "f": 1, "t": 363, "d": [37,220], "a": 1 },
+ { "px": [320,64], "src": [288,240], "f": 0, "t": 363, "d": [37,232], "a": 1 },
+ { "px": [528,64], "src": [288,240], "f": 1, "t": 363, "d": [37,245], "a": 1 },
+ { "px": [624,64], "src": [288,240], "f": 0, "t": 363, "d": [37,251], "a": 1 },
+ { "px": [688,64], "src": [288,240], "f": 1, "t": 363, "d": [37,255], "a": 1 },
+ { "px": [720,64], "src": [288,240], "f": 0, "t": 363, "d": [37,257], "a": 1 },
+ { "px": [128,80], "src": [288,240], "f": 1, "t": 363, "d": [37,273], "a": 1 },
+ { "px": [688,80], "src": [288,240], "f": 1, "t": 363, "d": [37,308], "a": 1 },
+ { "px": [720,80], "src": [288,240], "f": 0, "t": 363, "d": [37,310], "a": 1 },
+ { "px": [288,96], "src": [288,240], "f": 0, "t": 363, "d": [37,336], "a": 1 },
+ { "px": [688,96], "src": [288,240], "f": 1, "t": 363, "d": [37,361], "a": 1 },
+ { "px": [720,96], "src": [288,240], "f": 0, "t": 363, "d": [37,363], "a": 1 },
+ { "px": [96,112], "src": [288,240], "f": 1, "t": 363, "d": [37,377], "a": 1 },
+ { "px": [688,112], "src": [288,240], "f": 1, "t": 363, "d": [37,414], "a": 1 },
+ { "px": [720,112], "src": [288,240], "f": 0, "t": 363, "d": [37,416], "a": 1 },
+ { "px": [96,128], "src": [288,240], "f": 1, "t": 363, "d": [37,430], "a": 1 },
+ { "px": [256,128], "src": [288,240], "f": 0, "t": 363, "d": [37,440], "a": 1 },
+ { "px": [528,128], "src": [288,240], "f": 1, "t": 363, "d": [37,457], "a": 1 },
+ { "px": [688,128], "src": [288,240], "f": 1, "t": 363, "d": [37,467], "a": 1 },
+ { "px": [384,144], "src": [288,240], "f": 1, "t": 363, "d": [37,501], "a": 1 },
+ { "px": [288,160], "src": [288,240], "f": 1, "t": 363, "d": [37,548], "a": 1 },
+ { "px": [336,192], "src": [288,240], "f": 1, "t": 363, "d": [37,657], "a": 1 },
+ { "px": [96,208], "src": [288,240], "f": 1, "t": 363, "d": [37,695], "a": 1 },
+ { "px": [256,208], "src": [288,240], "f": 0, "t": 363, "d": [37,705], "a": 1 },
+ { "px": [336,208], "src": [288,240], "f": 1, "t": 363, "d": [37,710], "a": 1 },
+ { "px": [96,224], "src": [288,240], "f": 1, "t": 363, "d": [37,748], "a": 1 },
+ { "px": [256,224], "src": [288,240], "f": 0, "t": 363, "d": [37,758], "a": 1 },
+ { "px": [96,240], "src": [288,240], "f": 1, "t": 363, "d": [37,801], "a": 1 },
+ { "px": [256,240], "src": [288,240], "f": 0, "t": 363, "d": [37,811], "a": 1 },
+ { "px": [80,256], "src": [288,240], "f": 0, "t": 363, "d": [37,853], "a": 1 },
+ { "px": [256,256], "src": [288,240], "f": 0, "t": 363, "d": [37,864], "a": 1 },
+ { "px": [384,256], "src": [288,240], "f": 1, "t": 363, "d": [37,872], "a": 1 },
+ { "px": [416,256], "src": [288,240], "f": 0, "t": 363, "d": [37,874], "a": 1 },
+ { "px": [512,256], "src": [288,240], "f": 1, "t": 363, "d": [37,880], "a": 1 },
+ { "px": [80,272], "src": [288,240], "f": 0, "t": 363, "d": [37,906], "a": 1 },
+ { "px": [128,272], "src": [288,240], "f": 1, "t": 363, "d": [37,909], "a": 1 },
+ { "px": [256,272], "src": [288,240], "f": 0, "t": 363, "d": [37,917], "a": 1 },
+ { "px": [384,272], "src": [288,240], "f": 1, "t": 363, "d": [37,925], "a": 1 },
+ { "px": [80,288], "src": [288,240], "f": 0, "t": 363, "d": [37,959], "a": 1 },
+ { "px": [128,288], "src": [288,240], "f": 1, "t": 363, "d": [37,962], "a": 1 },
+ { "px": [128,304], "src": [288,240], "f": 1, "t": 363, "d": [37,1015], "a": 1 },
+ { "px": [128,320], "src": [288,240], "f": 1, "t": 363, "d": [37,1068], "a": 1 },
+ { "px": [496,32], "src": [288,272], "f": 2, "t": 409, "d": [38,137], "a": 1 },
+ { "px": [512,32], "src": [288,272], "f": 2, "t": 409, "d": [38,138], "a": 1 },
+ { "px": [336,48], "src": [288,272], "f": 2, "t": 409, "d": [38,180], "a": 1 },
+ { "px": [640,48], "src": [288,272], "f": 2, "t": 409, "d": [38,199], "a": 1 },
+ { "px": [656,48], "src": [288,272], "f": 2, "t": 409, "d": [38,200], "a": 1 },
+ { "px": [672,48], "src": [288,272], "f": 2, "t": 409, "d": [38,201], "a": 1 },
+ { "px": [688,48], "src": [288,272], "f": 2, "t": 409, "d": [38,202], "a": 1 },
+ { "px": [432,64], "src": [288,272], "f": 2, "t": 409, "d": [38,239], "a": 1 },
+ { "px": [288,80], "src": [288,272], "f": 2, "t": 409, "d": [38,283], "a": 1 },
+ { "px": [560,80], "src": [288,272], "f": 2, "t": 409, "d": [38,300], "a": 1 },
+ { "px": [576,80], "src": [288,272], "f": 2, "t": 409, "d": [38,301], "a": 1 },
+ { "px": [560,112], "src": [288,272], "f": 0, "t": 409, "d": [38,406], "a": 1 },
+ { "px": [656,128], "src": [288,272], "f": 0, "t": 409, "d": [38,465], "a": 1 },
+ { "px": [128,144], "src": [288,272], "f": 2, "t": 409, "d": [38,485], "a": 1 },
+ { "px": [144,144], "src": [288,272], "f": 2, "t": 409, "d": [38,486], "a": 1 },
+ { "px": [160,144], "src": [288,272], "f": 2, "t": 409, "d": [38,487], "a": 1 },
+ { "px": [512,144], "src": [288,272], "f": 0, "t": 409, "d": [38,509], "a": 1 },
+ { "px": [160,192], "src": [288,272], "f": 0, "t": 409, "d": [38,646], "a": 1 },
+ { "px": [176,192], "src": [288,272], "f": 0, "t": 409, "d": [38,647], "a": 1 },
+ { "px": [192,192], "src": [288,272], "f": 0, "t": 409, "d": [38,648], "a": 1 },
+ { "px": [208,192], "src": [288,272], "f": 0, "t": 409, "d": [38,649], "a": 1 },
+ { "px": [224,192], "src": [288,272], "f": 0, "t": 409, "d": [38,650], "a": 1 },
+ { "px": [16,240], "src": [288,272], "f": 0, "t": 409, "d": [38,796], "a": 1 },
+ { "px": [416,240], "src": [288,272], "f": 2, "t": 409, "d": [38,821], "a": 1 },
+ { "px": [480,272], "src": [288,272], "f": 0, "t": 409, "d": [38,931], "a": 1 },
+ { "px": [496,272], "src": [288,272], "f": 0, "t": 409, "d": [38,932], "a": 1 },
+ { "px": [16,32], "src": [256,240], "f": 0, "t": 361, "d": [77,108], "a": 1 },
+ { "px": [32,32], "src": [272,240], "f": 0, "t": 362, "d": [77,108], "a": 1 },
+ { "px": [48,32], "src": [288,240], "f": 0, "t": 363, "d": [77,108], "a": 1 },
+ { "px": [640,96], "src": [256,240], "f": 0, "t": 361, "d": [77,359], "a": 1 },
+ { "px": [656,96], "src": [272,240], "f": 0, "t": 362, "d": [77,359], "a": 1 },
+ { "px": [672,96], "src": [288,240], "f": 0, "t": 363, "d": [77,359], "a": 1 },
+ { "px": [32,128], "src": [256,240], "f": 0, "t": 361, "d": [77,427], "a": 1 },
+ { "px": [48,128], "src": [272,240], "f": 0, "t": 362, "d": [77,427], "a": 1 },
+ { "px": [64,128], "src": [288,240], "f": 0, "t": 363, "d": [77,427], "a": 1 },
+ { "px": [304,192], "src": [128,304], "f": 2, "t": 445, "d": [71,604], "a": 1 },
+ { "px": [304,176], "src": [128,320], "f": 2, "t": 468, "d": [71,604], "a": 1 },
+ { "px": [320,192], "src": [144,304], "f": 2, "t": 446, "d": [71,604], "a": 1 },
+ { "px": [320,176], "src": [144,320], "f": 2, "t": 469, "d": [71,604], "a": 1 },
+ { "px": [336,192], "src": [160,304], "f": 2, "t": 447, "d": [71,604], "a": 1 },
+ { "px": [336,176], "src": [160,320], "f": 2, "t": 470, "d": [71,604], "a": 1 },
+ { "px": [352,48], "src": [176,272], "f": 2, "t": 402, "d": [39,181], "a": 1 },
+ { "px": [528,48], "src": [144,272], "f": 2, "t": 400, "d": [39,192], "a": 1 },
+ { "px": [400,80], "src": [160,304], "f": 2, "t": 447, "d": [39,290], "a": 1 },
+ { "px": [272,112], "src": [144,272], "f": 2, "t": 400, "d": [39,388], "a": 1 },
+ { "px": [176,144], "src": [160,304], "f": 2, "t": 447, "d": [39,488], "a": 1 },
+ { "px": [192,144], "src": [176,272], "f": 2, "t": 402, "d": [39,489], "a": 1 },
+ { "px": [224,144], "src": [160,304], "f": 2, "t": 447, "d": [39,491], "a": 1 },
+ { "px": [336,144], "src": [144,272], "f": 0, "t": 400, "d": [39,498], "a": 1 },
+ { "px": [416,144], "src": [144,272], "f": 0, "t": 400, "d": [39,503], "a": 1 },
+ { "px": [432,144], "src": [192,304], "f": 0, "t": 449, "d": [39,504], "a": 1 },
+ { "px": [448,144], "src": [144,272], "f": 0, "t": 400, "d": [39,505], "a": 1 },
+ { "px": [464,144], "src": [160,304], "f": 0, "t": 447, "d": [39,506], "a": 1 },
+ { "px": [496,144], "src": [176,272], "f": 0, "t": 402, "d": [39,508], "a": 1 },
+ { "px": [288,272], "src": [160,304], "f": 0, "t": 447, "d": [39,919], "a": 1 },
+ { "px": [336,272], "src": [176,272], "f": 0, "t": 402, "d": [39,922], "a": 1 },
+ { "px": [352,272], "src": [160,304], "f": 0, "t": 447, "d": [39,923], "a": 1 },
+ { "px": [416,272], "src": [176,272], "f": 0, "t": 402, "d": [39,927], "a": 1 },
+ { "px": [464,48], "src": [144,272], "f": 3, "t": 400, "d": [65,188], "a": 1 },
+ { "px": [384,64], "src": [128,320], "f": 2, "t": 468, "d": [65,236], "a": 1 },
+ { "px": [256,112], "src": [144,272], "f": 3, "t": 400, "d": [65,387], "a": 1 },
+ { "px": [528,144], "src": [144,304], "f": 0, "t": 446, "d": [65,510], "a": 1 },
+ { "px": [352,224], "src": [144,304], "f": 2, "t": 446, "d": [65,764], "a": 1 },
+ { "px": [384,240], "src": [144,272], "f": 2, "t": 400, "d": [65,819], "a": 1 },
+ { "px": [304,272], "src": [144,272], "f": 0, "t": 400, "d": [65,920], "a": 1 },
+ { "px": [624,48], "src": [208,304], "f": 2, "t": 450, "d": [80,198], "a": 1 },
+ { "px": [720,48], "src": [208,304], "f": 3, "t": 450, "d": [80,204], "a": 1 },
+ { "px": [128,96], "src": [208,304], "f": 1, "t": 450, "d": [80,326], "a": 1 },
+ { "px": [624,128], "src": [208,304], "f": 0, "t": 450, "d": [80,463], "a": 1 },
+ { "px": [720,128], "src": [208,304], "f": 1, "t": 450, "d": [80,469], "a": 1 },
+ { "px": [464,240], "src": [208,304], "f": 2, "t": 450, "d": [80,824], "a": 1 },
+ { "px": [512,240], "src": [208,304], "f": 3, "t": 450, "d": [80,827], "a": 1 },
+ { "px": [128,256], "src": [208,304], "f": 3, "t": 450, "d": [80,856], "a": 1 },
+ { "px": [512,272], "src": [208,304], "f": 1, "t": 450, "d": [80,933], "a": 1 },
+ { "px": [664,96], "src": [208,240], "f": 0, "t": 358, "d": [72,466], "a": 1 },
+ { "px": [664,112], "src": [208,256], "f": 0, "t": 381, "d": [72,466], "a": 1 },
+ { "px": [664,128], "src": [208,272], "f": 0, "t": 404, "d": [72,466], "a": 1 },
+ { "px": [680,96], "src": [224,240], "f": 0, "t": 359, "d": [72,466], "a": 1 },
+ { "px": [680,112], "src": [224,256], "f": 0, "t": 382, "d": [72,466], "a": 1 },
+ { "px": [680,128], "src": [224,272], "f": 0, "t": 405, "d": [72,466], "a": 1 },
+ { "px": [136,160], "src": [208,240], "f": 0, "t": 358, "d": [72,645], "a": 1 },
+ { "px": [136,176], "src": [208,256], "f": 0, "t": 381, "d": [72,645], "a": 1 },
+ { "px": [136,192], "src": [208,272], "f": 0, "t": 404, "d": [72,645], "a": 1 },
+ { "px": [152,160], "src": [224,240], "f": 0, "t": 359, "d": [72,645], "a": 1 },
+ { "px": [152,176], "src": [224,256], "f": 0, "t": 382, "d": [72,645], "a": 1 },
+ { "px": [152,192], "src": [224,272], "f": 0, "t": 405, "d": [72,645], "a": 1 },
+ { "px": [40,208], "src": [208,240], "f": 0, "t": 358, "d": [72,798], "a": 1 },
+ { "px": [40,224], "src": [208,256], "f": 0, "t": 381, "d": [72,798], "a": 1 },
+ { "px": [40,240], "src": [208,272], "f": 0, "t": 404, "d": [72,798], "a": 1 },
+ { "px": [56,208], "src": [224,240], "f": 0, "t": 359, "d": [72,798], "a": 1 },
+ { "px": [56,224], "src": [224,256], "f": 0, "t": 382, "d": [72,798], "a": 1 },
+ { "px": [56,240], "src": [224,272], "f": 0, "t": 405, "d": [72,798], "a": 1 }
+ ],
+ "seed": 5428446,
+ "overrideTilesetUid": null,
+ "gridTiles": [],
+ "entityInstances": []
+ }
+ ],
+ "__neighbours": [ { "levelIid": "a316bd80-66b0-11ec-9cd7-c50cdc9d2cc4", "dir": "n" }, { "levelIid": "a317cef0-66b0-11ec-9cd7-dd2f249c8c8b", "dir": "s" } ]
+ },
+ {
+ "identifier": "Top",
+ "iid": "a316bd80-66b0-11ec-9cd7-c50cdc9d2cc4",
+ "uid": 89,
+ "worldX": 352,
+ "worldY": -352,
+ "worldDepth": 0,
+ "pxWid": 672,
+ "pxHei": 352,
+ "__bgColor": "#50506A",
+ "bgColor": null,
+ "useAutoIdentifier": false,
+ "bgRelPath": null,
+ "bgPos": null,
+ "bgPivotX": 0.5,
+ "bgPivotY": 0.5,
+ "__smartColor": "#9F9FAD",
+ "__bgPos": null,
+ "externalRelPath": null,
+ "fieldInstances": [],
+ "layerInstances": [
+ {
+ "__identifier": "Entities",
+ "__type": "Entities",
+ "__cWid": 42,
+ "__cHei": 22,
+ "__gridSize": 16,
+ "__opacity": 1,
+ "__pxTotalOffsetX": 0,
+ "__pxTotalOffsetY": 0,
+ "__tilesetDefUid": null,
+ "__tilesetRelPath": null,
+ "iid": "a316bd85-66b0-11ec-9cd7-4bd06a4903e2",
+ "levelId": 89,
+ "layerDefUid": 48,
+ "pxOffsetX": 0,
+ "pxOffsetY": 0,
+ "visible": true,
+ "optionalRules": [],
+ "intGridCsv": [],
+ "autoLayerTiles": [],
+ "seed": 5505402,
+ "overrideTilesetUid": null,
+ "gridTiles": [],
+ "entityInstances": [
+ {
+ "__identifier": "Mob",
+ "__grid": [28,14],
+ "__pivot": [0.5,1],
+ "__tags": [],
+ "__tile": { "x": 96, "y": 0, "w": 16, "h": 16, "tilesetUid": 104 },
+ "__smartColor": "#FF0000",
+ "iid": "a316bd86-66b0-11ec-9cd7-837d4383ebc8",
+ "width": 20,
+ "height": 20,
+ "defUid": 54,
+ "px": [456,240],
+ "fieldInstances": [
+ { "__identifier": "loot", "__type": "Array", "__value": [], "__tile": null, "defUid": 56, "realEditorValues": [] },
+ { "__identifier": "patrol", "__type": "Array", "__value": [{ "cx": 22, "cy": 14 }], "__tile": null, "defUid": 55, "realEditorValues": [{
+ "id": "V_String",
+ "params": ["22,14"]
+ }] }
+ ]
+ },
+ {
+ "__identifier": "Mob",
+ "__grid": [26,20],
+ "__pivot": [0.5,1],
+ "__tags": [],
+ "__tile": { "x": 96, "y": 0, "w": 16, "h": 16, "tilesetUid": 104 },
+ "__smartColor": "#FF0000",
+ "iid": "a316bd87-66b0-11ec-9cd7-df8b07359531",
+ "width": 20,
+ "height": 20,
+ "defUid": 54,
+ "px": [424,336],
+ "fieldInstances": [
+ { "__identifier": "loot", "__type": "Array", "__value": [], "__tile": null, "defUid": 56, "realEditorValues": [] },
+ { "__identifier": "patrol", "__type": "Array", "__value": [{ "cx": 23, "cy": 20 }], "__tile": null, "defUid": 55, "realEditorValues": [{
+ "id": "V_String",
+ "params": ["23,20"]
+ }] }
+ ]
+ },
+ {
+ "__identifier": "Mob",
+ "__grid": [12,13],
+ "__pivot": [0.5,1],
+ "__tags": [],
+ "__tile": { "x": 96, "y": 0, "w": 16, "h": 16, "tilesetUid": 104 },
+ "__smartColor": "#FF0000",
+ "iid": "a316bd88-66b0-11ec-9cd7-cbd4e685a38f",
+ "width": 48,
+ "height": 48,
+ "defUid": 54,
+ "px": [200,224],
+ "fieldInstances": [
+ { "__identifier": "loot", "__type": "Array", "__value": [ "Knife", "Healing_Plant" ], "__tile": null, "defUid": 56, "realEditorValues": [ {
+ "id": "V_String",
+ "params": ["Knife"]
+ }, {
+ "id": "V_String",
+ "params": ["Healing_Plant"]
+ } ] },
+ { "__identifier": "patrol", "__type": "Array", "__value": [], "__tile": null, "defUid": 55, "realEditorValues": [] }
+ ]
+ },
+ {
+ "__identifier": "Door",
+ "__grid": [20,13],
+ "__pivot": [0.5,1],
+ "__tags": [],
+ "__tile": null,
+ "__smartColor": "#B7A87A",
+ "iid": "a316bd89-66b0-11ec-9cd7-69448da578ed",
+ "width": 10,
+ "height": 64,
+ "defUid": 86,
+ "px": [328,224],
+ "fieldInstances": [{ "__identifier": "locked", "__type": "Bool", "__value": false, "__tile": null, "defUid": 87, "realEditorValues": [] }]
+ },
+ {
+ "__identifier": "Chest",
+ "__grid": [4,9],
+ "__pivot": [0.5,1],
+ "__tags": [],
+ "__tile": { "x": 160, "y": 560, "w": 16, "h": 16, "tilesetUid": 104 },
+ "__smartColor": "#6ADDEC",
+ "iid": "a316bd8a-66b0-11ec-9cd7-a986f709d9f8",
+ "width": 24,
+ "height": 24,
+ "defUid": 52,
+ "px": [72,160],
+ "fieldInstances": [{ "__identifier": "content", "__type": "Array", "__value": [ "Gem", "Gem" ], "__tile": null, "defUid": 53, "realEditorValues": [ {
+ "id": "V_String",
+ "params": ["Gem"]
+ }, {
+ "id": "V_String",
+ "params": ["Gem"]
+ } ] }]
+ },
+ {
+ "__identifier": "Door",
+ "__grid": [7,8],
+ "__pivot": [0.5,1],
+ "__tags": [],
+ "__tile": null,
+ "__smartColor": "#B7A87A",
+ "iid": "a316bd8b-66b0-11ec-9cd7-27e78e24a888",
+ "width": 10,
+ "height": 32,
+ "defUid": 86,
+ "px": [120,144],
+ "fieldInstances": [{ "__identifier": "locked", "__type": "Bool", "__value": true, "__tile": null, "defUid": 87, "realEditorValues": [{
+ "id": "V_Bool",
+ "params": [ true ]
+ }] }]
+ }
+ ]
+ },
+ {
+ "__identifier": "Wall_shadows",
+ "__type": "AutoLayer",
+ "__cWid": 42,
+ "__cHei": 22,
+ "__gridSize": 16,
+ "__opacity": 0.17,
+ "__pxTotalOffsetX": 0,
+ "__pxTotalOffsetY": 0,
+ "__tilesetDefUid": 2,
+ "__tilesetRelPath": "atlas/SunnyLand_by_Ansimuz-extended.png",
+ "iid": "a316bd8c-66b0-11ec-9cd7-ef61da91c3b3",
+ "levelId": 89,
+ "layerDefUid": 97,
+ "pxOffsetX": 0,
+ "pxOffsetY": 0,
+ "visible": true,
+ "optionalRules": [],
+ "intGridCsv": [],
+ "autoLayerTiles": [
+ { "px": [128,64], "src": [336,112], "f": 0, "t": 182, "d": [99,176], "a": 1 },
+ { "px": [144,64], "src": [336,112], "f": 0, "t": 182, "d": [99,177], "a": 1 },
+ { "px": [160,64], "src": [336,112], "f": 0, "t": 182, "d": [99,178], "a": 1 },
+ { "px": [176,64], "src": [336,112], "f": 0, "t": 182, "d": [99,179], "a": 1 },
+ { "px": [192,64], "src": [336,112], "f": 0, "t": 182, "d": [99,180], "a": 1 },
+ { "px": [208,64], "src": [336,112], "f": 0, "t": 182, "d": [99,181], "a": 1 },
+ { "px": [224,64], "src": [336,112], "f": 0, "t": 182, "d": [99,182], "a": 1 },
+ { "px": [240,64], "src": [336,112], "f": 0, "t": 182, "d": [99,183], "a": 1 },
+ { "px": [256,64], "src": [336,112], "f": 0, "t": 182, "d": [99,184], "a": 1 },
+ { "px": [272,64], "src": [336,112], "f": 0, "t": 182, "d": [99,185], "a": 1 },
+ { "px": [288,64], "src": [336,112], "f": 0, "t": 182, "d": [99,186], "a": 1 },
+ { "px": [48,96], "src": [336,112], "f": 0, "t": 182, "d": [99,255], "a": 1 },
+ { "px": [64,96], "src": [336,112], "f": 0, "t": 182, "d": [99,256], "a": 1 },
+ { "px": [80,96], "src": [336,112], "f": 0, "t": 182, "d": [99,257], "a": 1 },
+ { "px": [96,96], "src": [336,112], "f": 0, "t": 182, "d": [99,258], "a": 1 },
+ { "px": [112,112], "src": [336,112], "f": 0, "t": 182, "d": [99,301], "a": 1 },
+ { "px": [112,128], "src": [336,112], "f": 2, "t": 182, "d": [99,343], "a": 1 },
+ { "px": [48,144], "src": [336,112], "f": 2, "t": 182, "d": [99,381], "a": 1 },
+ { "px": [64,144], "src": [336,112], "f": 2, "t": 182, "d": [99,382], "a": 1 },
+ { "px": [80,144], "src": [336,112], "f": 2, "t": 182, "d": [99,383], "a": 1 },
+ { "px": [96,144], "src": [336,112], "f": 2, "t": 182, "d": [99,384], "a": 1 },
+ { "px": [352,144], "src": [336,112], "f": 0, "t": 182, "d": [99,400], "a": 1 },
+ { "px": [368,144], "src": [336,112], "f": 0, "t": 182, "d": [99,401], "a": 1 },
+ { "px": [384,144], "src": [336,112], "f": 0, "t": 182, "d": [99,402], "a": 1 },
+ { "px": [400,144], "src": [336,112], "f": 0, "t": 182, "d": [99,403], "a": 1 },
+ { "px": [416,144], "src": [336,112], "f": 0, "t": 182, "d": [99,404], "a": 1 },
+ { "px": [432,144], "src": [336,112], "f": 0, "t": 182, "d": [99,405], "a": 1 },
+ { "px": [448,144], "src": [336,112], "f": 0, "t": 182, "d": [99,406], "a": 1 },
+ { "px": [304,160], "src": [336,112], "f": 0, "t": 182, "d": [99,439], "a": 1 },
+ { "px": [320,160], "src": [336,112], "f": 0, "t": 182, "d": [99,440], "a": 1 },
+ { "px": [336,160], "src": [336,112], "f": 0, "t": 182, "d": [99,441], "a": 1 },
+ { "px": [128,208], "src": [336,112], "f": 2, "t": 182, "d": [99,554], "a": 1 },
+ { "px": [144,208], "src": [336,112], "f": 2, "t": 182, "d": [99,555], "a": 1 },
+ { "px": [160,208], "src": [336,112], "f": 2, "t": 182, "d": [99,556], "a": 1 },
+ { "px": [176,208], "src": [336,112], "f": 2, "t": 182, "d": [99,557], "a": 1 },
+ { "px": [192,208], "src": [336,112], "f": 2, "t": 182, "d": [99,558], "a": 1 },
+ { "px": [208,208], "src": [336,112], "f": 2, "t": 182, "d": [99,559], "a": 1 },
+ { "px": [224,208], "src": [336,112], "f": 2, "t": 182, "d": [99,560], "a": 1 },
+ { "px": [240,208], "src": [336,112], "f": 2, "t": 182, "d": [99,561], "a": 1 },
+ { "px": [256,208], "src": [336,112], "f": 2, "t": 182, "d": [99,562], "a": 1 },
+ { "px": [272,208], "src": [336,112], "f": 2, "t": 182, "d": [99,563], "a": 1 },
+ { "px": [288,208], "src": [336,112], "f": 2, "t": 182, "d": [99,564], "a": 1 },
+ { "px": [304,208], "src": [336,112], "f": 2, "t": 182, "d": [99,565], "a": 1 },
+ { "px": [320,208], "src": [336,112], "f": 2, "t": 182, "d": [99,566], "a": 1 },
+ { "px": [336,208], "src": [336,112], "f": 2, "t": 182, "d": [99,567], "a": 1 },
+ { "px": [352,224], "src": [336,112], "f": 2, "t": 182, "d": [99,610], "a": 1 },
+ { "px": [368,224], "src": [336,112], "f": 2, "t": 182, "d": [99,611], "a": 1 },
+ { "px": [384,224], "src": [336,112], "f": 2, "t": 182, "d": [99,612], "a": 1 },
+ { "px": [400,224], "src": [336,112], "f": 2, "t": 182, "d": [99,613], "a": 1 },
+ { "px": [416,224], "src": [336,112], "f": 2, "t": 182, "d": [99,614], "a": 1 },
+ { "px": [432,224], "src": [336,112], "f": 2, "t": 182, "d": [99,615], "a": 1 },
+ { "px": [448,224], "src": [336,112], "f": 2, "t": 182, "d": [99,616], "a": 1 },
+ { "px": [336,272], "src": [336,112], "f": 0, "t": 182, "d": [99,735], "a": 1 },
+ { "px": [352,272], "src": [336,112], "f": 0, "t": 182, "d": [99,736], "a": 1 },
+ { "px": [368,272], "src": [336,112], "f": 0, "t": 182, "d": [99,737], "a": 1 },
+ { "px": [384,272], "src": [336,112], "f": 0, "t": 182, "d": [99,738], "a": 1 },
+ { "px": [416,272], "src": [336,112], "f": 0, "t": 182, "d": [99,740], "a": 1 },
+ { "px": [128,64], "src": [320,128], "f": 0, "t": 204, "d": [100,176], "a": 1 },
+ { "px": [288,64], "src": [320,128], "f": 1, "t": 204, "d": [100,186], "a": 1 },
+ { "px": [128,80], "src": [320,128], "f": 0, "t": 204, "d": [100,218], "a": 1 },
+ { "px": [288,80], "src": [320,128], "f": 1, "t": 204, "d": [100,228], "a": 1 },
+ { "px": [48,96], "src": [320,128], "f": 0, "t": 204, "d": [100,255], "a": 1 },
+ { "px": [96,96], "src": [320,128], "f": 1, "t": 204, "d": [100,258], "a": 1 },
+ { "px": [128,96], "src": [320,128], "f": 0, "t": 204, "d": [100,260], "a": 1 },
+ { "px": [288,96], "src": [320,128], "f": 1, "t": 204, "d": [100,270], "a": 1 },
+ { "px": [48,112], "src": [320,128], "f": 0, "t": 204, "d": [100,297], "a": 1 },
+ { "px": [288,112], "src": [320,128], "f": 1, "t": 204, "d": [100,312], "a": 1 },
+ { "px": [48,128], "src": [320,128], "f": 0, "t": 204, "d": [100,339], "a": 1 },
+ { "px": [288,128], "src": [320,128], "f": 1, "t": 204, "d": [100,354], "a": 1 },
+ { "px": [48,144], "src": [320,128], "f": 0, "t": 204, "d": [100,381], "a": 1 },
+ { "px": [96,144], "src": [320,128], "f": 1, "t": 204, "d": [100,384], "a": 1 },
+ { "px": [128,144], "src": [320,128], "f": 0, "t": 204, "d": [100,386], "a": 1 },
+ { "px": [288,144], "src": [320,128], "f": 1, "t": 204, "d": [100,396], "a": 1 },
+ { "px": [352,144], "src": [320,128], "f": 0, "t": 204, "d": [100,400], "a": 1 },
+ { "px": [448,144], "src": [320,128], "f": 1, "t": 204, "d": [100,406], "a": 1 },
+ { "px": [144,160], "src": [320,128], "f": 0, "t": 204, "d": [100,429], "a": 1 },
+ { "px": [448,160], "src": [320,128], "f": 1, "t": 204, "d": [100,448], "a": 1 },
+ { "px": [128,176], "src": [320,128], "f": 0, "t": 204, "d": [100,470], "a": 1 },
+ { "px": [448,176], "src": [320,128], "f": 1, "t": 204, "d": [100,490], "a": 1 },
+ { "px": [128,192], "src": [320,128], "f": 0, "t": 204, "d": [100,512], "a": 1 },
+ { "px": [448,192], "src": [320,128], "f": 1, "t": 204, "d": [100,532], "a": 1 },
+ { "px": [128,208], "src": [320,128], "f": 0, "t": 204, "d": [100,554], "a": 1 },
+ { "px": [448,208], "src": [320,128], "f": 1, "t": 204, "d": [100,574], "a": 1 },
+ { "px": [352,224], "src": [320,128], "f": 0, "t": 204, "d": [100,610], "a": 1 },
+ { "px": [448,224], "src": [320,128], "f": 1, "t": 204, "d": [100,616], "a": 1 },
+ { "px": [336,272], "src": [320,128], "f": 0, "t": 204, "d": [100,735], "a": 1 },
+ { "px": [384,272], "src": [320,128], "f": 1, "t": 204, "d": [100,738], "a": 1 },
+ { "px": [416,272], "src": [320,128], "f": 0, "t": 204, "d": [100,740], "a": 1 },
+ { "px": [336,288], "src": [320,128], "f": 0, "t": 204, "d": [100,777], "a": 1 },
+ { "px": [384,288], "src": [320,128], "f": 1, "t": 204, "d": [100,780], "a": 1 },
+ { "px": [416,288], "src": [320,128], "f": 0, "t": 204, "d": [100,782], "a": 1 },
+ { "px": [336,304], "src": [320,128], "f": 0, "t": 204, "d": [100,819], "a": 1 },
+ { "px": [384,304], "src": [320,128], "f": 1, "t": 204, "d": [100,822], "a": 1 },
+ { "px": [416,304], "src": [320,128], "f": 0, "t": 204, "d": [100,824], "a": 1 },
+ { "px": [336,320], "src": [320,128], "f": 0, "t": 204, "d": [100,861], "a": 1 },
+ { "px": [384,320], "src": [320,128], "f": 1, "t": 204, "d": [100,864], "a": 1 },
+ { "px": [416,320], "src": [320,128], "f": 0, "t": 204, "d": [100,866], "a": 1 }
+ ],
+ "seed": 4893029,
+ "overrideTilesetUid": null,
+ "gridTiles": [],
+ "entityInstances": []
+ },
+ {
+ "__identifier": "Collisions",
+ "__type": "IntGrid",
+ "__cWid": 42,
+ "__cHei": 22,
+ "__gridSize": 16,
+ "__opacity": 1,
+ "__pxTotalOffsetX": 0,
+ "__pxTotalOffsetY": 0,
+ "__tilesetDefUid": 2,
+ "__tilesetRelPath": "atlas/SunnyLand_by_Ansimuz-extended.png",
+ "iid": "a316e490-66b0-11ec-9cd7-774a8b98c637",
+ "levelId": 89,
+ "layerDefUid": 1,
+ "pxOffsetX": 0,
+ "pxOffsetY": 0,
+ "visible": true,
+ "optionalRules": [],
+ "intGridCsv": [
+ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
+ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
+ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
+ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
+ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
+ 1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
+ 1,1,3,3,3,3,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
+ 1,1,1,1,1,1,1,1,1,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,
+ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,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,1,1,1,1,1,1,1,1,1,1,1,1,1,3,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,1,1,1,1,1,1,1,1,1,1,1,1,1,3,0,0,0,0,
+ 1,0,0,0,0,0,0,0,0,0,0,0,3,3,3,0,0,0,0,0,0,0,3,3,1,1,1,1,1,1,1,1,1,1,1,
+ 1,1,3,3,3,3,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,1,1,1,1,
+ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,
+ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
+ 1,1,1,3,3,3,3,3,3,3,3,3,3,3,3,0,0,0,0,0,0,0,3,3,1,1,1,1,1,1,1,1,1,1,1,
+ 1,1,1,1,1,1,1,1,1,1,1,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,3,3,3,3,3,1,1,1,1,
+ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,3,3,3,3,3,3,2,3,3,
+ 3,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,3,3,
+ 0,0,0,0,2,0,3,3,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
+ 1,1,1,1,3,3,3,0,0,0,0,2,0,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
+ 1,1,1,1,1,1,1,1,1,1,1,3,3,3,0,0,0,0,2,0,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,
+ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,3,3,3,3,3,0,0,0,0,2,0,3,3,1,1,1,1,1,1,
+ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,3,3,3,3,3,3,2,3,3,3,3,3,
+ 3,1,1,1,1,1,1,1,1,1,1,1,1,1
+ ],
+ "autoLayerTiles": [
+ { "px": [96,16], "src": [32,32], "f": 0, "t": 48, "d": [13,48], "a": 1 },
+ { "px": [112,16], "src": [32,32], "f": 0, "t": 48, "d": [13,49], "a": 1 },
+ { "px": [176,16], "src": [32,32], "f": 0, "t": 48, "d": [13,53], "a": 1 },
+ { "px": [304,16], "src": [32,32], "f": 0, "t": 48, "d": [13,61], "a": 1 },
+ { "px": [320,16], "src": [32,32], "f": 0, "t": 48, "d": [13,62], "a": 1 },
+ { "px": [0,32], "src": [32,32], "f": 0, "t": 48, "d": [13,84], "a": 1 },
+ { "px": [16,32], "src": [32,32], "f": 0, "t": 48, "d": [13,85], "a": 1 },
+ { "px": [32,32], "src": [32,32], "f": 0, "t": 48, "d": [13,86], "a": 1 },
+ { "px": [48,32], "src": [32,32], "f": 0, "t": 48, "d": [13,87], "a": 1 },
+ { "px": [64,32], "src": [32,32], "f": 0, "t": 48, "d": [13,88], "a": 1 },
+ { "px": [80,32], "src": [32,32], "f": 0, "t": 48, "d": [13,89], "a": 1 },
+ { "px": [96,32], "src": [32,32], "f": 0, "t": 48, "d": [13,90], "a": 1 },
+ { "px": [112,32], "src": [32,32], "f": 0, "t": 48, "d": [13,91], "a": 1 },
+ { "px": [144,32], "src": [32,32], "f": 0, "t": 48, "d": [13,93], "a": 1 },
+ { "px": [272,32], "src": [32,32], "f": 0, "t": 48, "d": [13,101], "a": 1 },
+ { "px": [288,32], "src": [32,32], "f": 0, "t": 48, "d": [13,102], "a": 1 },
+ { "px": [304,32], "src": [32,32], "f": 0, "t": 48, "d": [13,103], "a": 1 },
+ { "px": [320,32], "src": [32,32], "f": 0, "t": 48, "d": [13,104], "a": 1 },
+ { "px": [336,32], "src": [32,32], "f": 0, "t": 48, "d": [13,105], "a": 1 },
+ { "px": [0,48], "src": [32,32], "f": 0, "t": 48, "d": [13,126], "a": 1 },
+ { "px": [16,48], "src": [32,32], "f": 0, "t": 48, "d": [13,127], "a": 1 },
+ { "px": [32,48], "src": [32,32], "f": 0, "t": 48, "d": [13,128], "a": 1 },
+ { "px": [48,48], "src": [32,32], "f": 0, "t": 48, "d": [13,129], "a": 1 },
+ { "px": [64,48], "src": [32,32], "f": 0, "t": 48, "d": [13,130], "a": 1 },
+ { "px": [80,48], "src": [32,32], "f": 0, "t": 48, "d": [13,131], "a": 1 },
+ { "px": [96,48], "src": [32,32], "f": 0, "t": 48, "d": [13,132], "a": 1 },
+ { "px": [304,48], "src": [32,32], "f": 0, "t": 48, "d": [13,145], "a": 1 },
+ { "px": [320,48], "src": [32,32], "f": 0, "t": 48, "d": [13,146], "a": 1 },
+ { "px": [336,48], "src": [32,32], "f": 0, "t": 48, "d": [13,147], "a": 1 },
+ { "px": [0,64], "src": [32,32], "f": 0, "t": 48, "d": [13,168], "a": 1 },
+ { "px": [16,64], "src": [32,32], "f": 0, "t": 48, "d": [13,169], "a": 1 },
+ { "px": [320,64], "src": [32,32], "f": 0, "t": 48, "d": [13,188], "a": 1 },
+ { "px": [336,64], "src": [32,32], "f": 0, "t": 48, "d": [13,189], "a": 1 },
+ { "px": [352,64], "src": [32,32], "f": 0, "t": 48, "d": [13,190], "a": 1 },
+ { "px": [368,64], "src": [32,32], "f": 0, "t": 48, "d": [13,191], "a": 1 },
+ { "px": [384,64], "src": [32,32], "f": 0, "t": 48, "d": [13,192], "a": 1 },
+ { "px": [400,64], "src": [32,32], "f": 0, "t": 48, "d": [13,193], "a": 1 },
+ { "px": [416,64], "src": [32,32], "f": 0, "t": 48, "d": [13,194], "a": 1 },
+ { "px": [432,64], "src": [32,32], "f": 0, "t": 48, "d": [13,195], "a": 1 },
+ { "px": [448,64], "src": [32,32], "f": 0, "t": 48, "d": [13,196], "a": 1 },
+ { "px": [464,64], "src": [32,32], "f": 0, "t": 48, "d": [13,197], "a": 1 },
+ { "px": [480,64], "src": [32,32], "f": 0, "t": 48, "d": [13,198], "a": 1 },
+ { "px": [496,64], "src": [32,32], "f": 0, "t": 48, "d": [13,199], "a": 1 },
+ { "px": [512,64], "src": [32,32], "f": 0, "t": 48, "d": [13,200], "a": 1 },
+ { "px": [0,80], "src": [32,32], "f": 0, "t": 48, "d": [13,210], "a": 1 },
+ { "px": [336,80], "src": [32,32], "f": 0, "t": 48, "d": [13,231], "a": 1 },
+ { "px": [352,80], "src": [32,32], "f": 0, "t": 48, "d": [13,232], "a": 1 },
+ { "px": [368,80], "src": [32,32], "f": 0, "t": 48, "d": [13,233], "a": 1 },
+ { "px": [384,80], "src": [32,32], "f": 0, "t": 48, "d": [13,234], "a": 1 },
+ { "px": [400,80], "src": [32,32], "f": 0, "t": 48, "d": [13,235], "a": 1 },
+ { "px": [416,80], "src": [32,32], "f": 0, "t": 48, "d": [13,236], "a": 1 },
+ { "px": [432,80], "src": [32,32], "f": 0, "t": 48, "d": [13,237], "a": 1 },
+ { "px": [448,80], "src": [32,32], "f": 0, "t": 48, "d": [13,238], "a": 1 },
+ { "px": [464,80], "src": [32,32], "f": 0, "t": 48, "d": [13,239], "a": 1 },
+ { "px": [480,80], "src": [32,32], "f": 0, "t": 48, "d": [13,240], "a": 1 },
+ { "px": [496,80], "src": [32,32], "f": 0, "t": 48, "d": [13,241], "a": 1 },
+ { "px": [512,80], "src": [32,32], "f": 0, "t": 48, "d": [13,242], "a": 1 },
+ { "px": [528,80], "src": [32,32], "f": 0, "t": 48, "d": [13,243], "a": 1 },
+ { "px": [0,96], "src": [32,32], "f": 0, "t": 48, "d": [13,252], "a": 1 },
+ { "px": [496,96], "src": [32,32], "f": 0, "t": 48, "d": [13,283], "a": 1 },
+ { "px": [512,96], "src": [32,32], "f": 0, "t": 48, "d": [13,284], "a": 1 },
+ { "px": [528,96], "src": [32,32], "f": 0, "t": 48, "d": [13,285], "a": 1 },
+ { "px": [0,112], "src": [32,32], "f": 0, "t": 48, "d": [13,294], "a": 1 },
+ { "px": [512,112], "src": [32,32], "f": 0, "t": 48, "d": [13,326], "a": 1 },
+ { "px": [0,128], "src": [32,32], "f": 0, "t": 48, "d": [13,336], "a": 1 },
+ { "px": [512,128], "src": [32,32], "f": 0, "t": 48, "d": [13,368], "a": 1 },
+ { "px": [528,128], "src": [32,32], "f": 0, "t": 48, "d": [13,369], "a": 1 },
+ { "px": [0,144], "src": [32,32], "f": 0, "t": 48, "d": [13,378], "a": 1 },
+ { "px": [512,144], "src": [32,32], "f": 0, "t": 48, "d": [13,410], "a": 1 },
+ { "px": [528,144], "src": [32,32], "f": 0, "t": 48, "d": [13,411], "a": 1 },
+ { "px": [512,160], "src": [32,32], "f": 0, "t": 48, "d": [13,452], "a": 1 },
+ { "px": [0,176], "src": [32,32], "f": 0, "t": 48, "d": [13,462], "a": 1 },
+ { "px": [16,176], "src": [32,32], "f": 0, "t": 48, "d": [13,463], "a": 1 },
+ { "px": [0,192], "src": [32,32], "f": 0, "t": 48, "d": [13,504], "a": 1 },
+ { "px": [96,192], "src": [32,32], "f": 0, "t": 48, "d": [13,510], "a": 1 },
+ { "px": [16,208], "src": [32,32], "f": 0, "t": 48, "d": [13,547], "a": 1 },
+ { "px": [80,208], "src": [32,32], "f": 0, "t": 48, "d": [13,551], "a": 1 },
+ { "px": [528,208], "src": [32,32], "f": 0, "t": 48, "d": [13,579], "a": 1 },
+ { "px": [112,240], "src": [32,32], "f": 0, "t": 48, "d": [13,637], "a": 1 },
+ { "px": [96,256], "src": [32,32], "f": 0, "t": 48, "d": [13,678], "a": 1 },
+ { "px": [112,256], "src": [32,32], "f": 0, "t": 48, "d": [13,679], "a": 1 },
+ { "px": [128,256], "src": [32,32], "f": 0, "t": 48, "d": [13,680], "a": 1 },
+ { "px": [512,256], "src": [32,32], "f": 0, "t": 48, "d": [13,704], "a": 1 },
+ { "px": [144,272], "src": [32,32], "f": 0, "t": 48, "d": [13,723], "a": 1 },
+ { "px": [528,272], "src": [32,32], "f": 0, "t": 48, "d": [13,747], "a": 1 },
+ { "px": [144,288], "src": [32,32], "f": 0, "t": 48, "d": [13,765], "a": 1 },
+ { "px": [512,288], "src": [32,32], "f": 0, "t": 48, "d": [13,788], "a": 1 },
+ { "px": [528,288], "src": [32,32], "f": 0, "t": 48, "d": [13,789], "a": 1 },
+ { "px": [480,304], "src": [32,32], "f": 0, "t": 48, "d": [13,828], "a": 1 },
+ { "px": [512,304], "src": [32,32], "f": 0, "t": 48, "d": [13,830], "a": 1 },
+ { "px": [528,304], "src": [32,32], "f": 0, "t": 48, "d": [13,831], "a": 1 },
+ { "px": [496,320], "src": [32,32], "f": 0, "t": 48, "d": [13,871], "a": 1 },
+ { "px": [512,320], "src": [32,32], "f": 0, "t": 48, "d": [13,872], "a": 1 },
+ { "px": [192,336], "src": [32,32], "f": 0, "t": 48, "d": [13,894], "a": 1 },
+ { "px": [208,336], "src": [32,32], "f": 0, "t": 48, "d": [13,895], "a": 1 },
+ { "px": [480,336], "src": [32,32], "f": 0, "t": 48, "d": [13,912], "a": 1 },
+ { "px": [496,336], "src": [32,32], "f": 0, "t": 48, "d": [13,913], "a": 1 },
+ { "px": [144,16], "src": [96,96], "f": 0, "t": 144, "d": [81,51], "a": 1 },
+ { "px": [192,16], "src": [96,96], "f": 0, "t": 144, "d": [81,54], "a": 1 },
+ { "px": [240,16], "src": [96,96], "f": 0, "t": 144, "d": [81,57], "a": 1 },
+ { "px": [256,16], "src": [96,96], "f": 0, "t": 144, "d": [81,58], "a": 1 },
+ { "px": [272,16], "src": [96,96], "f": 0, "t": 144, "d": [81,59], "a": 1 },
+ { "px": [176,32], "src": [96,96], "f": 0, "t": 144, "d": [81,95], "a": 1 },
+ { "px": [192,32], "src": [96,96], "f": 0, "t": 144, "d": [81,96], "a": 1 },
+ { "px": [208,32], "src": [96,96], "f": 0, "t": 144, "d": [81,97], "a": 1 },
+ { "px": [240,32], "src": [96,96], "f": 0, "t": 144, "d": [81,99], "a": 1 },
+ { "px": [256,32], "src": [96,96], "f": 0, "t": 144, "d": [81,100], "a": 1 },
+ { "px": [528,160], "src": [96,96], "f": 0, "t": 144, "d": [81,453], "a": 1 },
+ { "px": [16,192], "src": [96,96], "f": 0, "t": 144, "d": [81,505], "a": 1 },
+ { "px": [48,192], "src": [96,96], "f": 0, "t": 144, "d": [81,507], "a": 1 },
+ { "px": [64,192], "src": [96,96], "f": 0, "t": 144, "d": [81,508], "a": 1 },
+ { "px": [512,192], "src": [96,96], "f": 0, "t": 144, "d": [81,536], "a": 1 },
+ { "px": [48,208], "src": [96,96], "f": 0, "t": 144, "d": [81,549], "a": 1 },
+ { "px": [64,208], "src": [96,96], "f": 0, "t": 144, "d": [81,550], "a": 1 },
+ { "px": [96,208], "src": [96,96], "f": 0, "t": 144, "d": [81,552], "a": 1 },
+ { "px": [96,224], "src": [96,96], "f": 0, "t": 144, "d": [81,594], "a": 1 },
+ { "px": [80,240], "src": [96,96], "f": 0, "t": 144, "d": [81,635], "a": 1 },
+ { "px": [96,240], "src": [96,96], "f": 0, "t": 144, "d": [81,636], "a": 1 },
+ { "px": [128,240], "src": [96,96], "f": 0, "t": 144, "d": [81,638], "a": 1 },
+ { "px": [144,256], "src": [96,96], "f": 0, "t": 144, "d": [81,681], "a": 1 },
+ { "px": [160,256], "src": [96,96], "f": 0, "t": 144, "d": [81,682], "a": 1 },
+ { "px": [160,272], "src": [96,96], "f": 0, "t": 144, "d": [81,724], "a": 1 },
+ { "px": [192,272], "src": [96,96], "f": 0, "t": 144, "d": [81,726], "a": 1 },
+ { "px": [224,272], "src": [96,96], "f": 0, "t": 144, "d": [81,728], "a": 1 },
+ { "px": [240,272], "src": [96,96], "f": 0, "t": 144, "d": [81,729], "a": 1 },
+ { "px": [256,272], "src": [96,96], "f": 0, "t": 144, "d": [81,730], "a": 1 },
+ { "px": [208,288], "src": [96,96], "f": 0, "t": 144, "d": [81,769], "a": 1 },
+ { "px": [224,288], "src": [96,96], "f": 0, "t": 144, "d": [81,770], "a": 1 },
+ { "px": [240,288], "src": [96,96], "f": 0, "t": 144, "d": [81,771], "a": 1 },
+ { "px": [192,304], "src": [96,96], "f": 0, "t": 144, "d": [81,810], "a": 1 },
+ { "px": [208,304], "src": [96,96], "f": 0, "t": 144, "d": [81,811], "a": 1 },
+ { "px": [224,304], "src": [96,96], "f": 0, "t": 144, "d": [81,812], "a": 1 },
+ { "px": [496,304], "src": [96,96], "f": 0, "t": 144, "d": [81,829], "a": 1 },
+ { "px": [192,320], "src": [96,96], "f": 0, "t": 144, "d": [81,852], "a": 1 },
+ { "px": [208,320], "src": [96,96], "f": 0, "t": 144, "d": [81,853], "a": 1 },
+ { "px": [128,16], "src": [96,96], "f": 0, "t": 144, "d": [14,50], "a": 1 },
+ { "px": [160,16], "src": [96,96], "f": 0, "t": 144, "d": [14,52], "a": 1 },
+ { "px": [208,16], "src": [64,96], "f": 0, "t": 142, "d": [14,55], "a": 1 },
+ { "px": [224,16], "src": [96,96], "f": 0, "t": 144, "d": [14,56], "a": 1 },
+ { "px": [288,16], "src": [64,96], "f": 0, "t": 142, "d": [14,60], "a": 1 },
+ { "px": [128,32], "src": [64,96], "f": 0, "t": 142, "d": [14,92], "a": 1 },
+ { "px": [160,32], "src": [64,96], "f": 0, "t": 142, "d": [14,94], "a": 1 },
+ { "px": [224,32], "src": [96,96], "f": 0, "t": 144, "d": [14,98], "a": 1 },
+ { "px": [112,48], "src": [64,96], "f": 0, "t": 142, "d": [14,133], "a": 1 },
+ { "px": [320,80], "src": [64,96], "f": 0, "t": 142, "d": [14,230], "a": 1 },
+ { "px": [528,112], "src": [64,96], "f": 0, "t": 142, "d": [14,327], "a": 1 },
+ { "px": [0,160], "src": [64,96], "f": 0, "t": 142, "d": [14,420], "a": 1 },
+ { "px": [512,176], "src": [96,96], "f": 0, "t": 144, "d": [14,494], "a": 1 },
+ { "px": [528,176], "src": [96,96], "f": 0, "t": 144, "d": [14,495], "a": 1 },
+ { "px": [32,192], "src": [96,96], "f": 0, "t": 144, "d": [14,506], "a": 1 },
+ { "px": [80,192], "src": [64,96], "f": 0, "t": 142, "d": [14,509], "a": 1 },
+ { "px": [528,192], "src": [64,96], "f": 0, "t": 142, "d": [14,537], "a": 1 },
+ { "px": [0,208], "src": [64,96], "f": 0, "t": 142, "d": [14,546], "a": 1 },
+ { "px": [32,208], "src": [64,96], "f": 0, "t": 142, "d": [14,548], "a": 1 },
+ { "px": [512,208], "src": [96,96], "f": 0, "t": 144, "d": [14,578], "a": 1 },
+ { "px": [80,224], "src": [64,96], "f": 0, "t": 142, "d": [14,593], "a": 1 },
+ { "px": [112,224], "src": [64,96], "f": 0, "t": 142, "d": [14,595], "a": 1 },
+ { "px": [512,224], "src": [64,96], "f": 0, "t": 142, "d": [14,620], "a": 1 },
+ { "px": [528,224], "src": [64,96], "f": 0, "t": 142, "d": [14,621], "a": 1 },
+ { "px": [144,240], "src": [96,96], "f": 0, "t": 144, "d": [14,639], "a": 1 },
+ { "px": [512,240], "src": [64,96], "f": 0, "t": 142, "d": [14,662], "a": 1 },
+ { "px": [528,240], "src": [64,96], "f": 0, "t": 142, "d": [14,663], "a": 1 },
+ { "px": [528,256], "src": [64,96], "f": 0, "t": 142, "d": [14,705], "a": 1 },
+ { "px": [128,272], "src": [64,96], "f": 0, "t": 142, "d": [14,722], "a": 1 },
+ { "px": [176,272], "src": [96,96], "f": 0, "t": 144, "d": [14,725], "a": 1 },
+ { "px": [208,272], "src": [64,96], "f": 0, "t": 142, "d": [14,727], "a": 1 },
+ { "px": [512,272], "src": [64,96], "f": 0, "t": 142, "d": [14,746], "a": 1 },
+ { "px": [160,288], "src": [96,96], "f": 0, "t": 144, "d": [14,766], "a": 1 },
+ { "px": [176,288], "src": [64,96], "f": 0, "t": 142, "d": [14,767], "a": 1 },
+ { "px": [192,288], "src": [64,96], "f": 0, "t": 142, "d": [14,768], "a": 1 },
+ { "px": [256,288], "src": [64,96], "f": 0, "t": 142, "d": [14,772], "a": 1 },
+ { "px": [496,288], "src": [96,96], "f": 0, "t": 144, "d": [14,787], "a": 1 },
+ { "px": [480,320], "src": [64,96], "f": 0, "t": 142, "d": [14,870], "a": 1 },
+ { "px": [112,64], "src": [0,32], "f": 1, "t": 46, "d": [16,175], "a": 1 },
+ { "px": [304,64], "src": [0,32], "f": 0, "t": 46, "d": [16,187], "a": 1 },
+ { "px": [16,80], "src": [0,32], "f": 1, "t": 46, "d": [16,211], "a": 1 },
+ { "px": [112,80], "src": [0,32], "f": 0, "t": 46, "d": [16,217], "a": 1 },
+ { "px": [304,80], "src": [0,32], "f": 0, "t": 46, "d": [16,229], "a": 1 },
+ { "px": [16,96], "src": [0,32], "f": 1, "t": 46, "d": [16,253], "a": 1 },
+ { "px": [16,112], "src": [0,32], "f": 1, "t": 46, "d": [16,295], "a": 1 },
+ { "px": [496,112], "src": [0,32], "f": 0, "t": 46, "d": [16,325], "a": 1 },
+ { "px": [16,128], "src": [0,32], "f": 1, "t": 46, "d": [16,337], "a": 1 },
+ { "px": [496,128], "src": [0,32], "f": 0, "t": 46, "d": [16,367], "a": 1 },
+ { "px": [16,144], "src": [0,32], "f": 1, "t": 46, "d": [16,379], "a": 1 },
+ { "px": [496,144], "src": [0,32], "f": 0, "t": 46, "d": [16,409], "a": 1 },
+ { "px": [16,160], "src": [0,32], "f": 1, "t": 46, "d": [16,421], "a": 1 },
+ { "px": [496,160], "src": [0,32], "f": 0, "t": 46, "d": [16,451], "a": 1 },
+ { "px": [112,176], "src": [0,32], "f": 1, "t": 46, "d": [16,469], "a": 1 },
+ { "px": [496,176], "src": [0,32], "f": 0, "t": 46, "d": [16,493], "a": 1 },
+ { "px": [112,192], "src": [0,32], "f": 1, "t": 46, "d": [16,511], "a": 1 },
+ { "px": [496,192], "src": [0,32], "f": 0, "t": 46, "d": [16,535], "a": 1 },
+ { "px": [112,208], "src": [0,32], "f": 1, "t": 46, "d": [16,553], "a": 1 },
+ { "px": [496,208], "src": [0,32], "f": 0, "t": 46, "d": [16,577], "a": 1 },
+ { "px": [496,224], "src": [0,32], "f": 0, "t": 46, "d": [16,619], "a": 1 },
+ { "px": [496,240], "src": [0,32], "f": 0, "t": 46, "d": [16,661], "a": 1 },
+ { "px": [496,256], "src": [0,32], "f": 0, "t": 46, "d": [16,703], "a": 1 },
+ { "px": [272,272], "src": [0,32], "f": 1, "t": 46, "d": [16,731], "a": 1 },
+ { "px": [496,272], "src": [0,32], "f": 0, "t": 46, "d": [16,745], "a": 1 },
+ { "px": [272,288], "src": [0,32], "f": 1, "t": 46, "d": [16,773], "a": 1 },
+ { "px": [464,304], "src": [0,32], "f": 0, "t": 46, "d": [16,827], "a": 1 },
+ { "px": [224,320], "src": [0,32], "f": 1, "t": 46, "d": [16,854], "a": 1 },
+ { "px": [464,320], "src": [0,32], "f": 0, "t": 46, "d": [16,869], "a": 1 },
+ { "px": [224,336], "src": [0,32], "f": 1, "t": 46, "d": [16,896], "a": 1 },
+ { "px": [464,336], "src": [0,32], "f": 0, "t": 46, "d": [16,911], "a": 1 },
+ { "px": [128,48], "src": [32,64], "f": 0, "t": 94, "d": [18,134], "a": 1 },
+ { "px": [144,48], "src": [32,64], "f": 0, "t": 94, "d": [18,135], "a": 1 },
+ { "px": [160,48], "src": [32,64], "f": 0, "t": 94, "d": [18,136], "a": 1 },
+ { "px": [192,48], "src": [32,64], "f": 0, "t": 94, "d": [18,138], "a": 1 },
+ { "px": [208,48], "src": [32,64], "f": 0, "t": 94, "d": [18,139], "a": 1 },
+ { "px": [224,48], "src": [32,64], "f": 0, "t": 94, "d": [18,140], "a": 1 },
+ { "px": [240,48], "src": [32,64], "f": 0, "t": 94, "d": [18,141], "a": 1 },
+ { "px": [272,48], "src": [32,64], "f": 0, "t": 94, "d": [18,143], "a": 1 },
+ { "px": [288,48], "src": [32,64], "f": 0, "t": 94, "d": [18,144], "a": 1 },
+ { "px": [32,64], "src": [32,64], "f": 0, "t": 94, "d": [18,170], "a": 1 },
+ { "px": [48,64], "src": [32,64], "f": 0, "t": 94, "d": [18,171], "a": 1 },
+ { "px": [64,64], "src": [32,64], "f": 0, "t": 94, "d": [18,172], "a": 1 },
+ { "px": [80,64], "src": [32,64], "f": 0, "t": 94, "d": [18,173], "a": 1 },
+ { "px": [96,64], "src": [32,64], "f": 0, "t": 94, "d": [18,174], "a": 1 },
+ { "px": [320,96], "src": [32,64], "f": 0, "t": 94, "d": [18,272], "a": 1 },
+ { "px": [336,96], "src": [32,64], "f": 0, "t": 94, "d": [18,273], "a": 1 },
+ { "px": [352,96], "src": [32,64], "f": 0, "t": 94, "d": [18,274], "a": 1 },
+ { "px": [368,96], "src": [32,64], "f": 0, "t": 94, "d": [18,275], "a": 1 },
+ { "px": [384,96], "src": [32,64], "f": 0, "t": 94, "d": [18,276], "a": 1 },
+ { "px": [400,96], "src": [32,64], "f": 0, "t": 94, "d": [18,277], "a": 1 },
+ { "px": [416,96], "src": [32,64], "f": 0, "t": 94, "d": [18,278], "a": 1 },
+ { "px": [432,96], "src": [32,64], "f": 0, "t": 94, "d": [18,279], "a": 1 },
+ { "px": [448,96], "src": [32,64], "f": 0, "t": 94, "d": [18,280], "a": 1 },
+ { "px": [464,96], "src": [32,64], "f": 0, "t": 94, "d": [18,281], "a": 1 },
+ { "px": [480,96], "src": [32,64], "f": 0, "t": 94, "d": [18,282], "a": 1 },
+ { "px": [240,304], "src": [32,64], "f": 0, "t": 94, "d": [18,813], "a": 1 },
+ { "px": [256,304], "src": [32,64], "f": 0, "t": 94, "d": [18,814], "a": 1 },
+ { "px": [112,96], "src": [0,64], "f": 0, "t": 92, "d": [17,259], "a": 1 },
+ { "px": [304,96], "src": [0,64], "f": 0, "t": 92, "d": [17,271], "a": 1 },
+ { "px": [272,304], "src": [0,64], "f": 1, "t": 92, "d": [17,815], "a": 1 },
+ { "px": [128,64], "src": [64,144], "f": 0, "t": 211, "d": [29,176], "a": 1 },
+ { "px": [288,64], "src": [48,160], "f": 1, "t": 233, "d": [29,186], "a": 1 },
+ { "px": [112,96], "src": [64,224], "f": 2, "t": 326, "d": [31,259], "a": 1 },
+ { "px": [304,96], "src": [64,224], "f": 2, "t": 326, "d": [31,271], "a": 1 },
+ { "px": [272,304], "src": [64,224], "f": 3, "t": 326, "d": [31,815], "a": 1 },
+ { "px": [112,48], "src": [64,144], "f": 3, "t": 211, "d": [32,133], "a": 1 },
+ { "px": [304,48], "src": [64,144], "f": 2, "t": 211, "d": [32,145], "a": 1 },
+ { "px": [16,64], "src": [64,144], "f": 3, "t": 211, "d": [32,169], "a": 1 },
+ { "px": [112,64], "src": [64,144], "f": 2, "t": 211, "d": [32,175], "a": 1 },
+ { "px": [496,96], "src": [64,144], "f": 2, "t": 211, "d": [32,283], "a": 1 },
+ { "px": [16,176], "src": [64,144], "f": 1, "t": 211, "d": [32,463], "a": 1 },
+ { "px": [112,176], "src": [64,144], "f": 0, "t": 211, "d": [32,469], "a": 1 },
+ { "px": [112,224], "src": [64,144], "f": 1, "t": 211, "d": [32,595], "a": 1 },
+ { "px": [144,240], "src": [64,144], "f": 1, "t": 211, "d": [32,639], "a": 1 },
+ { "px": [160,256], "src": [64,144], "f": 1, "t": 211, "d": [32,682], "a": 1 },
+ { "px": [496,288], "src": [64,144], "f": 0, "t": 211, "d": [32,787], "a": 1 },
+ { "px": [224,304], "src": [64,144], "f": 3, "t": 211, "d": [32,812], "a": 1 },
+ { "px": [112,144], "src": [32,0], "f": 0, "t": 2, "d": [12,385], "a": 1 },
+ { "px": [32,176], "src": [32,0], "f": 0, "t": 2, "d": [12,464], "a": 1 },
+ { "px": [48,176], "src": [32,0], "f": 0, "t": 2, "d": [12,465], "a": 1 },
+ { "px": [64,176], "src": [32,0], "f": 0, "t": 2, "d": [12,466], "a": 1 },
+ { "px": [80,176], "src": [32,0], "f": 0, "t": 2, "d": [12,467], "a": 1 },
+ { "px": [96,176], "src": [32,0], "f": 0, "t": 2, "d": [12,468], "a": 1 },
+ { "px": [128,224], "src": [32,0], "f": 0, "t": 2, "d": [12,596], "a": 1 },
+ { "px": [144,224], "src": [32,0], "f": 0, "t": 2, "d": [12,597], "a": 1 },
+ { "px": [160,240], "src": [32,0], "f": 0, "t": 2, "d": [12,640], "a": 1 },
+ { "px": [176,256], "src": [32,0], "f": 0, "t": 2, "d": [12,683], "a": 1 },
+ { "px": [192,256], "src": [32,0], "f": 0, "t": 2, "d": [12,684], "a": 1 },
+ { "px": [208,256], "src": [32,0], "f": 0, "t": 2, "d": [12,685], "a": 1 },
+ { "px": [224,256], "src": [32,0], "f": 0, "t": 2, "d": [12,686], "a": 1 },
+ { "px": [240,256], "src": [32,0], "f": 0, "t": 2, "d": [12,687], "a": 1 },
+ { "px": [256,256], "src": [32,0], "f": 0, "t": 2, "d": [12,688], "a": 1 },
+ { "px": [272,256], "src": [32,0], "f": 0, "t": 2, "d": [12,689], "a": 1 },
+ { "px": [464,288], "src": [32,0], "f": 0, "t": 2, "d": [12,785], "a": 1 },
+ { "px": [480,288], "src": [32,0], "f": 0, "t": 2, "d": [12,786], "a": 1 },
+ { "px": [128,208], "src": [192,0], "f": 1, "t": 12, "d": [36,554], "a": 1 },
+ { "px": [320,128], "src": [256,128], "f": 0, "t": 200, "d": [58,356], "a": 1 },
+ { "px": [288,240], "src": [256,128], "f": 0, "t": 200, "d": [58,648], "a": 1 },
+ { "px": [304,240], "src": [256,128], "f": 0, "t": 200, "d": [58,649], "a": 1 },
+ { "px": [320,240], "src": [256,128], "f": 0, "t": 200, "d": [58,650], "a": 1 },
+ { "px": [304,256], "src": [256,128], "f": 0, "t": 200, "d": [58,691], "a": 1 },
+ { "px": [448,256], "src": [256,128], "f": 0, "t": 200, "d": [58,700], "a": 1 },
+ { "px": [464,256], "src": [256,128], "f": 0, "t": 200, "d": [58,701], "a": 1 },
+ { "px": [304,272], "src": [256,128], "f": 0, "t": 200, "d": [58,733], "a": 1 },
+ { "px": [448,272], "src": [256,128], "f": 0, "t": 200, "d": [58,742], "a": 1 },
+ { "px": [304,288], "src": [256,128], "f": 0, "t": 200, "d": [58,775], "a": 1 },
+ { "px": [304,304], "src": [256,128], "f": 0, "t": 200, "d": [58,817], "a": 1 },
+ { "px": [288,320], "src": [256,128], "f": 0, "t": 200, "d": [58,858], "a": 1 },
+ { "px": [304,320], "src": [256,128], "f": 0, "t": 200, "d": [58,859], "a": 1 },
+ { "px": [256,336], "src": [256,128], "f": 0, "t": 200, "d": [58,898], "a": 1 },
+ { "px": [272,336], "src": [256,128], "f": 0, "t": 200, "d": [58,899], "a": 1 },
+ { "px": [288,336], "src": [256,128], "f": 0, "t": 200, "d": [58,900], "a": 1 },
+ { "px": [304,336], "src": [256,128], "f": 0, "t": 200, "d": [58,901], "a": 1 },
+ { "px": [48,80], "src": [256,96], "f": 0, "t": 154, "d": [59,213], "a": 1 },
+ { "px": [64,80], "src": [256,96], "f": 0, "t": 154, "d": [59,214], "a": 1 },
+ { "px": [80,80], "src": [256,96], "f": 0, "t": 154, "d": [59,215], "a": 1 },
+ { "px": [320,112], "src": [256,96], "f": 0, "t": 154, "d": [59,314], "a": 1 },
+ { "px": [336,112], "src": [256,96], "f": 0, "t": 154, "d": [59,315], "a": 1 },
+ { "px": [352,112], "src": [256,96], "f": 0, "t": 154, "d": [59,316], "a": 1 },
+ { "px": [368,112], "src": [256,96], "f": 0, "t": 154, "d": [59,317], "a": 1 },
+ { "px": [384,112], "src": [256,96], "f": 0, "t": 154, "d": [59,318], "a": 1 },
+ { "px": [400,112], "src": [256,96], "f": 0, "t": 154, "d": [59,319], "a": 1 },
+ { "px": [416,112], "src": [256,96], "f": 0, "t": 154, "d": [59,320], "a": 1 },
+ { "px": [432,112], "src": [256,96], "f": 0, "t": 154, "d": [59,321], "a": 1 },
+ { "px": [448,112], "src": [256,96], "f": 0, "t": 154, "d": [59,322], "a": 1 },
+ { "px": [464,112], "src": [256,96], "f": 0, "t": 154, "d": [59,323], "a": 1 },
+ { "px": [352,128], "src": [256,96], "f": 2, "t": 154, "d": [59,358], "a": 1 },
+ { "px": [368,128], "src": [256,96], "f": 2, "t": 154, "d": [59,359], "a": 1 },
+ { "px": [384,128], "src": [256,96], "f": 2, "t": 154, "d": [59,360], "a": 1 },
+ { "px": [400,128], "src": [256,96], "f": 2, "t": 154, "d": [59,361], "a": 1 },
+ { "px": [416,128], "src": [256,96], "f": 2, "t": 154, "d": [59,362], "a": 1 },
+ { "px": [432,128], "src": [256,96], "f": 2, "t": 154, "d": [59,363], "a": 1 },
+ { "px": [448,128], "src": [256,96], "f": 2, "t": 154, "d": [59,364], "a": 1 },
+ { "px": [320,144], "src": [256,96], "f": 2, "t": 154, "d": [59,398], "a": 1 },
+ { "px": [48,160], "src": [256,96], "f": 0, "t": 154, "d": [59,423], "a": 1 },
+ { "px": [64,160], "src": [256,96], "f": 0, "t": 154, "d": [59,424], "a": 1 },
+ { "px": [80,160], "src": [256,96], "f": 0, "t": 154, "d": [59,425], "a": 1 },
+ { "px": [176,224], "src": [256,96], "f": 0, "t": 154, "d": [59,599], "a": 1 },
+ { "px": [192,224], "src": [256,96], "f": 0, "t": 154, "d": [59,600], "a": 1 },
+ { "px": [208,224], "src": [256,96], "f": 0, "t": 154, "d": [59,601], "a": 1 },
+ { "px": [224,224], "src": [256,96], "f": 0, "t": 154, "d": [59,602], "a": 1 },
+ { "px": [240,224], "src": [256,96], "f": 0, "t": 154, "d": [59,603], "a": 1 },
+ { "px": [256,224], "src": [256,96], "f": 0, "t": 154, "d": [59,604], "a": 1 },
+ { "px": [272,224], "src": [256,96], "f": 0, "t": 154, "d": [59,605], "a": 1 },
+ { "px": [288,224], "src": [256,96], "f": 0, "t": 154, "d": [59,606], "a": 1 },
+ { "px": [304,224], "src": [256,96], "f": 0, "t": 154, "d": [59,607], "a": 1 },
+ { "px": [320,224], "src": [256,96], "f": 0, "t": 154, "d": [59,608], "a": 1 },
+ { "px": [192,240], "src": [256,96], "f": 2, "t": 154, "d": [59,642], "a": 1 },
+ { "px": [208,240], "src": [256,96], "f": 2, "t": 154, "d": [59,643], "a": 1 },
+ { "px": [224,240], "src": [256,96], "f": 2, "t": 154, "d": [59,644], "a": 1 },
+ { "px": [240,240], "src": [256,96], "f": 2, "t": 154, "d": [59,645], "a": 1 },
+ { "px": [256,240], "src": [256,96], "f": 2, "t": 154, "d": [59,646], "a": 1 },
+ { "px": [272,240], "src": [256,96], "f": 2, "t": 154, "d": [59,647], "a": 1 },
+ { "px": [352,240], "src": [256,96], "f": 0, "t": 154, "d": [59,652], "a": 1 },
+ { "px": [368,240], "src": [256,96], "f": 0, "t": 154, "d": [59,653], "a": 1 },
+ { "px": [432,240], "src": [256,96], "f": 0, "t": 154, "d": [59,657], "a": 1 },
+ { "px": [448,240], "src": [256,96], "f": 0, "t": 154, "d": [59,658], "a": 1 },
+ { "px": [336,256], "src": [256,96], "f": 2, "t": 154, "d": [59,693], "a": 1 },
+ { "px": [352,256], "src": [256,96], "f": 2, "t": 154, "d": [59,694], "a": 1 },
+ { "px": [368,256], "src": [256,96], "f": 2, "t": 154, "d": [59,695], "a": 1 },
+ { "px": [464,272], "src": [256,96], "f": 2, "t": 154, "d": [59,743], "a": 1 },
+ { "px": [256,320], "src": [256,96], "f": 0, "t": 154, "d": [59,856], "a": 1 },
+ { "px": [272,320], "src": [256,96], "f": 0, "t": 154, "d": [59,857], "a": 1 },
+ { "px": [384,336], "src": [256,96], "f": 0, "t": 154, "d": [59,906], "a": 1 },
+ { "px": [400,336], "src": [256,96], "f": 0, "t": 154, "d": [59,907], "a": 1 },
+ { "px": [416,336], "src": [256,96], "f": 0, "t": 154, "d": [59,908], "a": 1 },
+ { "px": [32,96], "src": [224,128], "f": 0, "t": 198, "d": [61,254], "a": 1 },
+ { "px": [32,112], "src": [224,128], "f": 0, "t": 198, "d": [61,296], "a": 1 },
+ { "px": [32,128], "src": [224,128], "f": 0, "t": 198, "d": [61,338], "a": 1 },
+ { "px": [304,128], "src": [224,128], "f": 0, "t": 198, "d": [61,355], "a": 1 },
+ { "px": [480,128], "src": [224,128], "f": 1, "t": 198, "d": [61,366], "a": 1 },
+ { "px": [32,144], "src": [224,128], "f": 0, "t": 198, "d": [61,380], "a": 1 },
+ { "px": [464,144], "src": [224,128], "f": 0, "t": 198, "d": [61,407], "a": 1 },
+ { "px": [480,144], "src": [224,128], "f": 1, "t": 198, "d": [61,408], "a": 1 },
+ { "px": [464,160], "src": [224,128], "f": 0, "t": 198, "d": [61,449], "a": 1 },
+ { "px": [480,160], "src": [224,128], "f": 1, "t": 198, "d": [61,450], "a": 1 },
+ { "px": [464,176], "src": [224,128], "f": 0, "t": 198, "d": [61,491], "a": 1 },
+ { "px": [480,176], "src": [224,128], "f": 1, "t": 198, "d": [61,492], "a": 1 },
+ { "px": [464,192], "src": [224,128], "f": 0, "t": 198, "d": [61,533], "a": 1 },
+ { "px": [480,192], "src": [224,128], "f": 1, "t": 198, "d": [61,534], "a": 1 },
+ { "px": [464,208], "src": [224,128], "f": 0, "t": 198, "d": [61,575], "a": 1 },
+ { "px": [480,208], "src": [224,128], "f": 1, "t": 198, "d": [61,576], "a": 1 },
+ { "px": [464,224], "src": [224,128], "f": 0, "t": 198, "d": [61,617], "a": 1 },
+ { "px": [480,224], "src": [224,128], "f": 1, "t": 198, "d": [61,618], "a": 1 },
+ { "px": [480,240], "src": [224,128], "f": 1, "t": 198, "d": [61,660], "a": 1 },
+ { "px": [288,256], "src": [224,128], "f": 0, "t": 198, "d": [61,690], "a": 1 },
+ { "px": [480,256], "src": [224,128], "f": 1, "t": 198, "d": [61,702], "a": 1 },
+ { "px": [288,272], "src": [224,128], "f": 0, "t": 198, "d": [61,732], "a": 1 },
+ { "px": [320,272], "src": [224,128], "f": 1, "t": 198, "d": [61,734], "a": 1 },
+ { "px": [432,272], "src": [224,128], "f": 0, "t": 198, "d": [61,741], "a": 1 },
+ { "px": [288,288], "src": [224,128], "f": 0, "t": 198, "d": [61,774], "a": 1 },
+ { "px": [320,288], "src": [224,128], "f": 1, "t": 198, "d": [61,776], "a": 1 },
+ { "px": [432,288], "src": [224,128], "f": 0, "t": 198, "d": [61,783], "a": 1 },
+ { "px": [448,288], "src": [224,128], "f": 1, "t": 198, "d": [61,784], "a": 1 },
+ { "px": [288,304], "src": [224,128], "f": 0, "t": 198, "d": [61,816], "a": 1 },
+ { "px": [320,304], "src": [224,128], "f": 1, "t": 198, "d": [61,818], "a": 1 },
+ { "px": [432,304], "src": [224,128], "f": 0, "t": 198, "d": [61,825], "a": 1 },
+ { "px": [448,304], "src": [224,128], "f": 1, "t": 198, "d": [61,826], "a": 1 },
+ { "px": [320,320], "src": [224,128], "f": 1, "t": 198, "d": [61,860], "a": 1 },
+ { "px": [432,320], "src": [224,128], "f": 0, "t": 198, "d": [61,867], "a": 1 },
+ { "px": [448,320], "src": [224,128], "f": 1, "t": 198, "d": [61,868], "a": 1 },
+ { "px": [240,336], "src": [224,128], "f": 0, "t": 198, "d": [61,897], "a": 1 },
+ { "px": [448,336], "src": [224,128], "f": 1, "t": 198, "d": [61,910], "a": 1 },
+ { "px": [96,80], "src": [224,96], "f": 1, "t": 152, "d": [60,216], "a": 1 },
+ { "px": [304,112], "src": [224,96], "f": 0, "t": 152, "d": [60,313], "a": 1 },
+ { "px": [480,112], "src": [224,96], "f": 1, "t": 152, "d": [60,324], "a": 1 },
+ { "px": [304,144], "src": [224,96], "f": 2, "t": 152, "d": [60,397], "a": 1 },
+ { "px": [336,144], "src": [224,96], "f": 3, "t": 152, "d": [60,399], "a": 1 },
+ { "px": [96,160], "src": [224,96], "f": 1, "t": 152, "d": [60,426], "a": 1 },
+ { "px": [160,224], "src": [224,96], "f": 0, "t": 152, "d": [60,598], "a": 1 },
+ { "px": [336,224], "src": [224,96], "f": 1, "t": 152, "d": [60,609], "a": 1 },
+ { "px": [176,240], "src": [224,96], "f": 2, "t": 152, "d": [60,641], "a": 1 },
+ { "px": [384,240], "src": [224,96], "f": 1, "t": 152, "d": [60,654], "a": 1 },
+ { "px": [416,240], "src": [224,96], "f": 0, "t": 152, "d": [60,656], "a": 1 },
+ { "px": [384,256], "src": [224,96], "f": 3, "t": 152, "d": [60,696], "a": 1 },
+ { "px": [416,256], "src": [224,96], "f": 2, "t": 152, "d": [60,698], "a": 1 },
+ { "px": [480,272], "src": [224,96], "f": 3, "t": 152, "d": [60,744], "a": 1 },
+ { "px": [240,320], "src": [224,96], "f": 0, "t": 152, "d": [60,855], "a": 1 },
+ { "px": [336,336], "src": [224,96], "f": 1, "t": 152, "d": [60,903], "a": 1 },
+ { "px": [368,336], "src": [224,96], "f": 0, "t": 152, "d": [60,905], "a": 1 },
+ { "px": [176,224], "src": [64,144], "f": 2, "t": 211, "d": [62,599], "a": 1 },
+ { "px": [288,240], "src": [64,144], "f": 2, "t": 211, "d": [62,648], "a": 1 },
+ { "px": [448,272], "src": [64,144], "f": 3, "t": 211, "d": [62,742], "a": 1 },
+ { "px": [288,320], "src": [64,144], "f": 0, "t": 211, "d": [62,858], "a": 1 },
+ { "px": [32,80], "src": [0,304], "f": 3, "t": 437, "d": [69,212], "a": 1 },
+ { "px": [336,128], "src": [0,304], "f": 3, "t": 437, "d": [69,357], "a": 1 },
+ { "px": [464,128], "src": [0,304], "f": 2, "t": 437, "d": [69,365], "a": 1 },
+ { "px": [32,160], "src": [0,304], "f": 1, "t": 437, "d": [69,422], "a": 1 },
+ { "px": [336,240], "src": [0,304], "f": 1, "t": 437, "d": [69,651], "a": 1 },
+ { "px": [464,240], "src": [0,304], "f": 0, "t": 437, "d": [69,659], "a": 1 },
+ { "px": [320,256], "src": [0,304], "f": 3, "t": 437, "d": [69,692], "a": 1 },
+ { "px": [432,256], "src": [0,304], "f": 2, "t": 437, "d": [69,699], "a": 1 },
+ { "px": [320,336], "src": [0,304], "f": 1, "t": 437, "d": [69,902], "a": 1 },
+ { "px": [432,336], "src": [0,304], "f": 0, "t": 437, "d": [69,909], "a": 1 },
+ { "px": [128,80], "src": [128,96], "f": 0, "t": 146, "d": [22,218], "a": 1 },
+ { "px": [176,48], "src": [128,192], "f": 0, "t": 284, "d": [73,137], "a": 1 },
+ { "px": [176,64], "src": [128,208], "f": 0, "t": 307, "d": [73,137], "a": 1 },
+ { "px": [176,80], "src": [128,224], "f": 0, "t": 330, "d": [73,137], "a": 1 },
+ { "px": [256,48], "src": [96,192], "f": 0, "t": 282, "d": [74,142], "a": 1 },
+ { "px": [256,64], "src": [96,208], "f": 0, "t": 305, "d": [74,142], "a": 1 },
+ { "px": [144,64], "src": [160,208], "f": 0, "t": 309, "d": [35,177], "a": 1 },
+ { "px": [208,64], "src": [160,208], "f": 0, "t": 309, "d": [35,181], "a": 1 },
+ { "px": [224,64], "src": [96,208], "f": 0, "t": 305, "d": [35,182], "a": 1 },
+ { "px": [128,160], "src": [112,64], "f": 0, "t": 99, "d": [44,428], "a": 1 },
+ { "px": [112,160], "src": [96,32], "f": 0, "t": 52, "d": [45,427], "a": 1 },
+ { "px": [400,240], "src": [96,144], "f": 0, "t": 213, "d": [41,655], "a": 1 },
+ { "px": [400,256], "src": [96,144], "f": 0, "t": 213, "d": [41,697], "a": 1 },
+ { "px": [400,272], "src": [96,144], "f": 0, "t": 213, "d": [41,739], "a": 1 },
+ { "px": [400,288], "src": [96,144], "f": 0, "t": 213, "d": [41,781], "a": 1 },
+ { "px": [400,304], "src": [96,144], "f": 0, "t": 213, "d": [41,823], "a": 1 },
+ { "px": [400,320], "src": [96,144], "f": 0, "t": 213, "d": [41,865], "a": 1 },
+ { "px": [352,336], "src": [96,144], "f": 0, "t": 213, "d": [41,904], "a": 1 },
+ { "px": [0,0], "src": [32,32], "f": 0, "t": 48, "d": [102,0], "a": 1 },
+ { "px": [16,0], "src": [32,32], "f": 0, "t": 48, "d": [102,1], "a": 1 },
+ { "px": [32,0], "src": [32,32], "f": 0, "t": 48, "d": [102,2], "a": 1 },
+ { "px": [48,0], "src": [32,32], "f": 0, "t": 48, "d": [102,3], "a": 1 },
+ { "px": [64,0], "src": [32,32], "f": 0, "t": 48, "d": [102,4], "a": 1 },
+ { "px": [80,0], "src": [32,32], "f": 0, "t": 48, "d": [102,5], "a": 1 },
+ { "px": [96,0], "src": [32,32], "f": 0, "t": 48, "d": [102,6], "a": 1 },
+ { "px": [112,0], "src": [32,32], "f": 0, "t": 48, "d": [102,7], "a": 1 },
+ { "px": [128,0], "src": [32,32], "f": 0, "t": 48, "d": [102,8], "a": 1 },
+ { "px": [144,0], "src": [32,32], "f": 0, "t": 48, "d": [102,9], "a": 1 },
+ { "px": [160,0], "src": [32,32], "f": 0, "t": 48, "d": [102,10], "a": 1 },
+ { "px": [176,0], "src": [32,32], "f": 0, "t": 48, "d": [102,11], "a": 1 },
+ { "px": [192,0], "src": [32,32], "f": 0, "t": 48, "d": [102,12], "a": 1 },
+ { "px": [208,0], "src": [32,32], "f": 0, "t": 48, "d": [102,13], "a": 1 },
+ { "px": [224,0], "src": [32,32], "f": 0, "t": 48, "d": [102,14], "a": 1 },
+ { "px": [240,0], "src": [32,32], "f": 0, "t": 48, "d": [102,15], "a": 1 },
+ { "px": [256,0], "src": [32,32], "f": 0, "t": 48, "d": [102,16], "a": 1 },
+ { "px": [272,0], "src": [32,32], "f": 0, "t": 48, "d": [102,17], "a": 1 },
+ { "px": [288,0], "src": [32,32], "f": 0, "t": 48, "d": [102,18], "a": 1 },
+ { "px": [304,0], "src": [32,32], "f": 0, "t": 48, "d": [102,19], "a": 1 },
+ { "px": [320,0], "src": [32,32], "f": 0, "t": 48, "d": [102,20], "a": 1 },
+ { "px": [336,0], "src": [32,32], "f": 0, "t": 48, "d": [102,21], "a": 1 },
+ { "px": [352,0], "src": [32,32], "f": 0, "t": 48, "d": [102,22], "a": 1 },
+ { "px": [368,0], "src": [32,32], "f": 0, "t": 48, "d": [102,23], "a": 1 },
+ { "px": [384,0], "src": [32,32], "f": 0, "t": 48, "d": [102,24], "a": 1 },
+ { "px": [400,0], "src": [32,32], "f": 0, "t": 48, "d": [102,25], "a": 1 },
+ { "px": [416,0], "src": [32,32], "f": 0, "t": 48, "d": [102,26], "a": 1 },
+ { "px": [432,0], "src": [32,32], "f": 0, "t": 48, "d": [102,27], "a": 1 },
+ { "px": [448,0], "src": [32,32], "f": 0, "t": 48, "d": [102,28], "a": 1 },
+ { "px": [464,0], "src": [32,32], "f": 0, "t": 48, "d": [102,29], "a": 1 },
+ { "px": [480,0], "src": [32,32], "f": 0, "t": 48, "d": [102,30], "a": 1 },
+ { "px": [496,0], "src": [32,32], "f": 0, "t": 48, "d": [102,31], "a": 1 },
+ { "px": [512,0], "src": [32,32], "f": 0, "t": 48, "d": [102,32], "a": 1 },
+ { "px": [528,0], "src": [32,32], "f": 0, "t": 48, "d": [102,33], "a": 1 },
+ { "px": [544,0], "src": [32,32], "f": 0, "t": 48, "d": [102,34], "a": 1 },
+ { "px": [560,0], "src": [32,32], "f": 0, "t": 48, "d": [102,35], "a": 1 },
+ { "px": [576,0], "src": [32,32], "f": 0, "t": 48, "d": [102,36], "a": 1 },
+ { "px": [592,0], "src": [32,32], "f": 0, "t": 48, "d": [102,37], "a": 1 },
+ { "px": [608,0], "src": [32,32], "f": 0, "t": 48, "d": [102,38], "a": 1 },
+ { "px": [624,0], "src": [32,32], "f": 0, "t": 48, "d": [102,39], "a": 1 },
+ { "px": [640,0], "src": [32,32], "f": 0, "t": 48, "d": [102,40], "a": 1 },
+ { "px": [656,0], "src": [32,32], "f": 0, "t": 48, "d": [102,41], "a": 1 },
+ { "px": [0,16], "src": [32,32], "f": 0, "t": 48, "d": [102,42], "a": 1 },
+ { "px": [16,16], "src": [32,32], "f": 0, "t": 48, "d": [102,43], "a": 1 },
+ { "px": [32,16], "src": [32,32], "f": 0, "t": 48, "d": [102,44], "a": 1 },
+ { "px": [48,16], "src": [32,32], "f": 0, "t": 48, "d": [102,45], "a": 1 },
+ { "px": [64,16], "src": [32,32], "f": 0, "t": 48, "d": [102,46], "a": 1 },
+ { "px": [80,16], "src": [32,32], "f": 0, "t": 48, "d": [102,47], "a": 1 },
+ { "px": [336,16], "src": [32,32], "f": 0, "t": 48, "d": [102,63], "a": 1 },
+ { "px": [352,16], "src": [32,32], "f": 0, "t": 48, "d": [102,64], "a": 1 },
+ { "px": [368,16], "src": [32,32], "f": 0, "t": 48, "d": [102,65], "a": 1 },
+ { "px": [384,16], "src": [32,32], "f": 0, "t": 48, "d": [102,66], "a": 1 },
+ { "px": [400,16], "src": [32,32], "f": 0, "t": 48, "d": [102,67], "a": 1 },
+ { "px": [416,16], "src": [32,32], "f": 0, "t": 48, "d": [102,68], "a": 1 },
+ { "px": [432,16], "src": [32,32], "f": 0, "t": 48, "d": [102,69], "a": 1 },
+ { "px": [448,16], "src": [32,32], "f": 0, "t": 48, "d": [102,70], "a": 1 },
+ { "px": [464,16], "src": [32,32], "f": 0, "t": 48, "d": [102,71], "a": 1 },
+ { "px": [480,16], "src": [32,32], "f": 0, "t": 48, "d": [102,72], "a": 1 },
+ { "px": [496,16], "src": [32,32], "f": 0, "t": 48, "d": [102,73], "a": 1 },
+ { "px": [512,16], "src": [32,32], "f": 0, "t": 48, "d": [102,74], "a": 1 },
+ { "px": [528,16], "src": [32,32], "f": 0, "t": 48, "d": [102,75], "a": 1 },
+ { "px": [544,16], "src": [32,32], "f": 0, "t": 48, "d": [102,76], "a": 1 },
+ { "px": [560,16], "src": [32,32], "f": 0, "t": 48, "d": [102,77], "a": 1 },
+ { "px": [576,16], "src": [32,32], "f": 0, "t": 48, "d": [102,78], "a": 1 },
+ { "px": [592,16], "src": [32,32], "f": 0, "t": 48, "d": [102,79], "a": 1 },
+ { "px": [608,16], "src": [32,32], "f": 0, "t": 48, "d": [102,80], "a": 1 },
+ { "px": [624,16], "src": [32,32], "f": 0, "t": 48, "d": [102,81], "a": 1 },
+ { "px": [640,16], "src": [32,32], "f": 0, "t": 48, "d": [102,82], "a": 1 },
+ { "px": [656,16], "src": [32,32], "f": 0, "t": 48, "d": [102,83], "a": 1 },
+ { "px": [352,32], "src": [32,32], "f": 0, "t": 48, "d": [102,106], "a": 1 },
+ { "px": [368,32], "src": [32,32], "f": 0, "t": 48, "d": [102,107], "a": 1 },
+ { "px": [384,32], "src": [32,32], "f": 0, "t": 48, "d": [102,108], "a": 1 },
+ { "px": [400,32], "src": [32,32], "f": 0, "t": 48, "d": [102,109], "a": 1 },
+ { "px": [416,32], "src": [32,32], "f": 0, "t": 48, "d": [102,110], "a": 1 },
+ { "px": [432,32], "src": [32,32], "f": 0, "t": 48, "d": [102,111], "a": 1 },
+ { "px": [448,32], "src": [32,32], "f": 0, "t": 48, "d": [102,112], "a": 1 },
+ { "px": [464,32], "src": [32,32], "f": 0, "t": 48, "d": [102,113], "a": 1 },
+ { "px": [480,32], "src": [32,32], "f": 0, "t": 48, "d": [102,114], "a": 1 },
+ { "px": [496,32], "src": [32,32], "f": 0, "t": 48, "d": [102,115], "a": 1 },
+ { "px": [512,32], "src": [32,32], "f": 0, "t": 48, "d": [102,116], "a": 1 },
+ { "px": [528,32], "src": [32,32], "f": 0, "t": 48, "d": [102,117], "a": 1 },
+ { "px": [544,32], "src": [32,32], "f": 0, "t": 48, "d": [102,118], "a": 1 },
+ { "px": [560,32], "src": [32,32], "f": 0, "t": 48, "d": [102,119], "a": 1 },
+ { "px": [576,32], "src": [32,32], "f": 0, "t": 48, "d": [102,120], "a": 1 },
+ { "px": [592,32], "src": [32,32], "f": 0, "t": 48, "d": [102,121], "a": 1 },
+ { "px": [608,32], "src": [32,32], "f": 0, "t": 48, "d": [102,122], "a": 1 },
+ { "px": [624,32], "src": [32,32], "f": 0, "t": 48, "d": [102,123], "a": 1 },
+ { "px": [640,32], "src": [32,32], "f": 0, "t": 48, "d": [102,124], "a": 1 },
+ { "px": [656,32], "src": [32,32], "f": 0, "t": 48, "d": [102,125], "a": 1 },
+ { "px": [352,48], "src": [32,32], "f": 0, "t": 48, "d": [102,148], "a": 1 },
+ { "px": [368,48], "src": [32,32], "f": 0, "t": 48, "d": [102,149], "a": 1 },
+ { "px": [384,48], "src": [32,32], "f": 0, "t": 48, "d": [102,150], "a": 1 },
+ { "px": [400,48], "src": [32,32], "f": 0, "t": 48, "d": [102,151], "a": 1 },
+ { "px": [416,48], "src": [32,32], "f": 0, "t": 48, "d": [102,152], "a": 1 },
+ { "px": [432,48], "src": [32,32], "f": 0, "t": 48, "d": [102,153], "a": 1 },
+ { "px": [448,48], "src": [32,32], "f": 0, "t": 48, "d": [102,154], "a": 1 },
+ { "px": [464,48], "src": [32,32], "f": 0, "t": 48, "d": [102,155], "a": 1 },
+ { "px": [480,48], "src": [32,32], "f": 0, "t": 48, "d": [102,156], "a": 1 },
+ { "px": [496,48], "src": [32,32], "f": 0, "t": 48, "d": [102,157], "a": 1 },
+ { "px": [512,48], "src": [32,32], "f": 0, "t": 48, "d": [102,158], "a": 1 },
+ { "px": [528,48], "src": [32,32], "f": 0, "t": 48, "d": [102,159], "a": 1 },
+ { "px": [544,48], "src": [32,32], "f": 0, "t": 48, "d": [102,160], "a": 1 },
+ { "px": [560,48], "src": [32,32], "f": 0, "t": 48, "d": [102,161], "a": 1 },
+ { "px": [576,48], "src": [32,32], "f": 0, "t": 48, "d": [102,162], "a": 1 },
+ { "px": [592,48], "src": [32,32], "f": 0, "t": 48, "d": [102,163], "a": 1 },
+ { "px": [608,48], "src": [32,32], "f": 0, "t": 48, "d": [102,164], "a": 1 },
+ { "px": [624,48], "src": [32,32], "f": 0, "t": 48, "d": [102,165], "a": 1 },
+ { "px": [640,48], "src": [32,32], "f": 0, "t": 48, "d": [102,166], "a": 1 },
+ { "px": [656,48], "src": [32,32], "f": 0, "t": 48, "d": [102,167], "a": 1 },
+ { "px": [528,64], "src": [32,32], "f": 0, "t": 48, "d": [102,201], "a": 1 },
+ { "px": [544,64], "src": [32,32], "f": 0, "t": 48, "d": [102,202], "a": 1 },
+ { "px": [560,64], "src": [32,32], "f": 0, "t": 48, "d": [102,203], "a": 1 },
+ { "px": [576,64], "src": [32,32], "f": 0, "t": 48, "d": [102,204], "a": 1 },
+ { "px": [592,64], "src": [32,32], "f": 0, "t": 48, "d": [102,205], "a": 1 },
+ { "px": [608,64], "src": [32,32], "f": 0, "t": 48, "d": [102,206], "a": 1 },
+ { "px": [624,64], "src": [32,32], "f": 0, "t": 48, "d": [102,207], "a": 1 },
+ { "px": [640,64], "src": [32,32], "f": 0, "t": 48, "d": [102,208], "a": 1 },
+ { "px": [656,64], "src": [32,32], "f": 0, "t": 48, "d": [102,209], "a": 1 },
+ { "px": [544,80], "src": [32,32], "f": 0, "t": 48, "d": [102,244], "a": 1 },
+ { "px": [560,80], "src": [32,32], "f": 0, "t": 48, "d": [102,245], "a": 1 },
+ { "px": [576,80], "src": [32,32], "f": 0, "t": 48, "d": [102,246], "a": 1 },
+ { "px": [592,80], "src": [32,32], "f": 0, "t": 48, "d": [102,247], "a": 1 },
+ { "px": [608,80], "src": [32,32], "f": 0, "t": 48, "d": [102,248], "a": 1 },
+ { "px": [624,80], "src": [32,32], "f": 0, "t": 48, "d": [102,249], "a": 1 },
+ { "px": [640,80], "src": [32,32], "f": 0, "t": 48, "d": [102,250], "a": 1 },
+ { "px": [656,80], "src": [32,32], "f": 0, "t": 48, "d": [102,251], "a": 1 },
+ { "px": [544,96], "src": [32,32], "f": 0, "t": 48, "d": [102,286], "a": 1 },
+ { "px": [560,96], "src": [32,32], "f": 0, "t": 48, "d": [102,287], "a": 1 },
+ { "px": [576,96], "src": [32,32], "f": 0, "t": 48, "d": [102,288], "a": 1 },
+ { "px": [592,96], "src": [32,32], "f": 0, "t": 48, "d": [102,289], "a": 1 },
+ { "px": [608,96], "src": [32,32], "f": 0, "t": 48, "d": [102,290], "a": 1 },
+ { "px": [624,96], "src": [32,32], "f": 0, "t": 48, "d": [102,291], "a": 1 },
+ { "px": [640,96], "src": [32,32], "f": 0, "t": 48, "d": [102,292], "a": 1 },
+ { "px": [656,96], "src": [32,32], "f": 0, "t": 48, "d": [102,293], "a": 1 },
+ { "px": [544,112], "src": [32,32], "f": 0, "t": 48, "d": [102,328], "a": 1 },
+ { "px": [560,112], "src": [32,32], "f": 0, "t": 48, "d": [102,329], "a": 1 },
+ { "px": [576,112], "src": [32,32], "f": 0, "t": 48, "d": [102,330], "a": 1 },
+ { "px": [592,112], "src": [32,32], "f": 0, "t": 48, "d": [102,331], "a": 1 },
+ { "px": [608,112], "src": [32,32], "f": 0, "t": 48, "d": [102,332], "a": 1 },
+ { "px": [624,112], "src": [32,32], "f": 0, "t": 48, "d": [102,333], "a": 1 },
+ { "px": [640,112], "src": [32,32], "f": 0, "t": 48, "d": [102,334], "a": 1 },
+ { "px": [656,112], "src": [32,32], "f": 0, "t": 48, "d": [102,335], "a": 1 },
+ { "px": [544,128], "src": [32,32], "f": 0, "t": 48, "d": [102,370], "a": 1 },
+ { "px": [560,128], "src": [32,32], "f": 0, "t": 48, "d": [102,371], "a": 1 },
+ { "px": [576,128], "src": [32,32], "f": 0, "t": 48, "d": [102,372], "a": 1 },
+ { "px": [592,128], "src": [32,32], "f": 0, "t": 48, "d": [102,373], "a": 1 },
+ { "px": [608,128], "src": [32,32], "f": 0, "t": 48, "d": [102,374], "a": 1 },
+ { "px": [624,128], "src": [32,32], "f": 0, "t": 48, "d": [102,375], "a": 1 },
+ { "px": [640,128], "src": [32,32], "f": 0, "t": 48, "d": [102,376], "a": 1 },
+ { "px": [656,128], "src": [32,32], "f": 0, "t": 48, "d": [102,377], "a": 1 },
+ { "px": [544,144], "src": [32,32], "f": 0, "t": 48, "d": [102,412], "a": 1 },
+ { "px": [560,144], "src": [32,32], "f": 0, "t": 48, "d": [102,413], "a": 1 },
+ { "px": [576,144], "src": [32,32], "f": 0, "t": 48, "d": [102,414], "a": 1 },
+ { "px": [592,144], "src": [32,32], "f": 0, "t": 48, "d": [102,415], "a": 1 },
+ { "px": [608,144], "src": [32,32], "f": 0, "t": 48, "d": [102,416], "a": 1 },
+ { "px": [624,144], "src": [32,32], "f": 0, "t": 48, "d": [102,417], "a": 1 },
+ { "px": [640,144], "src": [32,32], "f": 0, "t": 48, "d": [102,418], "a": 1 },
+ { "px": [656,144], "src": [32,32], "f": 0, "t": 48, "d": [102,419], "a": 1 },
+ { "px": [544,160], "src": [32,32], "f": 0, "t": 48, "d": [102,454], "a": 1 },
+ { "px": [560,160], "src": [32,32], "f": 0, "t": 48, "d": [102,455], "a": 1 },
+ { "px": [576,160], "src": [32,32], "f": 0, "t": 48, "d": [102,456], "a": 1 },
+ { "px": [592,160], "src": [32,32], "f": 0, "t": 48, "d": [102,457], "a": 1 },
+ { "px": [608,160], "src": [32,32], "f": 0, "t": 48, "d": [102,458], "a": 1 },
+ { "px": [624,160], "src": [32,32], "f": 0, "t": 48, "d": [102,459], "a": 1 },
+ { "px": [640,160], "src": [32,32], "f": 0, "t": 48, "d": [102,460], "a": 1 },
+ { "px": [656,160], "src": [32,32], "f": 0, "t": 48, "d": [102,461], "a": 1 },
+ { "px": [544,176], "src": [32,32], "f": 0, "t": 48, "d": [102,496], "a": 1 },
+ { "px": [560,176], "src": [32,32], "f": 0, "t": 48, "d": [102,497], "a": 1 },
+ { "px": [576,176], "src": [32,32], "f": 0, "t": 48, "d": [102,498], "a": 1 },
+ { "px": [592,176], "src": [32,32], "f": 0, "t": 48, "d": [102,499], "a": 1 },
+ { "px": [608,176], "src": [32,32], "f": 0, "t": 48, "d": [102,500], "a": 1 },
+ { "px": [624,176], "src": [32,32], "f": 0, "t": 48, "d": [102,501], "a": 1 },
+ { "px": [640,176], "src": [32,32], "f": 0, "t": 48, "d": [102,502], "a": 1 },
+ { "px": [656,176], "src": [32,32], "f": 0, "t": 48, "d": [102,503], "a": 1 },
+ { "px": [544,192], "src": [32,32], "f": 0, "t": 48, "d": [102,538], "a": 1 },
+ { "px": [560,192], "src": [32,32], "f": 0, "t": 48, "d": [102,539], "a": 1 },
+ { "px": [576,192], "src": [32,32], "f": 0, "t": 48, "d": [102,540], "a": 1 },
+ { "px": [592,192], "src": [32,32], "f": 0, "t": 48, "d": [102,541], "a": 1 },
+ { "px": [608,192], "src": [32,32], "f": 0, "t": 48, "d": [102,542], "a": 1 },
+ { "px": [624,192], "src": [32,32], "f": 0, "t": 48, "d": [102,543], "a": 1 },
+ { "px": [640,192], "src": [32,32], "f": 0, "t": 48, "d": [102,544], "a": 1 },
+ { "px": [656,192], "src": [32,32], "f": 0, "t": 48, "d": [102,545], "a": 1 },
+ { "px": [544,208], "src": [32,32], "f": 0, "t": 48, "d": [102,580], "a": 1 },
+ { "px": [560,208], "src": [32,32], "f": 0, "t": 48, "d": [102,581], "a": 1 },
+ { "px": [576,208], "src": [32,32], "f": 0, "t": 48, "d": [102,582], "a": 1 },
+ { "px": [592,208], "src": [32,32], "f": 0, "t": 48, "d": [102,583], "a": 1 },
+ { "px": [608,208], "src": [32,32], "f": 0, "t": 48, "d": [102,584], "a": 1 },
+ { "px": [624,208], "src": [32,32], "f": 0, "t": 48, "d": [102,585], "a": 1 },
+ { "px": [640,208], "src": [32,32], "f": 0, "t": 48, "d": [102,586], "a": 1 },
+ { "px": [656,208], "src": [32,32], "f": 0, "t": 48, "d": [102,587], "a": 1 },
+ { "px": [0,224], "src": [32,32], "f": 0, "t": 48, "d": [102,588], "a": 1 },
+ { "px": [16,224], "src": [32,32], "f": 0, "t": 48, "d": [102,589], "a": 1 },
+ { "px": [32,224], "src": [32,32], "f": 0, "t": 48, "d": [102,590], "a": 1 },
+ { "px": [48,224], "src": [32,32], "f": 0, "t": 48, "d": [102,591], "a": 1 },
+ { "px": [64,224], "src": [32,32], "f": 0, "t": 48, "d": [102,592], "a": 1 },
+ { "px": [544,224], "src": [32,32], "f": 0, "t": 48, "d": [102,622], "a": 1 },
+ { "px": [560,224], "src": [32,32], "f": 0, "t": 48, "d": [102,623], "a": 1 },
+ { "px": [576,224], "src": [32,32], "f": 0, "t": 48, "d": [102,624], "a": 1 },
+ { "px": [592,224], "src": [32,32], "f": 0, "t": 48, "d": [102,625], "a": 1 },
+ { "px": [608,224], "src": [32,32], "f": 0, "t": 48, "d": [102,626], "a": 1 },
+ { "px": [624,224], "src": [32,32], "f": 0, "t": 48, "d": [102,627], "a": 1 },
+ { "px": [640,224], "src": [32,32], "f": 0, "t": 48, "d": [102,628], "a": 1 },
+ { "px": [656,224], "src": [32,32], "f": 0, "t": 48, "d": [102,629], "a": 1 },
+ { "px": [0,240], "src": [32,32], "f": 0, "t": 48, "d": [102,630], "a": 1 },
+ { "px": [16,240], "src": [32,32], "f": 0, "t": 48, "d": [102,631], "a": 1 },
+ { "px": [32,240], "src": [32,32], "f": 0, "t": 48, "d": [102,632], "a": 1 },
+ { "px": [48,240], "src": [32,32], "f": 0, "t": 48, "d": [102,633], "a": 1 },
+ { "px": [64,240], "src": [32,32], "f": 0, "t": 48, "d": [102,634], "a": 1 },
+ { "px": [544,240], "src": [32,32], "f": 0, "t": 48, "d": [102,664], "a": 1 },
+ { "px": [560,240], "src": [32,32], "f": 0, "t": 48, "d": [102,665], "a": 1 },
+ { "px": [576,240], "src": [32,32], "f": 0, "t": 48, "d": [102,666], "a": 1 },
+ { "px": [592,240], "src": [32,32], "f": 0, "t": 48, "d": [102,667], "a": 1 },
+ { "px": [608,240], "src": [32,32], "f": 0, "t": 48, "d": [102,668], "a": 1 },
+ { "px": [624,240], "src": [32,32], "f": 0, "t": 48, "d": [102,669], "a": 1 },
+ { "px": [640,240], "src": [32,32], "f": 0, "t": 48, "d": [102,670], "a": 1 },
+ { "px": [656,240], "src": [32,32], "f": 0, "t": 48, "d": [102,671], "a": 1 },
+ { "px": [0,256], "src": [32,32], "f": 0, "t": 48, "d": [102,672], "a": 1 },
+ { "px": [16,256], "src": [32,32], "f": 0, "t": 48, "d": [102,673], "a": 1 },
+ { "px": [32,256], "src": [32,32], "f": 0, "t": 48, "d": [102,674], "a": 1 },
+ { "px": [48,256], "src": [32,32], "f": 0, "t": 48, "d": [102,675], "a": 1 },
+ { "px": [64,256], "src": [32,32], "f": 0, "t": 48, "d": [102,676], "a": 1 },
+ { "px": [80,256], "src": [32,32], "f": 0, "t": 48, "d": [102,677], "a": 1 },
+ { "px": [544,256], "src": [32,32], "f": 0, "t": 48, "d": [102,706], "a": 1 },
+ { "px": [560,256], "src": [32,32], "f": 0, "t": 48, "d": [102,707], "a": 1 },
+ { "px": [576,256], "src": [32,32], "f": 0, "t": 48, "d": [102,708], "a": 1 },
+ { "px": [592,256], "src": [32,32], "f": 0, "t": 48, "d": [102,709], "a": 1 },
+ { "px": [608,256], "src": [32,32], "f": 0, "t": 48, "d": [102,710], "a": 1 },
+ { "px": [624,256], "src": [32,32], "f": 0, "t": 48, "d": [102,711], "a": 1 },
+ { "px": [640,256], "src": [32,32], "f": 0, "t": 48, "d": [102,712], "a": 1 },
+ { "px": [656,256], "src": [32,32], "f": 0, "t": 48, "d": [102,713], "a": 1 },
+ { "px": [0,272], "src": [32,32], "f": 0, "t": 48, "d": [102,714], "a": 1 },
+ { "px": [16,272], "src": [32,32], "f": 0, "t": 48, "d": [102,715], "a": 1 },
+ { "px": [32,272], "src": [32,32], "f": 0, "t": 48, "d": [102,716], "a": 1 },
+ { "px": [48,272], "src": [32,32], "f": 0, "t": 48, "d": [102,717], "a": 1 },
+ { "px": [64,272], "src": [32,32], "f": 0, "t": 48, "d": [102,718], "a": 1 },
+ { "px": [80,272], "src": [32,32], "f": 0, "t": 48, "d": [102,719], "a": 1 },
+ { "px": [96,272], "src": [32,32], "f": 0, "t": 48, "d": [102,720], "a": 1 },
+ { "px": [112,272], "src": [32,32], "f": 0, "t": 48, "d": [102,721], "a": 1 },
+ { "px": [544,272], "src": [32,32], "f": 0, "t": 48, "d": [102,748], "a": 1 },
+ { "px": [560,272], "src": [32,32], "f": 0, "t": 48, "d": [102,749], "a": 1 },
+ { "px": [576,272], "src": [32,32], "f": 0, "t": 48, "d": [102,750], "a": 1 },
+ { "px": [592,272], "src": [32,32], "f": 0, "t": 48, "d": [102,751], "a": 1 },
+ { "px": [608,272], "src": [32,32], "f": 0, "t": 48, "d": [102,752], "a": 1 },
+ { "px": [624,272], "src": [32,32], "f": 0, "t": 48, "d": [102,753], "a": 1 },
+ { "px": [640,272], "src": [32,32], "f": 0, "t": 48, "d": [102,754], "a": 1 },
+ { "px": [656,272], "src": [32,32], "f": 0, "t": 48, "d": [102,755], "a": 1 },
+ { "px": [0,288], "src": [32,32], "f": 0, "t": 48, "d": [102,756], "a": 1 },
+ { "px": [16,288], "src": [32,32], "f": 0, "t": 48, "d": [102,757], "a": 1 },
+ { "px": [32,288], "src": [32,32], "f": 0, "t": 48, "d": [102,758], "a": 1 },
+ { "px": [48,288], "src": [32,32], "f": 0, "t": 48, "d": [102,759], "a": 1 },
+ { "px": [64,288], "src": [32,32], "f": 0, "t": 48, "d": [102,760], "a": 1 },
+ { "px": [80,288], "src": [32,32], "f": 0, "t": 48, "d": [102,761], "a": 1 },
+ { "px": [96,288], "src": [32,32], "f": 0, "t": 48, "d": [102,762], "a": 1 },
+ { "px": [112,288], "src": [32,32], "f": 0, "t": 48, "d": [102,763], "a": 1 },
+ { "px": [128,288], "src": [32,32], "f": 0, "t": 48, "d": [102,764], "a": 1 },
+ { "px": [544,288], "src": [32,32], "f": 0, "t": 48, "d": [102,790], "a": 1 },
+ { "px": [560,288], "src": [32,32], "f": 0, "t": 48, "d": [102,791], "a": 1 },
+ { "px": [576,288], "src": [32,32], "f": 0, "t": 48, "d": [102,792], "a": 1 },
+ { "px": [592,288], "src": [32,32], "f": 0, "t": 48, "d": [102,793], "a": 1 },
+ { "px": [608,288], "src": [32,32], "f": 0, "t": 48, "d": [102,794], "a": 1 },
+ { "px": [624,288], "src": [32,32], "f": 0, "t": 48, "d": [102,795], "a": 1 },
+ { "px": [640,288], "src": [32,32], "f": 0, "t": 48, "d": [102,796], "a": 1 },
+ { "px": [656,288], "src": [32,32], "f": 0, "t": 48, "d": [102,797], "a": 1 },
+ { "px": [0,304], "src": [32,32], "f": 0, "t": 48, "d": [102,798], "a": 1 },
+ { "px": [16,304], "src": [32,32], "f": 0, "t": 48, "d": [102,799], "a": 1 },
+ { "px": [32,304], "src": [32,32], "f": 0, "t": 48, "d": [102,800], "a": 1 },
+ { "px": [48,304], "src": [32,32], "f": 0, "t": 48, "d": [102,801], "a": 1 },
+ { "px": [64,304], "src": [32,32], "f": 0, "t": 48, "d": [102,802], "a": 1 },
+ { "px": [80,304], "src": [32,32], "f": 0, "t": 48, "d": [102,803], "a": 1 },
+ { "px": [96,304], "src": [32,32], "f": 0, "t": 48, "d": [102,804], "a": 1 },
+ { "px": [112,304], "src": [32,32], "f": 0, "t": 48, "d": [102,805], "a": 1 },
+ { "px": [128,304], "src": [32,32], "f": 0, "t": 48, "d": [102,806], "a": 1 },
+ { "px": [144,304], "src": [32,32], "f": 0, "t": 48, "d": [102,807], "a": 1 },
+ { "px": [160,304], "src": [32,32], "f": 0, "t": 48, "d": [102,808], "a": 1 },
+ { "px": [176,304], "src": [32,32], "f": 0, "t": 48, "d": [102,809], "a": 1 },
+ { "px": [544,304], "src": [32,32], "f": 0, "t": 48, "d": [102,832], "a": 1 },
+ { "px": [560,304], "src": [32,32], "f": 0, "t": 48, "d": [102,833], "a": 1 },
+ { "px": [576,304], "src": [32,32], "f": 0, "t": 48, "d": [102,834], "a": 1 },
+ { "px": [592,304], "src": [32,32], "f": 0, "t": 48, "d": [102,835], "a": 1 },
+ { "px": [608,304], "src": [32,32], "f": 0, "t": 48, "d": [102,836], "a": 1 },
+ { "px": [624,304], "src": [32,32], "f": 0, "t": 48, "d": [102,837], "a": 1 },
+ { "px": [640,304], "src": [32,32], "f": 0, "t": 48, "d": [102,838], "a": 1 },
+ { "px": [656,304], "src": [32,32], "f": 0, "t": 48, "d": [102,839], "a": 1 },
+ { "px": [0,320], "src": [32,32], "f": 0, "t": 48, "d": [102,840], "a": 1 },
+ { "px": [16,320], "src": [32,32], "f": 0, "t": 48, "d": [102,841], "a": 1 },
+ { "px": [32,320], "src": [32,32], "f": 0, "t": 48, "d": [102,842], "a": 1 },
+ { "px": [48,320], "src": [32,32], "f": 0, "t": 48, "d": [102,843], "a": 1 },
+ { "px": [64,320], "src": [32,32], "f": 0, "t": 48, "d": [102,844], "a": 1 },
+ { "px": [80,320], "src": [32,32], "f": 0, "t": 48, "d": [102,845], "a": 1 },
+ { "px": [96,320], "src": [32,32], "f": 0, "t": 48, "d": [102,846], "a": 1 },
+ { "px": [112,320], "src": [32,32], "f": 0, "t": 48, "d": [102,847], "a": 1 },
+ { "px": [128,320], "src": [32,32], "f": 0, "t": 48, "d": [102,848], "a": 1 },
+ { "px": [144,320], "src": [32,32], "f": 0, "t": 48, "d": [102,849], "a": 1 },
+ { "px": [160,320], "src": [32,32], "f": 0, "t": 48, "d": [102,850], "a": 1 },
+ { "px": [176,320], "src": [32,32], "f": 0, "t": 48, "d": [102,851], "a": 1 },
+ { "px": [528,320], "src": [32,32], "f": 0, "t": 48, "d": [102,873], "a": 1 },
+ { "px": [544,320], "src": [32,32], "f": 0, "t": 48, "d": [102,874], "a": 1 },
+ { "px": [560,320], "src": [32,32], "f": 0, "t": 48, "d": [102,875], "a": 1 },
+ { "px": [576,320], "src": [32,32], "f": 0, "t": 48, "d": [102,876], "a": 1 },
+ { "px": [592,320], "src": [32,32], "f": 0, "t": 48, "d": [102,877], "a": 1 },
+ { "px": [608,320], "src": [32,32], "f": 0, "t": 48, "d": [102,878], "a": 1 },
+ { "px": [624,320], "src": [32,32], "f": 0, "t": 48, "d": [102,879], "a": 1 },
+ { "px": [640,320], "src": [32,32], "f": 0, "t": 48, "d": [102,880], "a": 1 },
+ { "px": [656,320], "src": [32,32], "f": 0, "t": 48, "d": [102,881], "a": 1 },
+ { "px": [0,336], "src": [32,32], "f": 0, "t": 48, "d": [102,882], "a": 1 },
+ { "px": [16,336], "src": [32,32], "f": 0, "t": 48, "d": [102,883], "a": 1 },
+ { "px": [32,336], "src": [32,32], "f": 0, "t": 48, "d": [102,884], "a": 1 },
+ { "px": [48,336], "src": [32,32], "f": 0, "t": 48, "d": [102,885], "a": 1 },
+ { "px": [64,336], "src": [32,32], "f": 0, "t": 48, "d": [102,886], "a": 1 },
+ { "px": [80,336], "src": [32,32], "f": 0, "t": 48, "d": [102,887], "a": 1 },
+ { "px": [96,336], "src": [32,32], "f": 0, "t": 48, "d": [102,888], "a": 1 },
+ { "px": [112,336], "src": [32,32], "f": 0, "t": 48, "d": [102,889], "a": 1 },
+ { "px": [128,336], "src": [32,32], "f": 0, "t": 48, "d": [102,890], "a": 1 },
+ { "px": [144,336], "src": [32,32], "f": 0, "t": 48, "d": [102,891], "a": 1 },
+ { "px": [160,336], "src": [32,32], "f": 0, "t": 48, "d": [102,892], "a": 1 },
+ { "px": [176,336], "src": [32,32], "f": 0, "t": 48, "d": [102,893], "a": 1 },
+ { "px": [512,336], "src": [32,32], "f": 0, "t": 48, "d": [102,914], "a": 1 },
+ { "px": [528,336], "src": [32,32], "f": 0, "t": 48, "d": [102,915], "a": 1 },
+ { "px": [544,336], "src": [32,32], "f": 0, "t": 48, "d": [102,916], "a": 1 },
+ { "px": [560,336], "src": [32,32], "f": 0, "t": 48, "d": [102,917], "a": 1 },
+ { "px": [576,336], "src": [32,32], "f": 0, "t": 48, "d": [102,918], "a": 1 },
+ { "px": [592,336], "src": [32,32], "f": 0, "t": 48, "d": [102,919], "a": 1 },
+ { "px": [608,336], "src": [32,32], "f": 0, "t": 48, "d": [102,920], "a": 1 },
+ { "px": [624,336], "src": [32,32], "f": 0, "t": 48, "d": [102,921], "a": 1 },
+ { "px": [640,336], "src": [32,32], "f": 0, "t": 48, "d": [102,922], "a": 1 },
+ { "px": [656,336], "src": [32,32], "f": 0, "t": 48, "d": [102,923], "a": 1 }
+ ],
+ "seed": 2287525,
+ "overrideTilesetUid": null,
+ "gridTiles": [],
+ "entityInstances": []
+ },
+ {
+ "__identifier": "Bg_textures",
+ "__type": "AutoLayer",
+ "__cWid": 42,
+ "__cHei": 22,
+ "__gridSize": 16,
+ "__opacity": 1,
+ "__pxTotalOffsetX": 0,
+ "__pxTotalOffsetY": 0,
+ "__tilesetDefUid": 2,
+ "__tilesetRelPath": "atlas/SunnyLand_by_Ansimuz-extended.png",
+ "iid": "a3170ba0-66b0-11ec-9cd7-cf6ab15e2769",
+ "levelId": 89,
+ "layerDefUid": 24,
+ "pxOffsetX": 0,
+ "pxOffsetY": 0,
+ "visible": true,
+ "optionalRules": [],
+ "intGridCsv": [],
+ "autoLayerTiles": [
+ { "px": [160,64], "src": [320,272], "f": 0, "t": 411, "d": [26,178], "a": 1 },
+ { "px": [208,64], "src": [320,272], "f": 0, "t": 411, "d": [26,181], "a": 1 },
+ { "px": [240,64], "src": [320,272], "f": 0, "t": 411, "d": [26,183], "a": 1 },
+ { "px": [272,64], "src": [320,272], "f": 0, "t": 411, "d": [26,185], "a": 1 },
+ { "px": [144,80], "src": [320,272], "f": 0, "t": 411, "d": [26,219], "a": 1 },
+ { "px": [160,80], "src": [320,272], "f": 0, "t": 411, "d": [26,220], "a": 1 },
+ { "px": [176,80], "src": [320,272], "f": 0, "t": 411, "d": [26,221], "a": 1 },
+ { "px": [192,80], "src": [320,272], "f": 0, "t": 411, "d": [26,222], "a": 1 },
+ { "px": [208,80], "src": [320,272], "f": 0, "t": 411, "d": [26,223], "a": 1 },
+ { "px": [224,80], "src": [320,272], "f": 0, "t": 411, "d": [26,224], "a": 1 },
+ { "px": [240,80], "src": [320,272], "f": 0, "t": 411, "d": [26,225], "a": 1 },
+ { "px": [256,80], "src": [320,272], "f": 0, "t": 411, "d": [26,226], "a": 1 },
+ { "px": [272,80], "src": [320,272], "f": 0, "t": 411, "d": [26,227], "a": 1 },
+ { "px": [144,96], "src": [320,272], "f": 0, "t": 411, "d": [26,261], "a": 1 },
+ { "px": [160,96], "src": [320,272], "f": 0, "t": 411, "d": [26,262], "a": 1 },
+ { "px": [192,96], "src": [320,272], "f": 0, "t": 411, "d": [26,264], "a": 1 },
+ { "px": [208,96], "src": [320,272], "f": 0, "t": 411, "d": [26,265], "a": 1 },
+ { "px": [240,96], "src": [320,272], "f": 0, "t": 411, "d": [26,267], "a": 1 },
+ { "px": [256,96], "src": [320,272], "f": 0, "t": 411, "d": [26,268], "a": 1 },
+ { "px": [272,96], "src": [320,272], "f": 0, "t": 411, "d": [26,269], "a": 1 },
+ { "px": [64,112], "src": [320,272], "f": 0, "t": 411, "d": [26,298], "a": 1 },
+ { "px": [80,112], "src": [320,272], "f": 0, "t": 411, "d": [26,299], "a": 1 },
+ { "px": [96,112], "src": [320,272], "f": 0, "t": 411, "d": [26,300], "a": 1 },
+ { "px": [112,112], "src": [320,272], "f": 0, "t": 411, "d": [26,301], "a": 1 },
+ { "px": [128,112], "src": [320,272], "f": 0, "t": 411, "d": [26,302], "a": 1 },
+ { "px": [144,112], "src": [320,272], "f": 0, "t": 411, "d": [26,303], "a": 1 },
+ { "px": [160,112], "src": [320,272], "f": 0, "t": 411, "d": [26,304], "a": 1 },
+ { "px": [176,112], "src": [320,272], "f": 0, "t": 411, "d": [26,305], "a": 1 },
+ { "px": [192,112], "src": [320,272], "f": 0, "t": 411, "d": [26,306], "a": 1 },
+ { "px": [208,112], "src": [320,272], "f": 0, "t": 411, "d": [26,307], "a": 1 },
+ { "px": [224,112], "src": [320,272], "f": 0, "t": 411, "d": [26,308], "a": 1 },
+ { "px": [240,112], "src": [320,272], "f": 0, "t": 411, "d": [26,309], "a": 1 },
+ { "px": [256,112], "src": [320,272], "f": 0, "t": 411, "d": [26,310], "a": 1 },
+ { "px": [272,112], "src": [320,272], "f": 0, "t": 411, "d": [26,311], "a": 1 },
+ { "px": [64,128], "src": [320,272], "f": 0, "t": 411, "d": [26,340], "a": 1 },
+ { "px": [80,128], "src": [320,272], "f": 0, "t": 411, "d": [26,341], "a": 1 },
+ { "px": [96,128], "src": [320,272], "f": 0, "t": 411, "d": [26,342], "a": 1 },
+ { "px": [112,128], "src": [320,272], "f": 0, "t": 411, "d": [26,343], "a": 1 },
+ { "px": [128,128], "src": [320,272], "f": 0, "t": 411, "d": [26,344], "a": 1 },
+ { "px": [144,128], "src": [320,272], "f": 0, "t": 411, "d": [26,345], "a": 1 },
+ { "px": [160,128], "src": [320,272], "f": 0, "t": 411, "d": [26,346], "a": 1 },
+ { "px": [176,128], "src": [320,272], "f": 0, "t": 411, "d": [26,347], "a": 1 },
+ { "px": [208,128], "src": [320,272], "f": 0, "t": 411, "d": [26,349], "a": 1 },
+ { "px": [224,128], "src": [320,272], "f": 0, "t": 411, "d": [26,350], "a": 1 },
+ { "px": [240,128], "src": [320,272], "f": 0, "t": 411, "d": [26,351], "a": 1 },
+ { "px": [256,128], "src": [320,272], "f": 0, "t": 411, "d": [26,352], "a": 1 },
+ { "px": [272,128], "src": [320,272], "f": 0, "t": 411, "d": [26,353], "a": 1 },
+ { "px": [144,144], "src": [320,272], "f": 0, "t": 411, "d": [26,387], "a": 1 },
+ { "px": [160,144], "src": [320,272], "f": 0, "t": 411, "d": [26,388], "a": 1 },
+ { "px": [176,144], "src": [320,272], "f": 0, "t": 411, "d": [26,389], "a": 1 },
+ { "px": [192,144], "src": [320,272], "f": 0, "t": 411, "d": [26,390], "a": 1 },
+ { "px": [208,144], "src": [320,272], "f": 0, "t": 411, "d": [26,391], "a": 1 },
+ { "px": [224,144], "src": [320,272], "f": 0, "t": 411, "d": [26,392], "a": 1 },
+ { "px": [240,144], "src": [320,272], "f": 0, "t": 411, "d": [26,393], "a": 1 },
+ { "px": [256,144], "src": [320,272], "f": 0, "t": 411, "d": [26,394], "a": 1 },
+ { "px": [272,144], "src": [320,272], "f": 0, "t": 411, "d": [26,395], "a": 1 },
+ { "px": [368,144], "src": [320,272], "f": 0, "t": 411, "d": [26,401], "a": 1 },
+ { "px": [384,144], "src": [320,272], "f": 0, "t": 411, "d": [26,402], "a": 1 },
+ { "px": [400,144], "src": [320,272], "f": 0, "t": 411, "d": [26,403], "a": 1 },
+ { "px": [416,144], "src": [320,272], "f": 0, "t": 411, "d": [26,404], "a": 1 },
+ { "px": [432,144], "src": [320,272], "f": 0, "t": 411, "d": [26,405], "a": 1 },
+ { "px": [160,160], "src": [320,272], "f": 0, "t": 411, "d": [26,430], "a": 1 },
+ { "px": [192,160], "src": [320,272], "f": 0, "t": 411, "d": [26,432], "a": 1 },
+ { "px": [208,160], "src": [320,272], "f": 0, "t": 411, "d": [26,433], "a": 1 },
+ { "px": [224,160], "src": [320,272], "f": 0, "t": 411, "d": [26,434], "a": 1 },
+ { "px": [240,160], "src": [320,272], "f": 0, "t": 411, "d": [26,435], "a": 1 },
+ { "px": [256,160], "src": [320,272], "f": 0, "t": 411, "d": [26,436], "a": 1 },
+ { "px": [272,160], "src": [320,272], "f": 0, "t": 411, "d": [26,437], "a": 1 },
+ { "px": [288,160], "src": [320,272], "f": 0, "t": 411, "d": [26,438], "a": 1 },
+ { "px": [304,160], "src": [320,272], "f": 0, "t": 411, "d": [26,439], "a": 1 },
+ { "px": [320,160], "src": [320,272], "f": 0, "t": 411, "d": [26,440], "a": 1 },
+ { "px": [336,160], "src": [320,272], "f": 0, "t": 411, "d": [26,441], "a": 1 },
+ { "px": [352,160], "src": [320,272], "f": 0, "t": 411, "d": [26,442], "a": 1 },
+ { "px": [368,160], "src": [320,272], "f": 0, "t": 411, "d": [26,443], "a": 1 },
+ { "px": [384,160], "src": [320,272], "f": 0, "t": 411, "d": [26,444], "a": 1 },
+ { "px": [400,160], "src": [320,272], "f": 0, "t": 411, "d": [26,445], "a": 1 },
+ { "px": [416,160], "src": [320,272], "f": 0, "t": 411, "d": [26,446], "a": 1 },
+ { "px": [432,160], "src": [320,272], "f": 0, "t": 411, "d": [26,447], "a": 1 },
+ { "px": [144,176], "src": [320,272], "f": 0, "t": 411, "d": [26,471], "a": 1 },
+ { "px": [160,176], "src": [320,272], "f": 0, "t": 411, "d": [26,472], "a": 1 },
+ { "px": [176,176], "src": [320,272], "f": 0, "t": 411, "d": [26,473], "a": 1 },
+ { "px": [192,176], "src": [320,272], "f": 0, "t": 411, "d": [26,474], "a": 1 },
+ { "px": [208,176], "src": [320,272], "f": 0, "t": 411, "d": [26,475], "a": 1 },
+ { "px": [224,176], "src": [320,272], "f": 0, "t": 411, "d": [26,476], "a": 1 },
+ { "px": [240,176], "src": [320,272], "f": 0, "t": 411, "d": [26,477], "a": 1 },
+ { "px": [256,176], "src": [320,272], "f": 0, "t": 411, "d": [26,478], "a": 1 },
+ { "px": [272,176], "src": [320,272], "f": 0, "t": 411, "d": [26,479], "a": 1 },
+ { "px": [288,176], "src": [320,272], "f": 0, "t": 411, "d": [26,480], "a": 1 },
+ { "px": [304,176], "src": [320,272], "f": 0, "t": 411, "d": [26,481], "a": 1 },
+ { "px": [320,176], "src": [320,272], "f": 0, "t": 411, "d": [26,482], "a": 1 },
+ { "px": [336,176], "src": [320,272], "f": 0, "t": 411, "d": [26,483], "a": 1 },
+ { "px": [352,176], "src": [320,272], "f": 0, "t": 411, "d": [26,484], "a": 1 },
+ { "px": [368,176], "src": [320,272], "f": 0, "t": 411, "d": [26,485], "a": 1 },
+ { "px": [384,176], "src": [320,272], "f": 0, "t": 411, "d": [26,486], "a": 1 },
+ { "px": [400,176], "src": [320,272], "f": 0, "t": 411, "d": [26,487], "a": 1 },
+ { "px": [416,176], "src": [320,272], "f": 0, "t": 411, "d": [26,488], "a": 1 },
+ { "px": [432,176], "src": [320,272], "f": 0, "t": 411, "d": [26,489], "a": 1 },
+ { "px": [144,192], "src": [320,272], "f": 0, "t": 411, "d": [26,513], "a": 1 },
+ { "px": [160,192], "src": [320,272], "f": 0, "t": 411, "d": [26,514], "a": 1 },
+ { "px": [176,192], "src": [320,272], "f": 0, "t": 411, "d": [26,515], "a": 1 },
+ { "px": [192,192], "src": [320,272], "f": 0, "t": 411, "d": [26,516], "a": 1 },
+ { "px": [208,192], "src": [320,272], "f": 0, "t": 411, "d": [26,517], "a": 1 },
+ { "px": [224,192], "src": [320,272], "f": 0, "t": 411, "d": [26,518], "a": 1 },
+ { "px": [240,192], "src": [320,272], "f": 0, "t": 411, "d": [26,519], "a": 1 },
+ { "px": [256,192], "src": [320,272], "f": 0, "t": 411, "d": [26,520], "a": 1 },
+ { "px": [272,192], "src": [320,272], "f": 0, "t": 411, "d": [26,521], "a": 1 },
+ { "px": [288,192], "src": [320,272], "f": 0, "t": 411, "d": [26,522], "a": 1 },
+ { "px": [304,192], "src": [320,272], "f": 0, "t": 411, "d": [26,523], "a": 1 },
+ { "px": [320,192], "src": [320,272], "f": 0, "t": 411, "d": [26,524], "a": 1 },
+ { "px": [336,192], "src": [320,272], "f": 0, "t": 411, "d": [26,525], "a": 1 },
+ { "px": [352,192], "src": [320,272], "f": 0, "t": 411, "d": [26,526], "a": 1 },
+ { "px": [368,192], "src": [320,272], "f": 0, "t": 411, "d": [26,527], "a": 1 },
+ { "px": [384,192], "src": [320,272], "f": 0, "t": 411, "d": [26,528], "a": 1 },
+ { "px": [400,192], "src": [320,272], "f": 0, "t": 411, "d": [26,529], "a": 1 },
+ { "px": [416,192], "src": [320,272], "f": 0, "t": 411, "d": [26,530], "a": 1 },
+ { "px": [432,192], "src": [320,272], "f": 0, "t": 411, "d": [26,531], "a": 1 },
+ { "px": [160,208], "src": [320,272], "f": 0, "t": 411, "d": [26,556], "a": 1 },
+ { "px": [176,208], "src": [320,272], "f": 0, "t": 411, "d": [26,557], "a": 1 },
+ { "px": [208,208], "src": [320,272], "f": 0, "t": 411, "d": [26,559], "a": 1 },
+ { "px": [224,208], "src": [320,272], "f": 0, "t": 411, "d": [26,560], "a": 1 },
+ { "px": [320,208], "src": [320,272], "f": 0, "t": 411, "d": [26,566], "a": 1 },
+ { "px": [336,208], "src": [320,272], "f": 0, "t": 411, "d": [26,567], "a": 1 },
+ { "px": [352,208], "src": [320,272], "f": 0, "t": 411, "d": [26,568], "a": 1 },
+ { "px": [368,208], "src": [320,272], "f": 0, "t": 411, "d": [26,569], "a": 1 },
+ { "px": [384,208], "src": [320,272], "f": 0, "t": 411, "d": [26,570], "a": 1 },
+ { "px": [400,208], "src": [320,272], "f": 0, "t": 411, "d": [26,571], "a": 1 },
+ { "px": [416,208], "src": [320,272], "f": 0, "t": 411, "d": [26,572], "a": 1 },
+ { "px": [432,208], "src": [320,272], "f": 0, "t": 411, "d": [26,573], "a": 1 },
+ { "px": [368,224], "src": [320,272], "f": 0, "t": 411, "d": [26,611], "a": 1 },
+ { "px": [384,224], "src": [320,272], "f": 0, "t": 411, "d": [26,612], "a": 1 },
+ { "px": [400,224], "src": [320,272], "f": 0, "t": 411, "d": [26,613], "a": 1 },
+ { "px": [416,224], "src": [320,272], "f": 0, "t": 411, "d": [26,614], "a": 1 },
+ { "px": [352,288], "src": [320,272], "f": 0, "t": 411, "d": [26,778], "a": 1 },
+ { "px": [368,288], "src": [320,272], "f": 0, "t": 411, "d": [26,779], "a": 1 },
+ { "px": [352,304], "src": [320,272], "f": 0, "t": 411, "d": [26,820], "a": 1 },
+ { "px": [368,304], "src": [320,272], "f": 0, "t": 411, "d": [26,821], "a": 1 },
+ { "px": [352,320], "src": [320,272], "f": 0, "t": 411, "d": [26,862], "a": 1 },
+ { "px": [368,320], "src": [320,272], "f": 0, "t": 411, "d": [26,863], "a": 1 },
+ { "px": [128,160], "src": [320,272], "f": 0, "t": 411, "d": [84,428], "a": 1 },
+ { "px": [128,80], "src": [288,240], "f": 0, "t": 363, "d": [37,218], "a": 1 },
+ { "px": [288,80], "src": [288,240], "f": 1, "t": 363, "d": [37,228], "a": 1 },
+ { "px": [128,96], "src": [288,240], "f": 0, "t": 363, "d": [37,260], "a": 1 },
+ { "px": [288,96], "src": [288,240], "f": 1, "t": 363, "d": [37,270], "a": 1 },
+ { "px": [48,112], "src": [288,240], "f": 0, "t": 363, "d": [37,297], "a": 1 },
+ { "px": [288,112], "src": [288,240], "f": 1, "t": 363, "d": [37,312], "a": 1 },
+ { "px": [48,128], "src": [288,240], "f": 0, "t": 363, "d": [37,339], "a": 1 },
+ { "px": [288,128], "src": [288,240], "f": 1, "t": 363, "d": [37,354], "a": 1 },
+ { "px": [288,144], "src": [288,240], "f": 1, "t": 363, "d": [37,396], "a": 1 },
+ { "px": [144,160], "src": [288,240], "f": 0, "t": 363, "d": [37,429], "a": 1 },
+ { "px": [448,160], "src": [288,240], "f": 1, "t": 363, "d": [37,448], "a": 1 },
+ { "px": [128,176], "src": [288,240], "f": 0, "t": 363, "d": [37,470], "a": 1 },
+ { "px": [448,176], "src": [288,240], "f": 1, "t": 363, "d": [37,490], "a": 1 },
+ { "px": [128,192], "src": [288,240], "f": 0, "t": 363, "d": [37,512], "a": 1 },
+ { "px": [448,192], "src": [288,240], "f": 1, "t": 363, "d": [37,532], "a": 1 },
+ { "px": [448,208], "src": [288,240], "f": 1, "t": 363, "d": [37,574], "a": 1 },
+ { "px": [336,288], "src": [288,240], "f": 0, "t": 363, "d": [37,777], "a": 1 },
+ { "px": [384,288], "src": [288,240], "f": 1, "t": 363, "d": [37,780], "a": 1 },
+ { "px": [416,288], "src": [288,240], "f": 0, "t": 363, "d": [37,782], "a": 1 },
+ { "px": [336,304], "src": [288,240], "f": 0, "t": 363, "d": [37,819], "a": 1 },
+ { "px": [384,304], "src": [288,240], "f": 1, "t": 363, "d": [37,822], "a": 1 },
+ { "px": [416,304], "src": [288,240], "f": 0, "t": 363, "d": [37,824], "a": 1 },
+ { "px": [64,96], "src": [288,272], "f": 2, "t": 409, "d": [38,256], "a": 1 },
+ { "px": [80,96], "src": [288,272], "f": 2, "t": 409, "d": [38,257], "a": 1 },
+ { "px": [96,96], "src": [288,272], "f": 2, "t": 409, "d": [38,258], "a": 1 },
+ { "px": [64,144], "src": [288,272], "f": 0, "t": 409, "d": [38,382], "a": 1 },
+ { "px": [80,144], "src": [288,272], "f": 0, "t": 409, "d": [38,383], "a": 1 },
+ { "px": [256,208], "src": [288,272], "f": 0, "t": 409, "d": [38,562], "a": 1 },
+ { "px": [272,208], "src": [288,272], "f": 0, "t": 409, "d": [38,563], "a": 1 },
+ { "px": [304,208], "src": [288,272], "f": 0, "t": 409, "d": [38,565], "a": 1 },
+ { "px": [352,272], "src": [288,272], "f": 2, "t": 409, "d": [38,736], "a": 1 },
+ { "px": [368,272], "src": [288,272], "f": 2, "t": 409, "d": [38,737], "a": 1 },
+ { "px": [384,272], "src": [288,272], "f": 2, "t": 409, "d": [38,738], "a": 1 },
+ { "px": [160,96], "src": [256,240], "f": 0, "t": 361, "d": [77,263], "a": 1 },
+ { "px": [176,96], "src": [272,240], "f": 0, "t": 362, "d": [77,263], "a": 1 },
+ { "px": [192,96], "src": [288,240], "f": 0, "t": 363, "d": [77,263], "a": 1 },
+ { "px": [208,96], "src": [256,240], "f": 0, "t": 361, "d": [77,266], "a": 1 },
+ { "px": [224,96], "src": [272,240], "f": 0, "t": 362, "d": [77,266], "a": 1 },
+ { "px": [240,96], "src": [288,240], "f": 0, "t": 363, "d": [77,266], "a": 1 },
+ { "px": [176,128], "src": [256,240], "f": 0, "t": 361, "d": [77,348], "a": 1 },
+ { "px": [192,128], "src": [272,240], "f": 0, "t": 362, "d": [77,348], "a": 1 },
+ { "px": [208,128], "src": [288,240], "f": 0, "t": 363, "d": [77,348], "a": 1 },
+ { "px": [160,160], "src": [256,240], "f": 0, "t": 361, "d": [77,431], "a": 1 },
+ { "px": [176,160], "src": [272,240], "f": 0, "t": 362, "d": [77,431], "a": 1 },
+ { "px": [192,160], "src": [288,240], "f": 0, "t": 363, "d": [77,431], "a": 1 },
+ { "px": [144,64], "src": [144,272], "f": 2, "t": 400, "d": [39,177], "a": 1 },
+ { "px": [176,64], "src": [144,272], "f": 2, "t": 400, "d": [39,179], "a": 1 },
+ { "px": [192,64], "src": [192,304], "f": 2, "t": 449, "d": [39,180], "a": 1 },
+ { "px": [224,64], "src": [176,272], "f": 2, "t": 402, "d": [39,182], "a": 1 },
+ { "px": [256,64], "src": [160,304], "f": 2, "t": 447, "d": [39,184], "a": 1 },
+ { "px": [128,144], "src": [192,304], "f": 0, "t": 449, "d": [39,386], "a": 1 },
+ { "px": [144,208], "src": [176,272], "f": 0, "t": 402, "d": [39,555], "a": 1 },
+ { "px": [128,64], "src": [144,272], "f": 3, "t": 400, "d": [65,176], "a": 1 },
+ { "px": [288,64], "src": [144,272], "f": 2, "t": 400, "d": [65,186], "a": 1 },
+ { "px": [96,144], "src": [144,304], "f": 0, "t": 446, "d": [65,384], "a": 1 },
+ { "px": [128,208], "src": [128,320], "f": 1, "t": 468, "d": [65,554], "a": 1 },
+ { "px": [384,320], "src": [144,304], "f": 0, "t": 446, "d": [65,864], "a": 1 },
+ { "px": [48,96], "src": [208,304], "f": 2, "t": 450, "d": [80,255], "a": 1 },
+ { "px": [48,144], "src": [208,304], "f": 0, "t": 450, "d": [80,381], "a": 1 },
+ { "px": [352,144], "src": [208,304], "f": 2, "t": 450, "d": [80,400], "a": 1 },
+ { "px": [448,144], "src": [208,304], "f": 3, "t": 450, "d": [80,406], "a": 1 },
+ { "px": [352,224], "src": [208,304], "f": 0, "t": 450, "d": [80,610], "a": 1 },
+ { "px": [448,224], "src": [208,304], "f": 1, "t": 450, "d": [80,616], "a": 1 },
+ { "px": [336,272], "src": [208,304], "f": 2, "t": 450, "d": [80,735], "a": 1 },
+ { "px": [416,272], "src": [208,304], "f": 3, "t": 450, "d": [80,740], "a": 1 },
+ { "px": [336,320], "src": [208,304], "f": 0, "t": 450, "d": [80,861], "a": 1 },
+ { "px": [416,320], "src": [208,304], "f": 1, "t": 450, "d": [80,866], "a": 1 },
+ { "px": [184,176], "src": [208,240], "f": 0, "t": 358, "d": [72,558], "a": 1 },
+ { "px": [184,192], "src": [208,256], "f": 0, "t": 381, "d": [72,558], "a": 1 },
+ { "px": [184,208], "src": [208,272], "f": 0, "t": 404, "d": [72,558], "a": 1 },
+ { "px": [200,176], "src": [224,240], "f": 0, "t": 359, "d": [72,558], "a": 1 },
+ { "px": [200,192], "src": [224,256], "f": 0, "t": 382, "d": [72,558], "a": 1 },
+ { "px": [200,208], "src": [224,272], "f": 0, "t": 405, "d": [72,558], "a": 1 },
+ { "px": [232,176], "src": [208,240], "f": 0, "t": 358, "d": [72,561], "a": 1 },
+ { "px": [232,192], "src": [208,256], "f": 0, "t": 381, "d": [72,561], "a": 1 },
+ { "px": [232,208], "src": [208,272], "f": 0, "t": 404, "d": [72,561], "a": 1 },
+ { "px": [248,176], "src": [224,240], "f": 0, "t": 359, "d": [72,561], "a": 1 },
+ { "px": [248,192], "src": [224,256], "f": 0, "t": 382, "d": [72,561], "a": 1 },
+ { "px": [248,208], "src": [224,272], "f": 0, "t": 405, "d": [72,561], "a": 1 },
+ { "px": [280,176], "src": [208,240], "f": 0, "t": 358, "d": [72,564], "a": 1 },
+ { "px": [280,192], "src": [208,256], "f": 0, "t": 381, "d": [72,564], "a": 1 },
+ { "px": [280,208], "src": [208,272], "f": 0, "t": 404, "d": [72,564], "a": 1 },
+ { "px": [296,176], "src": [224,240], "f": 0, "t": 359, "d": [72,564], "a": 1 },
+ { "px": [296,192], "src": [224,256], "f": 0, "t": 382, "d": [72,564], "a": 1 },
+ { "px": [296,208], "src": [224,272], "f": 0, "t": 405, "d": [72,564], "a": 1 },
+ { "px": [424,192], "src": [208,240], "f": 0, "t": 358, "d": [72,615], "a": 1 },
+ { "px": [424,208], "src": [208,256], "f": 0, "t": 381, "d": [72,615], "a": 1 },
+ { "px": [424,224], "src": [208,272], "f": 0, "t": 404, "d": [72,615], "a": 1 },
+ { "px": [440,192], "src": [224,240], "f": 0, "t": 359, "d": [72,615], "a": 1 },
+ { "px": [440,208], "src": [224,256], "f": 0, "t": 382, "d": [72,615], "a": 1 },
+ { "px": [440,224], "src": [224,272], "f": 0, "t": 405, "d": [72,615], "a": 1 }
+ ],
+ "seed": 4160648,
+ "overrideTilesetUid": null,
+ "gridTiles": [],
+ "entityInstances": []
+ }
+ ],
+ "__neighbours": [{ "levelIid": "a315ac10-66b0-11ec-9cd7-99f223ad6ade", "dir": "s" }]
+ },
+ {
+ "identifier": "Bottom",
+ "iid": "a317cef0-66b0-11ec-9cd7-dd2f249c8c8b",
+ "uid": 88,
+ "worldX": 80,
+ "worldY": 336,
+ "worldDepth": 0,
+ "pxWid": 464,
+ "pxHei": 256,
+ "__bgColor": "#50506A",
+ "bgColor": null,
+ "useAutoIdentifier": false,
+ "bgRelPath": null,
+ "bgPos": null,
+ "bgPivotX": 0.5,
+ "bgPivotY": 0.5,
+ "__smartColor": "#9F9FAD",
+ "__bgPos": null,
+ "externalRelPath": null,
+ "fieldInstances": [],
+ "layerInstances": [
+ {
+ "__identifier": "Entities",
+ "__type": "Entities",
+ "__cWid": 29,
+ "__cHei": 16,
+ "__gridSize": 16,
+ "__opacity": 1,
+ "__pxTotalOffsetX": 0,
+ "__pxTotalOffsetY": 0,
+ "__tilesetDefUid": null,
+ "__tilesetRelPath": null,
+ "iid": "a317cef5-66b0-11ec-9cd7-1763e00a48a4",
+ "levelId": 88,
+ "layerDefUid": 48,
+ "pxOffsetX": 0,
+ "pxOffsetY": 0,
+ "visible": true,
+ "optionalRules": [],
+ "intGridCsv": [],
+ "autoLayerTiles": [],
+ "seed": 5505402,
+ "overrideTilesetUid": null,
+ "gridTiles": [],
+ "entityInstances": [
+ {
+ "__identifier": "Mob",
+ "__grid": [19,10],
+ "__pivot": [0.5,1],
+ "__tags": [],
+ "__tile": { "x": 96, "y": 0, "w": 16, "h": 16, "tilesetUid": 104 },
+ "__smartColor": "#FF0000",
+ "iid": "a317cef6-66b0-11ec-9cd7-a5ccf047f66e",
+ "width": 20,
+ "height": 20,
+ "defUid": 54,
+ "px": [312,176],
+ "fieldInstances": [
+ { "__identifier": "loot", "__type": "Array", "__value": ["Healing_Plant"], "__tile": null, "defUid": 56, "realEditorValues": [{
+ "id": "V_String",
+ "params": ["Healing_Plant"]
+ }] },
+ { "__identifier": "patrol", "__type": "Array", "__value": [{ "cx": 11, "cy": 10 }], "__tile": null, "defUid": 55, "realEditorValues": [{
+ "id": "V_String",
+ "params": ["11,10"]
+ }] }
+ ]
+ }
+ ]
+ },
+ {
+ "__identifier": "Wall_shadows",
+ "__type": "AutoLayer",
+ "__cWid": 29,
+ "__cHei": 16,
+ "__gridSize": 16,
+ "__opacity": 0.17,
+ "__pxTotalOffsetX": 0,
+ "__pxTotalOffsetY": 0,
+ "__tilesetDefUid": 2,
+ "__tilesetRelPath": "atlas/SunnyLand_by_Ansimuz-extended.png",
+ "iid": "a317cef7-66b0-11ec-9cd7-61e9cd78ec4b",
+ "levelId": 88,
+ "layerDefUid": 97,
+ "pxOffsetX": 0,
+ "pxOffsetY": 0,
+ "visible": true,
+ "optionalRules": [],
+ "intGridCsv": [],
+ "autoLayerTiles": [
+ { "px": [176,48], "src": [336,112], "f": 0, "t": 182, "d": [99,98], "a": 1 },
+ { "px": [192,48], "src": [336,112], "f": 0, "t": 182, "d": [99,99], "a": 1 },
+ { "px": [208,48], "src": [336,112], "f": 0, "t": 182, "d": [99,100], "a": 1 },
+ { "px": [224,48], "src": [336,112], "f": 0, "t": 182, "d": [99,101], "a": 1 },
+ { "px": [256,48], "src": [336,112], "f": 0, "t": 182, "d": [99,103], "a": 1 },
+ { "px": [272,48], "src": [336,112], "f": 0, "t": 182, "d": [99,104], "a": 1 },
+ { "px": [288,48], "src": [336,112], "f": 0, "t": 182, "d": [99,105], "a": 1 },
+ { "px": [304,48], "src": [336,112], "f": 0, "t": 182, "d": [99,106], "a": 1 },
+ { "px": [176,160], "src": [336,112], "f": 2, "t": 182, "d": [99,301], "a": 1 },
+ { "px": [192,160], "src": [336,112], "f": 2, "t": 182, "d": [99,302], "a": 1 },
+ { "px": [208,160], "src": [336,112], "f": 2, "t": 182, "d": [99,303], "a": 1 },
+ { "px": [224,160], "src": [336,112], "f": 2, "t": 182, "d": [99,304], "a": 1 },
+ { "px": [256,160], "src": [336,112], "f": 2, "t": 182, "d": [99,306], "a": 1 },
+ { "px": [272,160], "src": [336,112], "f": 2, "t": 182, "d": [99,307], "a": 1 },
+ { "px": [288,160], "src": [336,112], "f": 2, "t": 182, "d": [99,308], "a": 1 },
+ { "px": [304,160], "src": [336,112], "f": 2, "t": 182, "d": [99,309], "a": 1 },
+ { "px": [176,48], "src": [320,128], "f": 0, "t": 204, "d": [100,98], "a": 1 },
+ { "px": [224,48], "src": [320,128], "f": 1, "t": 204, "d": [100,101], "a": 1 },
+ { "px": [256,48], "src": [320,128], "f": 0, "t": 204, "d": [100,103], "a": 1 },
+ { "px": [304,48], "src": [320,128], "f": 1, "t": 204, "d": [100,106], "a": 1 },
+ { "px": [176,64], "src": [320,128], "f": 0, "t": 204, "d": [100,127], "a": 1 },
+ { "px": [224,64], "src": [320,128], "f": 1, "t": 204, "d": [100,130], "a": 1 },
+ { "px": [256,64], "src": [320,128], "f": 0, "t": 204, "d": [100,132], "a": 1 },
+ { "px": [304,64], "src": [320,128], "f": 1, "t": 204, "d": [100,135], "a": 1 },
+ { "px": [176,80], "src": [320,128], "f": 0, "t": 204, "d": [100,156], "a": 1 },
+ { "px": [224,80], "src": [320,128], "f": 1, "t": 204, "d": [100,159], "a": 1 },
+ { "px": [256,80], "src": [320,128], "f": 0, "t": 204, "d": [100,161], "a": 1 },
+ { "px": [304,80], "src": [320,128], "f": 1, "t": 204, "d": [100,164], "a": 1 },
+ { "px": [176,96], "src": [320,128], "f": 0, "t": 204, "d": [100,185], "a": 1 },
+ { "px": [224,96], "src": [320,128], "f": 1, "t": 204, "d": [100,188], "a": 1 },
+ { "px": [256,96], "src": [320,128], "f": 0, "t": 204, "d": [100,190], "a": 1 },
+ { "px": [304,96], "src": [320,128], "f": 1, "t": 204, "d": [100,193], "a": 1 },
+ { "px": [176,112], "src": [320,128], "f": 0, "t": 204, "d": [100,214], "a": 1 },
+ { "px": [224,112], "src": [320,128], "f": 1, "t": 204, "d": [100,217], "a": 1 },
+ { "px": [256,112], "src": [320,128], "f": 0, "t": 204, "d": [100,219], "a": 1 },
+ { "px": [304,112], "src": [320,128], "f": 1, "t": 204, "d": [100,222], "a": 1 },
+ { "px": [176,128], "src": [320,128], "f": 0, "t": 204, "d": [100,243], "a": 1 },
+ { "px": [224,128], "src": [320,128], "f": 1, "t": 204, "d": [100,246], "a": 1 },
+ { "px": [256,128], "src": [320,128], "f": 0, "t": 204, "d": [100,248], "a": 1 },
+ { "px": [304,128], "src": [320,128], "f": 1, "t": 204, "d": [100,251], "a": 1 },
+ { "px": [176,144], "src": [320,128], "f": 0, "t": 204, "d": [100,272], "a": 1 },
+ { "px": [224,144], "src": [320,128], "f": 1, "t": 204, "d": [100,275], "a": 1 },
+ { "px": [256,144], "src": [320,128], "f": 0, "t": 204, "d": [100,277], "a": 1 },
+ { "px": [304,144], "src": [320,128], "f": 1, "t": 204, "d": [100,280], "a": 1 },
+ { "px": [176,160], "src": [320,128], "f": 0, "t": 204, "d": [100,301], "a": 1 },
+ { "px": [224,160], "src": [320,128], "f": 1, "t": 204, "d": [100,304], "a": 1 },
+ { "px": [256,160], "src": [320,128], "f": 0, "t": 204, "d": [100,306], "a": 1 },
+ { "px": [304,160], "src": [320,128], "f": 1, "t": 204, "d": [100,309], "a": 1 }
+ ],
+ "seed": 12126,
+ "overrideTilesetUid": null,
+ "gridTiles": [],
+ "entityInstances": []
+ },
+ {
+ "__identifier": "Collisions",
+ "__type": "IntGrid",
+ "__cWid": 29,
+ "__cHei": 16,
+ "__gridSize": 16,
+ "__opacity": 1,
+ "__pxTotalOffsetX": 0,
+ "__pxTotalOffsetY": 0,
+ "__tilesetDefUid": 2,
+ "__tilesetRelPath": "atlas/SunnyLand_by_Ansimuz-extended.png",
+ "iid": "a317cef8-66b0-11ec-9cd7-4de4e6b85e16",
+ "levelId": 88,
+ "layerDefUid": 1,
+ "pxOffsetX": 0,
+ "pxOffsetY": 0,
+ "visible": true,
+ "optionalRules": [],
+ "intGridCsv": [
+ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
+ 1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
+ 1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,0,0,
+ 0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,0,0,0,0,1,1,1,1,
+ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,
+ 1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
+ 1,1,1,1,0,0,0,0,2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,
+ 0,0,2,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,0,0,0,
+ 0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,2,0,0,0,0,1,1,1,1,1,
+ 1,1,1,1,1,1,1,1,1,1,1,1,1,3,3,3,3,3,3,3,3,3,3,3,3,3,1,1,1,1,1,1,1,1,1,
+ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
+ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
+ 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,
+ 1,1,1,1,1,1,1,1,1
+ ],
+ "autoLayerTiles": [
+ { "px": [176,0], "src": [32,32], "f": 0, "t": 48, "d": [13,11], "a": 1 },
+ { "px": [192,0], "src": [32,32], "f": 0, "t": 48, "d": [13,12], "a": 1 },
+ { "px": [208,0], "src": [32,32], "f": 0, "t": 48, "d": [13,13], "a": 1 },
+ { "px": [272,0], "src": [32,32], "f": 0, "t": 48, "d": [13,17], "a": 1 },
+ { "px": [320,0], "src": [32,32], "f": 0, "t": 48, "d": [13,20], "a": 1 },
+ { "px": [336,0], "src": [32,32], "f": 0, "t": 48, "d": [13,21], "a": 1 },
+ { "px": [128,16], "src": [32,32], "f": 0, "t": 48, "d": [13,37], "a": 1 },
+ { "px": [144,16], "src": [32,32], "f": 0, "t": 48, "d": [13,38], "a": 1 },
+ { "px": [304,16], "src": [32,32], "f": 0, "t": 48, "d": [13,48], "a": 1 },
+ { "px": [320,16], "src": [32,32], "f": 0, "t": 48, "d": [13,49], "a": 1 },
+ { "px": [336,16], "src": [32,32], "f": 0, "t": 48, "d": [13,50], "a": 1 },
+ { "px": [352,16], "src": [32,32], "f": 0, "t": 48, "d": [13,51], "a": 1 },
+ { "px": [128,32], "src": [32,32], "f": 0, "t": 48, "d": [13,66], "a": 1 },
+ { "px": [160,32], "src": [32,32], "f": 0, "t": 48, "d": [13,68], "a": 1 },
+ { "px": [320,32], "src": [32,32], "f": 0, "t": 48, "d": [13,78], "a": 1 },
+ { "px": [336,32], "src": [32,32], "f": 0, "t": 48, "d": [13,79], "a": 1 },
+ { "px": [352,32], "src": [32,32], "f": 0, "t": 48, "d": [13,80], "a": 1 },
+ { "px": [128,48], "src": [32,32], "f": 0, "t": 48, "d": [13,95], "a": 1 },
+ { "px": [336,48], "src": [32,32], "f": 0, "t": 48, "d": [13,108], "a": 1 },
+ { "px": [352,48], "src": [32,32], "f": 0, "t": 48, "d": [13,109], "a": 1 },
+ { "px": [128,64], "src": [32,32], "f": 0, "t": 48, "d": [13,124], "a": 1 },
+ { "px": [144,64], "src": [32,32], "f": 0, "t": 48, "d": [13,125], "a": 1 },
+ { "px": [336,64], "src": [32,32], "f": 0, "t": 48, "d": [13,137], "a": 1 },
+ { "px": [352,64], "src": [32,32], "f": 0, "t": 48, "d": [13,138], "a": 1 },
+ { "px": [128,80], "src": [32,32], "f": 0, "t": 48, "d": [13,153], "a": 1 },
+ { "px": [144,80], "src": [32,32], "f": 0, "t": 48, "d": [13,154], "a": 1 },
+ { "px": [336,80], "src": [32,32], "f": 0, "t": 48, "d": [13,166], "a": 1 },
+ { "px": [128,96], "src": [32,32], "f": 0, "t": 48, "d": [13,182], "a": 1 },
+ { "px": [144,96], "src": [32,32], "f": 0, "t": 48, "d": [13,183], "a": 1 },
+ { "px": [336,96], "src": [32,32], "f": 0, "t": 48, "d": [13,195], "a": 1 },
+ { "px": [128,112], "src": [32,32], "f": 0, "t": 48, "d": [13,211], "a": 1 },
+ { "px": [144,112], "src": [32,32], "f": 0, "t": 48, "d": [13,212], "a": 1 },
+ { "px": [336,112], "src": [32,32], "f": 0, "t": 48, "d": [13,224], "a": 1 },
+ { "px": [352,112], "src": [32,32], "f": 0, "t": 48, "d": [13,225], "a": 1 },
+ { "px": [128,128], "src": [32,32], "f": 0, "t": 48, "d": [13,240], "a": 1 },
+ { "px": [128,144], "src": [32,32], "f": 0, "t": 48, "d": [13,269], "a": 1 },
+ { "px": [352,144], "src": [32,32], "f": 0, "t": 48, "d": [13,283], "a": 1 },
+ { "px": [384,144], "src": [32,32], "f": 0, "t": 48, "d": [13,285], "a": 1 },
+ { "px": [352,160], "src": [32,32], "f": 0, "t": 48, "d": [13,312], "a": 1 },
+ { "px": [368,160], "src": [32,32], "f": 0, "t": 48, "d": [13,313], "a": 1 },
+ { "px": [384,160], "src": [32,32], "f": 0, "t": 48, "d": [13,314], "a": 1 },
+ { "px": [96,176], "src": [32,32], "f": 0, "t": 48, "d": [13,325], "a": 1 },
+ { "px": [112,176], "src": [32,32], "f": 0, "t": 48, "d": [13,326], "a": 1 },
+ { "px": [368,176], "src": [32,32], "f": 0, "t": 48, "d": [13,342], "a": 1 },
+ { "px": [384,176], "src": [32,32], "f": 0, "t": 48, "d": [13,343], "a": 1 },
+ { "px": [352,192], "src": [32,32], "f": 0, "t": 48, "d": [13,370], "a": 1 },
+ { "px": [368,192], "src": [32,32], "f": 0, "t": 48, "d": [13,371], "a": 1 },
+ { "px": [384,192], "src": [32,32], "f": 0, "t": 48, "d": [13,372], "a": 1 },
+ { "px": [96,208], "src": [32,32], "f": 0, "t": 48, "d": [13,383], "a": 1 },
+ { "px": [144,208], "src": [32,32], "f": 0, "t": 48, "d": [13,386], "a": 1 },
+ { "px": [160,208], "src": [32,32], "f": 0, "t": 48, "d": [13,387], "a": 1 },
+ { "px": [176,208], "src": [32,32], "f": 0, "t": 48, "d": [13,388], "a": 1 },
+ { "px": [192,208], "src": [32,32], "f": 0, "t": 48, "d": [13,389], "a": 1 },
+ { "px": [208,208], "src": [32,32], "f": 0, "t": 48, "d": [13,390], "a": 1 },
+ { "px": [224,208], "src": [32,32], "f": 0, "t": 48, "d": [13,391], "a": 1 },
+ { "px": [240,208], "src": [32,32], "f": 0, "t": 48, "d": [13,392], "a": 1 },
+ { "px": [256,208], "src": [32,32], "f": 0, "t": 48, "d": [13,393], "a": 1 },
+ { "px": [272,208], "src": [32,32], "f": 0, "t": 48, "d": [13,394], "a": 1 },
+ { "px": [288,208], "src": [32,32], "f": 0, "t": 48, "d": [13,395], "a": 1 },
+ { "px": [304,208], "src": [32,32], "f": 0, "t": 48, "d": [13,396], "a": 1 },
+ { "px": [320,208], "src": [32,32], "f": 0, "t": 48, "d": [13,397], "a": 1 },
+ { "px": [336,208], "src": [32,32], "f": 0, "t": 48, "d": [13,398], "a": 1 },
+ { "px": [352,208], "src": [32,32], "f": 0, "t": 48, "d": [13,399], "a": 1 },
+ { "px": [368,208], "src": [32,32], "f": 0, "t": 48, "d": [13,400], "a": 1 },
+ { "px": [384,208], "src": [32,32], "f": 0, "t": 48, "d": [13,401], "a": 1 },
+ { "px": [112,224], "src": [32,32], "f": 0, "t": 48, "d": [13,413], "a": 1 },
+ { "px": [144,224], "src": [32,32], "f": 0, "t": 48, "d": [13,415], "a": 1 },
+ { "px": [160,224], "src": [32,32], "f": 0, "t": 48, "d": [13,416], "a": 1 },
+ { "px": [176,224], "src": [32,32], "f": 0, "t": 48, "d": [13,417], "a": 1 },
+ { "px": [192,224], "src": [32,32], "f": 0, "t": 48, "d": [13,418], "a": 1 },
+ { "px": [208,224], "src": [32,32], "f": 0, "t": 48, "d": [13,419], "a": 1 },
+ { "px": [224,224], "src": [32,32], "f": 0, "t": 48, "d": [13,420], "a": 1 },
+ { "px": [240,224], "src": [32,32], "f": 0, "t": 48, "d": [13,421], "a": 1 },
+ { "px": [256,224], "src": [32,32], "f": 0, "t": 48, "d": [13,422], "a": 1 },
+ { "px": [272,224], "src": [32,32], "f": 0, "t": 48, "d": [13,423], "a": 1 },
+ { "px": [288,224], "src": [32,32], "f": 0, "t": 48, "d": [13,424], "a": 1 },
+ { "px": [304,224], "src": [32,32], "f": 0, "t": 48, "d": [13,425], "a": 1 },
+ { "px": [320,224], "src": [32,32], "f": 0, "t": 48, "d": [13,426], "a": 1 },
+ { "px": [336,224], "src": [32,32], "f": 0, "t": 48, "d": [13,427], "a": 1 },
+ { "px": [352,224], "src": [32,32], "f": 0, "t": 48, "d": [13,428], "a": 1 },
+ { "px": [368,224], "src": [32,32], "f": 0, "t": 48, "d": [13,429], "a": 1 },
+ { "px": [176,16], "src": [96,96], "f": 0, "t": 144, "d": [81,40], "a": 1 },
+ { "px": [192,16], "src": [96,96], "f": 0, "t": 144, "d": [81,41], "a": 1 },
+ { "px": [208,16], "src": [96,96], "f": 0, "t": 144, "d": [81,42], "a": 1 },
+ { "px": [272,16], "src": [96,96], "f": 0, "t": 144, "d": [81,46], "a": 1 },
+ { "px": [144,32], "src": [96,96], "f": 0, "t": 144, "d": [81,67], "a": 1 },
+ { "px": [144,48], "src": [96,96], "f": 0, "t": 144, "d": [81,96], "a": 1 },
+ { "px": [352,80], "src": [96,96], "f": 0, "t": 144, "d": [81,167], "a": 1 },
+ { "px": [144,128], "src": [96,96], "f": 0, "t": 144, "d": [81,241], "a": 1 },
+ { "px": [352,128], "src": [96,96], "f": 0, "t": 144, "d": [81,254], "a": 1 },
+ { "px": [368,128], "src": [96,96], "f": 0, "t": 144, "d": [81,255], "a": 1 },
+ { "px": [96,144], "src": [96,96], "f": 0, "t": 144, "d": [81,267], "a": 1 },
+ { "px": [112,144], "src": [96,96], "f": 0, "t": 144, "d": [81,268], "a": 1 },
+ { "px": [96,160], "src": [96,96], "f": 0, "t": 144, "d": [81,296], "a": 1 },
+ { "px": [112,160], "src": [96,96], "f": 0, "t": 144, "d": [81,297], "a": 1 },
+ { "px": [128,160], "src": [96,96], "f": 0, "t": 144, "d": [81,298], "a": 1 },
+ { "px": [112,192], "src": [96,96], "f": 0, "t": 144, "d": [81,355], "a": 1 },
+ { "px": [128,208], "src": [96,96], "f": 0, "t": 144, "d": [81,385], "a": 1 },
+ { "px": [144,0], "src": [64,96], "f": 0, "t": 142, "d": [14,9], "a": 1 },
+ { "px": [160,0], "src": [64,96], "f": 0, "t": 142, "d": [14,10], "a": 1 },
+ { "px": [288,0], "src": [64,96], "f": 0, "t": 142, "d": [14,18], "a": 1 },
+ { "px": [304,0], "src": [64,96], "f": 0, "t": 142, "d": [14,19], "a": 1 },
+ { "px": [160,16], "src": [64,96], "f": 0, "t": 142, "d": [14,39], "a": 1 },
+ { "px": [288,16], "src": [96,96], "f": 0, "t": 144, "d": [14,47], "a": 1 },
+ { "px": [352,96], "src": [64,96], "f": 0, "t": 142, "d": [14,196], "a": 1 },
+ { "px": [112,128], "src": [96,96], "f": 0, "t": 144, "d": [14,239], "a": 1 },
+ { "px": [336,128], "src": [96,96], "f": 0, "t": 144, "d": [14,253], "a": 1 },
+ { "px": [144,144], "src": [64,96], "f": 0, "t": 142, "d": [14,270], "a": 1 },
+ { "px": [336,144], "src": [96,96], "f": 0, "t": 144, "d": [14,282], "a": 1 },
+ { "px": [368,144], "src": [64,96], "f": 0, "t": 142, "d": [14,284], "a": 1 },
+ { "px": [96,192], "src": [96,96], "f": 0, "t": 144, "d": [14,354], "a": 1 },
+ { "px": [128,192], "src": [64,96], "f": 0, "t": 142, "d": [14,356], "a": 1 },
+ { "px": [112,208], "src": [64,96], "f": 0, "t": 142, "d": [14,384], "a": 1 },
+ { "px": [128,224], "src": [64,96], "f": 0, "t": 142, "d": [14,414], "a": 1 },
+ { "px": [224,0], "src": [0,32], "f": 1, "t": 46, "d": [16,14], "a": 1 },
+ { "px": [256,0], "src": [0,32], "f": 0, "t": 46, "d": [16,16], "a": 1 },
+ { "px": [224,16], "src": [0,32], "f": 1, "t": 46, "d": [16,43], "a": 1 },
+ { "px": [256,16], "src": [0,32], "f": 0, "t": 46, "d": [16,45], "a": 1 },
+ { "px": [160,48], "src": [0,32], "f": 1, "t": 46, "d": [16,97], "a": 1 },
+ { "px": [320,48], "src": [0,32], "f": 0, "t": 46, "d": [16,107], "a": 1 },
+ { "px": [160,64], "src": [0,32], "f": 1, "t": 46, "d": [16,126], "a": 1 },
+ { "px": [320,64], "src": [0,32], "f": 0, "t": 46, "d": [16,136], "a": 1 },
+ { "px": [160,80], "src": [0,32], "f": 1, "t": 46, "d": [16,155], "a": 1 },
+ { "px": [320,80], "src": [0,32], "f": 0, "t": 46, "d": [16,165], "a": 1 },
+ { "px": [160,96], "src": [0,32], "f": 1, "t": 46, "d": [16,184], "a": 1 },
+ { "px": [320,96], "src": [0,32], "f": 0, "t": 46, "d": [16,194], "a": 1 },
+ { "px": [160,112], "src": [0,32], "f": 1, "t": 46, "d": [16,213], "a": 1 },
+ { "px": [320,112], "src": [0,32], "f": 0, "t": 46, "d": [16,223], "a": 1 },
+ { "px": [160,128], "src": [0,32], "f": 1, "t": 46, "d": [16,242], "a": 1 },
+ { "px": [320,128], "src": [0,32], "f": 0, "t": 46, "d": [16,252], "a": 1 },
+ { "px": [160,144], "src": [0,32], "f": 1, "t": 46, "d": [16,271], "a": 1 },
+ { "px": [320,144], "src": [0,32], "f": 0, "t": 46, "d": [16,281], "a": 1 },
+ { "px": [128,176], "src": [0,32], "f": 1, "t": 46, "d": [16,327], "a": 1 },
+ { "px": [352,176], "src": [0,32], "f": 0, "t": 46, "d": [16,341], "a": 1 },
+ { "px": [176,32], "src": [32,64], "f": 0, "t": 94, "d": [18,69], "a": 1 },
+ { "px": [192,32], "src": [32,64], "f": 0, "t": 94, "d": [18,70], "a": 1 },
+ { "px": [208,32], "src": [32,64], "f": 0, "t": 94, "d": [18,71], "a": 1 },
+ { "px": [272,32], "src": [32,64], "f": 0, "t": 94, "d": [18,75], "a": 1 },
+ { "px": [288,32], "src": [32,64], "f": 0, "t": 94, "d": [18,76], "a": 1 },
+ { "px": [304,32], "src": [32,64], "f": 0, "t": 94, "d": [18,77], "a": 1 },
+ { "px": [144,160], "src": [32,64], "f": 0, "t": 94, "d": [18,299], "a": 1 },
+ { "px": [336,160], "src": [32,64], "f": 0, "t": 94, "d": [18,311], "a": 1 },
+ { "px": [224,32], "src": [0,64], "f": 1, "t": 92, "d": [17,72], "a": 1 },
+ { "px": [256,32], "src": [0,64], "f": 0, "t": 92, "d": [17,74], "a": 1 },
+ { "px": [160,160], "src": [0,64], "f": 1, "t": 92, "d": [17,300], "a": 1 },
+ { "px": [320,160], "src": [0,64], "f": 0, "t": 92, "d": [17,310], "a": 1 },
+ { "px": [176,48], "src": [64,144], "f": 0, "t": 211, "d": [29,98], "a": 1 },
+ { "px": [304,48], "src": [48,160], "f": 1, "t": 233, "d": [29,106], "a": 1 },
+ { "px": [224,32], "src": [64,224], "f": 3, "t": 326, "d": [31,72], "a": 1 },
+ { "px": [256,32], "src": [64,224], "f": 2, "t": 326, "d": [31,74], "a": 1 },
+ { "px": [160,160], "src": [64,224], "f": 3, "t": 326, "d": [31,300], "a": 1 },
+ { "px": [320,160], "src": [64,224], "f": 2, "t": 326, "d": [31,310], "a": 1 },
+ { "px": [160,32], "src": [64,144], "f": 3, "t": 211, "d": [32,68], "a": 1 },
+ { "px": [320,32], "src": [64,144], "f": 2, "t": 211, "d": [32,78], "a": 1 },
+ { "px": [128,160], "src": [64,144], "f": 3, "t": 211, "d": [32,298], "a": 1 },
+ { "px": [352,160], "src": [64,144], "f": 2, "t": 211, "d": [32,312], "a": 1 },
+ { "px": [128,192], "src": [64,144], "f": 1, "t": 211, "d": [32,356], "a": 1 },
+ { "px": [352,192], "src": [64,144], "f": 0, "t": 211, "d": [32,370], "a": 1 },
+ { "px": [144,192], "src": [32,0], "f": 0, "t": 2, "d": [12,357], "a": 1 },
+ { "px": [160,192], "src": [32,0], "f": 0, "t": 2, "d": [12,358], "a": 1 },
+ { "px": [176,192], "src": [32,0], "f": 0, "t": 2, "d": [12,359], "a": 1 },
+ { "px": [192,192], "src": [32,0], "f": 0, "t": 2, "d": [12,360], "a": 1 },
+ { "px": [208,192], "src": [32,0], "f": 0, "t": 2, "d": [12,361], "a": 1 },
+ { "px": [224,192], "src": [32,0], "f": 0, "t": 2, "d": [12,362], "a": 1 },
+ { "px": [240,192], "src": [32,0], "f": 0, "t": 2, "d": [12,363], "a": 1 },
+ { "px": [256,192], "src": [32,0], "f": 0, "t": 2, "d": [12,364], "a": 1 },
+ { "px": [272,192], "src": [32,0], "f": 0, "t": 2, "d": [12,365], "a": 1 },
+ { "px": [288,192], "src": [32,0], "f": 0, "t": 2, "d": [12,366], "a": 1 },
+ { "px": [304,192], "src": [32,0], "f": 0, "t": 2, "d": [12,367], "a": 1 },
+ { "px": [320,192], "src": [32,0], "f": 0, "t": 2, "d": [12,368], "a": 1 },
+ { "px": [336,192], "src": [32,0], "f": 0, "t": 2, "d": [12,369], "a": 1 },
+ { "px": [160,176], "src": [256,96], "f": 0, "t": 154, "d": [59,329], "a": 1 },
+ { "px": [176,176], "src": [256,96], "f": 0, "t": 154, "d": [59,330], "a": 1 },
+ { "px": [192,176], "src": [256,96], "f": 0, "t": 154, "d": [59,331], "a": 1 },
+ { "px": [208,176], "src": [256,96], "f": 0, "t": 154, "d": [59,332], "a": 1 },
+ { "px": [224,176], "src": [256,96], "f": 0, "t": 154, "d": [59,333], "a": 1 },
+ { "px": [240,176], "src": [256,96], "f": 0, "t": 154, "d": [59,334], "a": 1 },
+ { "px": [256,176], "src": [256,96], "f": 0, "t": 154, "d": [59,335], "a": 1 },
+ { "px": [272,176], "src": [256,96], "f": 0, "t": 154, "d": [59,336], "a": 1 },
+ { "px": [288,176], "src": [256,96], "f": 0, "t": 154, "d": [59,337], "a": 1 },
+ { "px": [304,176], "src": [256,96], "f": 0, "t": 154, "d": [59,338], "a": 1 },
+ { "px": [320,176], "src": [256,96], "f": 0, "t": 154, "d": [59,339], "a": 1 },
+ { "px": [144,176], "src": [224,96], "f": 0, "t": 152, "d": [60,328], "a": 1 },
+ { "px": [336,176], "src": [224,96], "f": 1, "t": 152, "d": [60,340], "a": 1 },
+ { "px": [304,64], "src": [128,96], "f": 1, "t": 146, "d": [22,135], "a": 1 },
+ { "px": [176,80], "src": [128,96], "f": 0, "t": 146, "d": [22,156], "a": 1 },
+ { "px": [176,128], "src": [128,96], "f": 0, "t": 146, "d": [22,243], "a": 1 },
+ { "px": [192,48], "src": [160,208], "f": 0, "t": 309, "d": [35,99], "a": 1 },
+ { "px": [240,0], "src": [96,144], "f": 0, "t": 213, "d": [41,15], "a": 1 },
+ { "px": [240,16], "src": [96,144], "f": 0, "t": 213, "d": [41,44], "a": 1 },
+ { "px": [240,32], "src": [96,144], "f": 0, "t": 213, "d": [41,73], "a": 1 },
+ { "px": [240,48], "src": [96,144], "f": 0, "t": 213, "d": [41,102], "a": 1 },
+ { "px": [240,64], "src": [96,144], "f": 0, "t": 213, "d": [41,131], "a": 1 },
+ { "px": [240,80], "src": [96,144], "f": 0, "t": 213, "d": [41,160], "a": 1 },
+ { "px": [240,96], "src": [96,144], "f": 0, "t": 213, "d": [41,189], "a": 1 },
+ { "px": [240,112], "src": [96,144], "f": 0, "t": 213, "d": [41,218], "a": 1 },
+ { "px": [240,128], "src": [96,144], "f": 0, "t": 213, "d": [41,247], "a": 1 },
+ { "px": [240,144], "src": [96,144], "f": 0, "t": 213, "d": [41,276], "a": 1 },
+ { "px": [240,160], "src": [96,144], "f": 0, "t": 213, "d": [41,305], "a": 1 },
+ { "px": [0,0], "src": [32,32], "f": 0, "t": 48, "d": [102,0], "a": 1 },
+ { "px": [16,0], "src": [32,32], "f": 0, "t": 48, "d": [102,1], "a": 1 },
+ { "px": [32,0], "src": [32,32], "f": 0, "t": 48, "d": [102,2], "a": 1 },
+ { "px": [48,0], "src": [32,32], "f": 0, "t": 48, "d": [102,3], "a": 1 },
+ { "px": [64,0], "src": [32,32], "f": 0, "t": 48, "d": [102,4], "a": 1 },
+ { "px": [80,0], "src": [32,32], "f": 0, "t": 48, "d": [102,5], "a": 1 },
+ { "px": [96,0], "src": [32,32], "f": 0, "t": 48, "d": [102,6], "a": 1 },
+ { "px": [112,0], "src": [32,32], "f": 0, "t": 48, "d": [102,7], "a": 1 },
+ { "px": [128,0], "src": [32,32], "f": 0, "t": 48, "d": [102,8], "a": 1 },
+ { "px": [352,0], "src": [32,32], "f": 0, "t": 48, "d": [102,22], "a": 1 },
+ { "px": [368,0], "src": [32,32], "f": 0, "t": 48, "d": [102,23], "a": 1 },
+ { "px": [384,0], "src": [32,32], "f": 0, "t": 48, "d": [102,24], "a": 1 },
+ { "px": [400,0], "src": [32,32], "f": 0, "t": 48, "d": [102,25], "a": 1 },
+ { "px": [416,0], "src": [32,32], "f": 0, "t": 48, "d": [102,26], "a": 1 },
+ { "px": [432,0], "src": [32,32], "f": 0, "t": 48, "d": [102,27], "a": 1 },
+ { "px": [448,0], "src": [32,32], "f": 0, "t": 48, "d": [102,28], "a": 1 },
+ { "px": [0,16], "src": [32,32], "f": 0, "t": 48, "d": [102,29], "a": 1 },
+ { "px": [16,16], "src": [32,32], "f": 0, "t": 48, "d": [102,30], "a": 1 },
+ { "px": [32,16], "src": [32,32], "f": 0, "t": 48, "d": [102,31], "a": 1 },
+ { "px": [48,16], "src": [32,32], "f": 0, "t": 48, "d": [102,32], "a": 1 },
+ { "px": [64,16], "src": [32,32], "f": 0, "t": 48, "d": [102,33], "a": 1 },
+ { "px": [80,16], "src": [32,32], "f": 0, "t": 48, "d": [102,34], "a": 1 },
+ { "px": [96,16], "src": [32,32], "f": 0, "t": 48, "d": [102,35], "a": 1 },
+ { "px": [112,16], "src": [32,32], "f": 0, "t": 48, "d": [102,36], "a": 1 },
+ { "px": [368,16], "src": [32,32], "f": 0, "t": 48, "d": [102,52], "a": 1 },
+ { "px": [384,16], "src": [32,32], "f": 0, "t": 48, "d": [102,53], "a": 1 },
+ { "px": [400,16], "src": [32,32], "f": 0, "t": 48, "d": [102,54], "a": 1 },
+ { "px": [416,16], "src": [32,32], "f": 0, "t": 48, "d": [102,55], "a": 1 },
+ { "px": [432,16], "src": [32,32], "f": 0, "t": 48, "d": [102,56], "a": 1 },
+ { "px": [448,16], "src": [32,32], "f": 0, "t": 48, "d": [102,57], "a": 1 },
+ { "px": [0,32], "src": [32,32], "f": 0, "t": 48, "d": [102,58], "a": 1 },
+ { "px": [16,32], "src": [32,32], "f": 0, "t": 48, "d": [102,59], "a": 1 },
+ { "px": [32,32], "src": [32,32], "f": 0, "t": 48, "d": [102,60], "a": 1 },
+ { "px": [48,32], "src": [32,32], "f": 0, "t": 48, "d": [102,61], "a": 1 },
+ { "px": [64,32], "src": [32,32], "f": 0, "t": 48, "d": [102,62], "a": 1 },
+ { "px": [80,32], "src": [32,32], "f": 0, "t": 48, "d": [102,63], "a": 1 },
+ { "px": [96,32], "src": [32,32], "f": 0, "t": 48, "d": [102,64], "a": 1 },
+ { "px": [112,32], "src": [32,32], "f": 0, "t": 48, "d": [102,65], "a": 1 },
+ { "px": [368,32], "src": [32,32], "f": 0, "t": 48, "d": [102,81], "a": 1 },
+ { "px": [384,32], "src": [32,32], "f": 0, "t": 48, "d": [102,82], "a": 1 },
+ { "px": [400,32], "src": [32,32], "f": 0, "t": 48, "d": [102,83], "a": 1 },
+ { "px": [416,32], "src": [32,32], "f": 0, "t": 48, "d": [102,84], "a": 1 },
+ { "px": [432,32], "src": [32,32], "f": 0, "t": 48, "d": [102,85], "a": 1 },
+ { "px": [448,32], "src": [32,32], "f": 0, "t": 48, "d": [102,86], "a": 1 },
+ { "px": [0,48], "src": [32,32], "f": 0, "t": 48, "d": [102,87], "a": 1 },
+ { "px": [16,48], "src": [32,32], "f": 0, "t": 48, "d": [102,88], "a": 1 },
+ { "px": [32,48], "src": [32,32], "f": 0, "t": 48, "d": [102,89], "a": 1 },
+ { "px": [48,48], "src": [32,32], "f": 0, "t": 48, "d": [102,90], "a": 1 },
+ { "px": [64,48], "src": [32,32], "f": 0, "t": 48, "d": [102,91], "a": 1 },
+ { "px": [80,48], "src": [32,32], "f": 0, "t": 48, "d": [102,92], "a": 1 },
+ { "px": [96,48], "src": [32,32], "f": 0, "t": 48, "d": [102,93], "a": 1 },
+ { "px": [112,48], "src": [32,32], "f": 0, "t": 48, "d": [102,94], "a": 1 },
+ { "px": [368,48], "src": [32,32], "f": 0, "t": 48, "d": [102,110], "a": 1 },
+ { "px": [384,48], "src": [32,32], "f": 0, "t": 48, "d": [102,111], "a": 1 },
+ { "px": [400,48], "src": [32,32], "f": 0, "t": 48, "d": [102,112], "a": 1 },
+ { "px": [416,48], "src": [32,32], "f": 0, "t": 48, "d": [102,113], "a": 1 },
+ { "px": [432,48], "src": [32,32], "f": 0, "t": 48, "d": [102,114], "a": 1 },
+ { "px": [448,48], "src": [32,32], "f": 0, "t": 48, "d": [102,115], "a": 1 },
+ { "px": [0,64], "src": [32,32], "f": 0, "t": 48, "d": [102,116], "a": 1 },
+ { "px": [16,64], "src": [32,32], "f": 0, "t": 48, "d": [102,117], "a": 1 },
+ { "px": [32,64], "src": [32,32], "f": 0, "t": 48, "d": [102,118], "a": 1 },
+ { "px": [48,64], "src": [32,32], "f": 0, "t": 48, "d": [102,119], "a": 1 },
+ { "px": [64,64], "src": [32,32], "f": 0, "t": 48, "d": [102,120], "a": 1 },
+ { "px": [80,64], "src": [32,32], "f": 0, "t": 48, "d": [102,121], "a": 1 },
+ { "px": [96,64], "src": [32,32], "f": 0, "t": 48, "d": [102,122], "a": 1 },
+ { "px": [112,64], "src": [32,32], "f": 0, "t": 48, "d": [102,123], "a": 1 },
+ { "px": [368,64], "src": [32,32], "f": 0, "t": 48, "d": [102,139], "a": 1 },
+ { "px": [384,64], "src": [32,32], "f": 0, "t": 48, "d": [102,140], "a": 1 },
+ { "px": [400,64], "src": [32,32], "f": 0, "t": 48, "d": [102,141], "a": 1 },
+ { "px": [416,64], "src": [32,32], "f": 0, "t": 48, "d": [102,142], "a": 1 },
+ { "px": [432,64], "src": [32,32], "f": 0, "t": 48, "d": [102,143], "a": 1 },
+ { "px": [448,64], "src": [32,32], "f": 0, "t": 48, "d": [102,144], "a": 1 },
+ { "px": [0,80], "src": [32,32], "f": 0, "t": 48, "d": [102,145], "a": 1 },
+ { "px": [16,80], "src": [32,32], "f": 0, "t": 48, "d": [102,146], "a": 1 },
+ { "px": [32,80], "src": [32,32], "f": 0, "t": 48, "d": [102,147], "a": 1 },
+ { "px": [48,80], "src": [32,32], "f": 0, "t": 48, "d": [102,148], "a": 1 },
+ { "px": [64,80], "src": [32,32], "f": 0, "t": 48, "d": [102,149], "a": 1 },
+ { "px": [80,80], "src": [32,32], "f": 0, "t": 48, "d": [102,150], "a": 1 },
+ { "px": [96,80], "src": [32,32], "f": 0, "t": 48, "d": [102,151], "a": 1 },
+ { "px": [112,80], "src": [32,32], "f": 0, "t": 48, "d": [102,152], "a": 1 },
+ { "px": [368,80], "src": [32,32], "f": 0, "t": 48, "d": [102,168], "a": 1 },
+ { "px": [384,80], "src": [32,32], "f": 0, "t": 48, "d": [102,169], "a": 1 },
+ { "px": [400,80], "src": [32,32], "f": 0, "t": 48, "d": [102,170], "a": 1 },
+ { "px": [416,80], "src": [32,32], "f": 0, "t": 48, "d": [102,171], "a": 1 },
+ { "px": [432,80], "src": [32,32], "f": 0, "t": 48, "d": [102,172], "a": 1 },
+ { "px": [448,80], "src": [32,32], "f": 0, "t": 48, "d": [102,173], "a": 1 },
+ { "px": [0,96], "src": [32,32], "f": 0, "t": 48, "d": [102,174], "a": 1 },
+ { "px": [16,96], "src": [32,32], "f": 0, "t": 48, "d": [102,175], "a": 1 },
+ { "px": [32,96], "src": [32,32], "f": 0, "t": 48, "d": [102,176], "a": 1 },
+ { "px": [48,96], "src": [32,32], "f": 0, "t": 48, "d": [102,177], "a": 1 },
+ { "px": [64,96], "src": [32,32], "f": 0, "t": 48, "d": [102,178], "a": 1 },
+ { "px": [80,96], "src": [32,32], "f": 0, "t": 48, "d": [102,179], "a": 1 },
+ { "px": [96,96], "src": [32,32], "f": 0, "t": 48, "d": [102,180], "a": 1 },
+ { "px": [112,96], "src": [32,32], "f": 0, "t": 48, "d": [102,181], "a": 1 },
+ { "px": [368,96], "src": [32,32], "f": 0, "t": 48, "d": [102,197], "a": 1 },
+ { "px": [384,96], "src": [32,32], "f": 0, "t": 48, "d": [102,198], "a": 1 },
+ { "px": [400,96], "src": [32,32], "f": 0, "t": 48, "d": [102,199], "a": 1 },
+ { "px": [416,96], "src": [32,32], "f": 0, "t": 48, "d": [102,200], "a": 1 },
+ { "px": [432,96], "src": [32,32], "f": 0, "t": 48, "d": [102,201], "a": 1 },
+ { "px": [448,96], "src": [32,32], "f": 0, "t": 48, "d": [102,202], "a": 1 },
+ { "px": [0,112], "src": [32,32], "f": 0, "t": 48, "d": [102,203], "a": 1 },
+ { "px": [16,112], "src": [32,32], "f": 0, "t": 48, "d": [102,204], "a": 1 },
+ { "px": [32,112], "src": [32,32], "f": 0, "t": 48, "d": [102,205], "a": 1 },
+ { "px": [48,112], "src": [32,32], "f": 0, "t": 48, "d": [102,206], "a": 1 },
+ { "px": [64,112], "src": [32,32], "f": 0, "t": 48, "d": [102,207], "a": 1 },
+ { "px": [80,112], "src": [32,32], "f": 0, "t": 48, "d": [102,208], "a": 1 },
+ { "px": [96,112], "src": [32,32], "f": 0, "t": 48, "d": [102,209], "a": 1 },
+ { "px": [112,112], "src": [32,32], "f": 0, "t": 48, "d": [102,210], "a": 1 },
+ { "px": [368,112], "src": [32,32], "f": 0, "t": 48, "d": [102,226], "a": 1 },
+ { "px": [384,112], "src": [32,32], "f": 0, "t": 48, "d": [102,227], "a": 1 },
+ { "px": [400,112], "src": [32,32], "f": 0, "t": 48, "d": [102,228], "a": 1 },
+ { "px": [416,112], "src": [32,32], "f": 0, "t": 48, "d": [102,229], "a": 1 },
+ { "px": [432,112], "src": [32,32], "f": 0, "t": 48, "d": [102,230], "a": 1 },
+ { "px": [448,112], "src": [32,32], "f": 0, "t": 48, "d": [102,231], "a": 1 },
+ { "px": [0,128], "src": [32,32], "f": 0, "t": 48, "d": [102,232], "a": 1 },
+ { "px": [16,128], "src": [32,32], "f": 0, "t": 48, "d": [102,233], "a": 1 },
+ { "px": [32,128], "src": [32,32], "f": 0, "t": 48, "d": [102,234], "a": 1 },
+ { "px": [48,128], "src": [32,32], "f": 0, "t": 48, "d": [102,235], "a": 1 },
+ { "px": [64,128], "src": [32,32], "f": 0, "t": 48, "d": [102,236], "a": 1 },
+ { "px": [80,128], "src": [32,32], "f": 0, "t": 48, "d": [102,237], "a": 1 },
+ { "px": [96,128], "src": [32,32], "f": 0, "t": 48, "d": [102,238], "a": 1 },
+ { "px": [384,128], "src": [32,32], "f": 0, "t": 48, "d": [102,256], "a": 1 },
+ { "px": [400,128], "src": [32,32], "f": 0, "t": 48, "d": [102,257], "a": 1 },
+ { "px": [416,128], "src": [32,32], "f": 0, "t": 48, "d": [102,258], "a": 1 },
+ { "px": [432,128], "src": [32,32], "f": 0, "t": 48, "d": [102,259], "a": 1 },
+ { "px": [448,128], "src": [32,32], "f": 0, "t": 48, "d": [102,260], "a": 1 },
+ { "px": [0,144], "src": [32,32], "f": 0, "t": 48, "d": [102,261], "a": 1 },
+ { "px": [16,144], "src": [32,32], "f": 0, "t": 48, "d": [102,262], "a": 1 },
+ { "px": [32,144], "src": [32,32], "f": 0, "t": 48, "d": [102,263], "a": 1 },
+ { "px": [48,144], "src": [32,32], "f": 0, "t": 48, "d": [102,264], "a": 1 },
+ { "px": [64,144], "src": [32,32], "f": 0, "t": 48, "d": [102,265], "a": 1 },
+ { "px": [80,144], "src": [32,32], "f": 0, "t": 48, "d": [102,266], "a": 1 },
+ { "px": [400,144], "src": [32,32], "f": 0, "t": 48, "d": [102,286], "a": 1 },
+ { "px": [416,144], "src": [32,32], "f": 0, "t": 48, "d": [102,287], "a": 1 },
+ { "px": [432,144], "src": [32,32], "f": 0, "t": 48, "d": [102,288], "a": 1 },
+ { "px": [448,144], "src": [32,32], "f": 0, "t": 48, "d": [102,289], "a": 1 },
+ { "px": [0,160], "src": [32,32], "f": 0, "t": 48, "d": [102,290], "a": 1 },
+ { "px": [16,160], "src": [32,32], "f": 0, "t": 48, "d": [102,291], "a": 1 },
+ { "px": [32,160], "src": [32,32], "f": 0, "t": 48, "d": [102,292], "a": 1 },
+ { "px": [48,160], "src": [32,32], "f": 0, "t": 48, "d": [102,293], "a": 1 },
+ { "px": [64,160], "src": [32,32], "f": 0, "t": 48, "d": [102,294], "a": 1 },
+ { "px": [80,160], "src": [32,32], "f": 0, "t": 48, "d": [102,295], "a": 1 },
+ { "px": [400,160], "src": [32,32], "f": 0, "t": 48, "d": [102,315], "a": 1 },
+ { "px": [416,160], "src": [32,32], "f": 0, "t": 48, "d": [102,316], "a": 1 },
+ { "px": [432,160], "src": [32,32], "f": 0, "t": 48, "d": [102,317], "a": 1 },
+ { "px": [448,160], "src": [32,32], "f": 0, "t": 48, "d": [102,318], "a": 1 },
+ { "px": [0,176], "src": [32,32], "f": 0, "t": 48, "d": [102,319], "a": 1 },
+ { "px": [16,176], "src": [32,32], "f": 0, "t": 48, "d": [102,320], "a": 1 },
+ { "px": [32,176], "src": [32,32], "f": 0, "t": 48, "d": [102,321], "a": 1 },
+ { "px": [48,176], "src": [32,32], "f": 0, "t": 48, "d": [102,322], "a": 1 },
+ { "px": [64,176], "src": [32,32], "f": 0, "t": 48, "d": [102,323], "a": 1 },
+ { "px": [80,176], "src": [32,32], "f": 0, "t": 48, "d": [102,324], "a": 1 },
+ { "px": [400,176], "src": [32,32], "f": 0, "t": 48, "d": [102,344], "a": 1 },
+ { "px": [416,176], "src": [32,32], "f": 0, "t": 48, "d": [102,345], "a": 1 },
+ { "px": [432,176], "src": [32,32], "f": 0, "t": 48, "d": [102,346], "a": 1 },
+ { "px": [448,176], "src": [32,32], "f": 0, "t": 48, "d": [102,347], "a": 1 },
+ { "px": [0,192], "src": [32,32], "f": 0, "t": 48, "d": [102,348], "a": 1 },
+ { "px": [16,192], "src": [32,32], "f": 0, "t": 48, "d": [102,349], "a": 1 },
+ { "px": [32,192], "src": [32,32], "f": 0, "t": 48, "d": [102,350], "a": 1 },
+ { "px": [48,192], "src": [32,32], "f": 0, "t": 48, "d": [102,351], "a": 1 },
+ { "px": [64,192], "src": [32,32], "f": 0, "t": 48, "d": [102,352], "a": 1 },
+ { "px": [80,192], "src": [32,32], "f": 0, "t": 48, "d": [102,353], "a": 1 },
+ { "px": [400,192], "src": [32,32], "f": 0, "t": 48, "d": [102,373], "a": 1 },
+ { "px": [416,192], "src": [32,32], "f": 0, "t": 48, "d": [102,374], "a": 1 },
+ { "px": [432,192], "src": [32,32], "f": 0, "t": 48, "d": [102,375], "a": 1 },
+ { "px": [448,192], "src": [32,32], "f": 0, "t": 48, "d": [102,376], "a": 1 },
+ { "px": [0,208], "src": [32,32], "f": 0, "t": 48, "d": [102,377], "a": 1 },
+ { "px": [16,208], "src": [32,32], "f": 0, "t": 48, "d": [102,378], "a": 1 },
+ { "px": [32,208], "src": [32,32], "f": 0, "t": 48, "d": [102,379], "a": 1 },
+ { "px": [48,208], "src": [32,32], "f": 0, "t": 48, "d": [102,380], "a": 1 },
+ { "px": [64,208], "src": [32,32], "f": 0, "t": 48, "d": [102,381], "a": 1 },
+ { "px": [80,208], "src": [32,32], "f": 0, "t": 48, "d": [102,382], "a": 1 },
+ { "px": [400,208], "src": [32,32], "f": 0, "t": 48, "d": [102,402], "a": 1 },
+ { "px": [416,208], "src": [32,32], "f": 0, "t": 48, "d": [102,403], "a": 1 },
+ { "px": [432,208], "src": [32,32], "f": 0, "t": 48, "d": [102,404], "a": 1 },
+ { "px": [448,208], "src": [32,32], "f": 0, "t": 48, "d": [102,405], "a": 1 },
+ { "px": [0,224], "src": [32,32], "f": 0, "t": 48, "d": [102,406], "a": 1 },
+ { "px": [16,224], "src": [32,32], "f": 0, "t": 48, "d": [102,407], "a": 1 },
+ { "px": [32,224], "src": [32,32], "f": 0, "t": 48, "d": [102,408], "a": 1 },
+ { "px": [48,224], "src": [32,32], "f": 0, "t": 48, "d": [102,409], "a": 1 },
+ { "px": [64,224], "src": [32,32], "f": 0, "t": 48, "d": [102,410], "a": 1 },
+ { "px": [80,224], "src": [32,32], "f": 0, "t": 48, "d": [102,411], "a": 1 },
+ { "px": [96,224], "src": [32,32], "f": 0, "t": 48, "d": [102,412], "a": 1 },
+ { "px": [384,224], "src": [32,32], "f": 0, "t": 48, "d": [102,430], "a": 1 },
+ { "px": [400,224], "src": [32,32], "f": 0, "t": 48, "d": [102,431], "a": 1 },
+ { "px": [416,224], "src": [32,32], "f": 0, "t": 48, "d": [102,432], "a": 1 },
+ { "px": [432,224], "src": [32,32], "f": 0, "t": 48, "d": [102,433], "a": 1 },
+ { "px": [448,224], "src": [32,32], "f": 0, "t": 48, "d": [102,434], "a": 1 },
+ { "px": [0,240], "src": [32,32], "f": 0, "t": 48, "d": [102,435], "a": 1 },
+ { "px": [16,240], "src": [32,32], "f": 0, "t": 48, "d": [102,436], "a": 1 },
+ { "px": [32,240], "src": [32,32], "f": 0, "t": 48, "d": [102,437], "a": 1 },
+ { "px": [48,240], "src": [32,32], "f": 0, "t": 48, "d": [102,438], "a": 1 },
+ { "px": [64,240], "src": [32,32], "f": 0, "t": 48, "d": [102,439], "a": 1 },
+ { "px": [80,240], "src": [32,32], "f": 0, "t": 48, "d": [102,440], "a": 1 },
+ { "px": [96,240], "src": [32,32], "f": 0, "t": 48, "d": [102,441], "a": 1 },
+ { "px": [112,240], "src": [32,32], "f": 0, "t": 48, "d": [102,442], "a": 1 },
+ { "px": [128,240], "src": [32,32], "f": 0, "t": 48, "d": [102,443], "a": 1 },
+ { "px": [144,240], "src": [32,32], "f": 0, "t": 48, "d": [102,444], "a": 1 },
+ { "px": [160,240], "src": [32,32], "f": 0, "t": 48, "d": [102,445], "a": 1 },
+ { "px": [176,240], "src": [32,32], "f": 0, "t": 48, "d": [102,446], "a": 1 },
+ { "px": [192,240], "src": [32,32], "f": 0, "t": 48, "d": [102,447], "a": 1 },
+ { "px": [208,240], "src": [32,32], "f": 0, "t": 48, "d": [102,448], "a": 1 },
+ { "px": [224,240], "src": [32,32], "f": 0, "t": 48, "d": [102,449], "a": 1 },
+ { "px": [240,240], "src": [32,32], "f": 0, "t": 48, "d": [102,450], "a": 1 },
+ { "px": [256,240], "src": [32,32], "f": 0, "t": 48, "d": [102,451], "a": 1 },
+ { "px": [272,240], "src": [32,32], "f": 0, "t": 48, "d": [102,452], "a": 1 },
+ { "px": [288,240], "src": [32,32], "f": 0, "t": 48, "d": [102,453], "a": 1 },
+ { "px": [304,240], "src": [32,32], "f": 0, "t": 48, "d": [102,454], "a": 1 },
+ { "px": [320,240], "src": [32,32], "f": 0, "t": 48, "d": [102,455], "a": 1 },
+ { "px": [336,240], "src": [32,32], "f": 0, "t": 48, "d": [102,456], "a": 1 },
+ { "px": [352,240], "src": [32,32], "f": 0, "t": 48, "d": [102,457], "a": 1 },
+ { "px": [368,240], "src": [32,32], "f": 0, "t": 48, "d": [102,458], "a": 1 },
+ { "px": [384,240], "src": [32,32], "f": 0, "t": 48, "d": [102,459], "a": 1 },
+ { "px": [400,240], "src": [32,32], "f": 0, "t": 48, "d": [102,460], "a": 1 },
+ { "px": [416,240], "src": [32,32], "f": 0, "t": 48, "d": [102,461], "a": 1 },
+ { "px": [432,240], "src": [32,32], "f": 0, "t": 48, "d": [102,462], "a": 1 },
+ { "px": [448,240], "src": [32,32], "f": 0, "t": 48, "d": [102,463], "a": 1 }
+ ],
+ "seed": 9049328,
+ "overrideTilesetUid": null,
+ "gridTiles": [],
+ "entityInstances": []
+ },
+ {
+ "__identifier": "Bg_textures",
+ "__type": "AutoLayer",
+ "__cWid": 29,
+ "__cHei": 16,
+ "__gridSize": 16,
+ "__opacity": 1,
+ "__pxTotalOffsetX": 0,
+ "__pxTotalOffsetY": 0,
+ "__tilesetDefUid": 2,
+ "__tilesetRelPath": "atlas/SunnyLand_by_Ansimuz-extended.png",
+ "iid": "a317f600-66b0-11ec-9cd7-1fc5fd2d5a3f",
+ "levelId": 88,
+ "layerDefUid": 24,
+ "pxOffsetX": 0,
+ "pxOffsetY": 0,
+ "visible": true,
+ "optionalRules": [],
+ "intGridCsv": [],
+ "autoLayerTiles": [
+ { "px": [192,48], "src": [320,272], "f": 0, "t": 411, "d": [26,99], "a": 1 },
+ { "px": [208,48], "src": [320,272], "f": 0, "t": 411, "d": [26,100], "a": 1 },
+ { "px": [272,48], "src": [320,272], "f": 0, "t": 411, "d": [26,104], "a": 1 },
+ { "px": [192,64], "src": [320,272], "f": 0, "t": 411, "d": [26,128], "a": 1 },
+ { "px": [208,64], "src": [320,272], "f": 0, "t": 411, "d": [26,129], "a": 1 },
+ { "px": [272,64], "src": [320,272], "f": 0, "t": 411, "d": [26,133], "a": 1 },
+ { "px": [288,64], "src": [320,272], "f": 0, "t": 411, "d": [26,134], "a": 1 },
+ { "px": [192,80], "src": [320,272], "f": 0, "t": 411, "d": [26,157], "a": 1 },
+ { "px": [208,80], "src": [320,272], "f": 0, "t": 411, "d": [26,158], "a": 1 },
+ { "px": [272,80], "src": [320,272], "f": 0, "t": 411, "d": [26,162], "a": 1 },
+ { "px": [288,80], "src": [320,272], "f": 0, "t": 411, "d": [26,163], "a": 1 },
+ { "px": [192,96], "src": [320,272], "f": 0, "t": 411, "d": [26,186], "a": 1 },
+ { "px": [208,96], "src": [320,272], "f": 0, "t": 411, "d": [26,187], "a": 1 },
+ { "px": [272,96], "src": [320,272], "f": 0, "t": 411, "d": [26,191], "a": 1 },
+ { "px": [288,96], "src": [320,272], "f": 0, "t": 411, "d": [26,192], "a": 1 },
+ { "px": [192,112], "src": [320,272], "f": 0, "t": 411, "d": [26,215], "a": 1 },
+ { "px": [208,112], "src": [320,272], "f": 0, "t": 411, "d": [26,216], "a": 1 },
+ { "px": [272,112], "src": [320,272], "f": 0, "t": 411, "d": [26,220], "a": 1 },
+ { "px": [288,112], "src": [320,272], "f": 0, "t": 411, "d": [26,221], "a": 1 },
+ { "px": [192,128], "src": [320,272], "f": 0, "t": 411, "d": [26,244], "a": 1 },
+ { "px": [208,128], "src": [320,272], "f": 0, "t": 411, "d": [26,245], "a": 1 },
+ { "px": [272,128], "src": [320,272], "f": 0, "t": 411, "d": [26,249], "a": 1 },
+ { "px": [288,128], "src": [320,272], "f": 0, "t": 411, "d": [26,250], "a": 1 },
+ { "px": [192,144], "src": [320,272], "f": 0, "t": 411, "d": [26,273], "a": 1 },
+ { "px": [208,144], "src": [320,272], "f": 0, "t": 411, "d": [26,274], "a": 1 },
+ { "px": [272,144], "src": [320,272], "f": 0, "t": 411, "d": [26,278], "a": 1 },
+ { "px": [288,144], "src": [320,272], "f": 0, "t": 411, "d": [26,279], "a": 1 },
+ { "px": [272,160], "src": [320,272], "f": 0, "t": 411, "d": [26,307], "a": 1 },
+ { "px": [224,48], "src": [288,240], "f": 1, "t": 363, "d": [37,101], "a": 1 },
+ { "px": [176,64], "src": [288,240], "f": 0, "t": 363, "d": [37,127], "a": 1 },
+ { "px": [224,64], "src": [288,240], "f": 1, "t": 363, "d": [37,130], "a": 1 },
+ { "px": [256,64], "src": [288,240], "f": 0, "t": 363, "d": [37,132], "a": 1 },
+ { "px": [304,64], "src": [288,240], "f": 1, "t": 363, "d": [37,135], "a": 1 },
+ { "px": [176,80], "src": [288,240], "f": 0, "t": 363, "d": [37,156], "a": 1 },
+ { "px": [224,80], "src": [288,240], "f": 1, "t": 363, "d": [37,159], "a": 1 },
+ { "px": [256,80], "src": [288,240], "f": 0, "t": 363, "d": [37,161], "a": 1 },
+ { "px": [304,80], "src": [288,240], "f": 1, "t": 363, "d": [37,164], "a": 1 },
+ { "px": [176,96], "src": [288,240], "f": 0, "t": 363, "d": [37,185], "a": 1 },
+ { "px": [224,96], "src": [288,240], "f": 1, "t": 363, "d": [37,188], "a": 1 },
+ { "px": [256,96], "src": [288,240], "f": 0, "t": 363, "d": [37,190], "a": 1 },
+ { "px": [304,96], "src": [288,240], "f": 1, "t": 363, "d": [37,193], "a": 1 },
+ { "px": [176,112], "src": [288,240], "f": 0, "t": 363, "d": [37,214], "a": 1 },
+ { "px": [224,112], "src": [288,240], "f": 1, "t": 363, "d": [37,217], "a": 1 },
+ { "px": [256,112], "src": [288,240], "f": 0, "t": 363, "d": [37,219], "a": 1 },
+ { "px": [304,112], "src": [288,240], "f": 1, "t": 363, "d": [37,222], "a": 1 },
+ { "px": [176,128], "src": [288,240], "f": 0, "t": 363, "d": [37,243], "a": 1 },
+ { "px": [224,128], "src": [288,240], "f": 1, "t": 363, "d": [37,246], "a": 1 },
+ { "px": [256,128], "src": [288,240], "f": 0, "t": 363, "d": [37,248], "a": 1 },
+ { "px": [304,128], "src": [288,240], "f": 1, "t": 363, "d": [37,251], "a": 1 },
+ { "px": [176,144], "src": [288,240], "f": 0, "t": 363, "d": [37,272], "a": 1 },
+ { "px": [224,144], "src": [288,240], "f": 1, "t": 363, "d": [37,275], "a": 1 },
+ { "px": [256,144], "src": [288,240], "f": 0, "t": 363, "d": [37,277], "a": 1 },
+ { "px": [304,144], "src": [288,240], "f": 1, "t": 363, "d": [37,280], "a": 1 },
+ { "px": [256,160], "src": [288,240], "f": 0, "t": 363, "d": [37,306], "a": 1 },
+ { "px": [304,160], "src": [288,240], "f": 1, "t": 363, "d": [37,309], "a": 1 },
+ { "px": [288,48], "src": [288,272], "f": 2, "t": 409, "d": [38,105], "a": 1 },
+ { "px": [208,160], "src": [288,272], "f": 0, "t": 409, "d": [38,303], "a": 1 },
+ { "px": [224,160], "src": [288,272], "f": 0, "t": 409, "d": [38,304], "a": 1 },
+ { "px": [208,64], "src": [128,304], "f": 3, "t": 445, "d": [71,98], "a": 1 },
+ { "px": [208,48], "src": [128,320], "f": 3, "t": 468, "d": [71,98], "a": 1 },
+ { "px": [192,64], "src": [144,304], "f": 3, "t": 446, "d": [71,98], "a": 1 },
+ { "px": [192,48], "src": [144,320], "f": 3, "t": 469, "d": [71,98], "a": 1 },
+ { "px": [176,64], "src": [160,304], "f": 3, "t": 447, "d": [71,98], "a": 1 },
+ { "px": [176,48], "src": [160,320], "f": 3, "t": 470, "d": [71,98], "a": 1 },
+ { "px": [272,64], "src": [128,304], "f": 2, "t": 445, "d": [71,106], "a": 1 },
+ { "px": [272,48], "src": [128,320], "f": 2, "t": 468, "d": [71,106], "a": 1 },
+ { "px": [288,64], "src": [144,304], "f": 2, "t": 446, "d": [71,106], "a": 1 },
+ { "px": [288,48], "src": [144,320], "f": 2, "t": 469, "d": [71,106], "a": 1 },
+ { "px": [304,64], "src": [160,304], "f": 2, "t": 447, "d": [71,106], "a": 1 },
+ { "px": [304,48], "src": [160,320], "f": 2, "t": 470, "d": [71,106], "a": 1 },
+ { "px": [256,48], "src": [128,320], "f": 3, "t": 468, "d": [65,103], "a": 1 },
+ { "px": [176,160], "src": [144,304], "f": 1, "t": 446, "d": [65,301], "a": 1 },
+ { "px": [184,128], "src": [208,240], "f": 0, "t": 358, "d": [72,302], "a": 1 },
+ { "px": [184,144], "src": [208,256], "f": 0, "t": 381, "d": [72,302], "a": 1 },
+ { "px": [184,160], "src": [208,272], "f": 0, "t": 404, "d": [72,302], "a": 1 },
+ { "px": [200,128], "src": [224,240], "f": 0, "t": 359, "d": [72,302], "a": 1 },
+ { "px": [200,144], "src": [224,256], "f": 0, "t": 382, "d": [72,302], "a": 1 },
+ { "px": [200,160], "src": [224,272], "f": 0, "t": 405, "d": [72,302], "a": 1 },
+ { "px": [280,128], "src": [208,240], "f": 0, "t": 358, "d": [72,308], "a": 1 },
+ { "px": [280,144], "src": [208,256], "f": 0, "t": 381, "d": [72,308], "a": 1 },
+ { "px": [280,160], "src": [208,272], "f": 0, "t": 404, "d": [72,308], "a": 1 },
+ { "px": [296,128], "src": [224,240], "f": 0, "t": 359, "d": [72,308], "a": 1 },
+ { "px": [296,144], "src": [224,256], "f": 0, "t": 382, "d": [72,308], "a": 1 },
+ { "px": [296,160], "src": [224,272], "f": 0, "t": 405, "d": [72,308], "a": 1 }
+ ],
+ "seed": 4160648,
+ "overrideTilesetUid": null,
+ "gridTiles": [],
+ "entityInstances": []
+ }
+ ],
+ "__neighbours": [{ "levelIid": "a315ac10-66b0-11ec-9cd7-99f223ad6ade", "dir": "n" }]
+ }
+ ],
+ "worlds": [],
+ "dummyWorldIid": "978c7ca0-c640-11ed-af8e-e9184ad8140f"
+}
\ No newline at end of file
diff --git a/src/commonMain/resources/ldtk/atlas/Cavernas_by_Adam_Saltsman.png b/src/commonMain/resources/ldtk/atlas/Cavernas_by_Adam_Saltsman.png
new file mode 100644
index 0000000..53d6c78
Binary files /dev/null and b/src/commonMain/resources/ldtk/atlas/Cavernas_by_Adam_Saltsman.png differ
diff --git a/src/commonMain/resources/ldtk/atlas/SunnyLand_by_Ansimuz-extended.png b/src/commonMain/resources/ldtk/atlas/SunnyLand_by_Ansimuz-extended.png
new file mode 100644
index 0000000..c941579
Binary files /dev/null and b/src/commonMain/resources/ldtk/atlas/SunnyLand_by_Ansimuz-extended.png differ
diff --git a/src/commonTest/kotlin/test.kt b/src/commonTest/kotlin/test.kt
new file mode 100644
index 0000000..1157c28
--- /dev/null
+++ b/src/commonTest/kotlin/test.kt
@@ -0,0 +1,26 @@
+import korlibs.time.*
+import korlibs.korge.input.*
+import korlibs.korge.tests.*
+import korlibs.korge.tween.*
+import korlibs.korge.view.*
+import korlibs.image.color.*
+import korlibs.math.geom.*
+import kotlin.test.*
+
+class MyTest : ViewsForTesting() {
+ @Test
+ fun test() = viewsTest {
+ val log = arrayListOf()
+ val rect = solidRect(100, 100, Colors.RED)
+ rect.onClick {
+ log += "clicked"
+ }
+ assertEquals(1, views.stage.numChildren)
+ rect.simulateClick()
+ assertEquals(true, rect.isVisibleToUser())
+ tween(rect::x[-102], time = 10.seconds)
+ assertEquals(Rectangle(x=-102, y=0, width=100, height=100), rect.globalBounds)
+ assertEquals(false, rect.isVisibleToUser())
+ assertEquals(listOf("clicked"), log)
+ }
+}
diff --git a/testJs.sh b/testJs.sh
new file mode 100644
index 0000000..7ee1a89
--- /dev/null
+++ b/testJs.sh
@@ -0,0 +1,12 @@
+#!/usr/bin/env bash
+
+trap killgroup SIGINT
+
+killgroup(){
+ echo killing...
+ kill 0
+}
+
+hs build/web &
+./gradlew jsWeb -t &
+wait
\ No newline at end of file